@charset "UTF-8";
/******************************************************************
	
Stylesheet: Main Stylesheet

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

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

Stylesheet: Mixins & Constants Stylesheet

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

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

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@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); */
/*======================================
=            Global Colours            =
======================================*/
/* ------------------ */
/*==================================
=            Main Fonts            =
==================================*/
/* ------------------ */
/*=============================================
=            Import Foundations 6             =
=============================================*/
/**
 * 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 < 22.
   */
[hidden],
template {
  display: none; }

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0; }

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

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

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

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

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

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

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

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

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

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

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

.row {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    max-width: none;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
    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.9375rem;
  padding-right: 0.9375rem; }
  @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.3333333333%; }

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

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

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

.small-2 {
  width: 16.6666666667%; }

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

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

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

.small-3 {
  width: 25%; }

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

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

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

.small-4 {
  width: 33.3333333333%; }

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

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

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

.small-5 {
  width: 41.6666666667%; }

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

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

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

.small-6 {
  width: 50%; }

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

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

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

.small-7 {
  width: 58.3333333333%; }

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

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

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

.small-8 {
  width: 66.6666666667%; }

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

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

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

.small-9 {
  width: 75%; }

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

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

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

.small-10 {
  width: 83.3333333333%; }

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

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

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

.small-11 {
  width: 91.6666666667%; }

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

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

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

.small-12 {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

.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.3333333333%; }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.6666666667%; }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%; }
  .medium-offset-1 {
    margin-left: 8.3333333333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.6666666667%; }
  .medium-4 {
    width: 33.3333333333%; }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.6666666667%; }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%; }
  .medium-offset-4 {
    margin-left: 33.3333333333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.6666666667%; }
  .medium-7 {
    width: 58.3333333333%; }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.6666666667%; }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%; }
  .medium-offset-7 {
    margin-left: 58.3333333333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.6666666667%; }
  .medium-10 {
    width: 83.3333333333%; }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.6666666667%; }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%; }
  .medium-offset-10 {
    margin-left: 83.3333333333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.6666666667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.3333333333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.6666666667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.2857142857%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%; }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%; }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.6666666667%; }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%; }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%; }
  .large-offset-1 {
    margin-left: 8.3333333333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.6666666667%; }
  .large-4 {
    width: 33.3333333333%; }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%; }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.6666666667%; }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%; }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%; }
  .large-offset-4 {
    margin-left: 33.3333333333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.6666666667%; }
  .large-7 {
    width: 58.3333333333%; }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%; }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.6666666667%; }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%; }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%; }
  .large-offset-7 {
    margin-left: 58.3333333333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.6666666667%; }
  .large-10 {
    width: 83.3333333333%; }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%; }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.6666666667%; }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%; }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%; }
  .large-offset-10 {
    margin-left: 83.3333333333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.6666666667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.3333333333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.6666666667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.2857142857%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "baskerville-urw", "Open Sans", "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: #E3E6EB;
    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: 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; } }

a {
  color: #59626B;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #4d545c; }
  a img {
    border: 0; }

hr {
  max-width: 75rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #E3E6EB;
  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 #E3E6EB; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #BFBFC1; }

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

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

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

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

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

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

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

@media print {
  * {
    background: transparent !important;
    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 #BFBFC1;
    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 #E3E6EB;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #424959;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(66, 73, 89, 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 #BFBFC1;
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 5px #E3E6EB;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

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

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

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #EFF0F2;
  cursor: default; }

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

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

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

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

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

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

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

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

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

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

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #EFF0F2;
  color: #424959;
  border: 1px solid #E3E6EB;
  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 #E3E6EB;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
    background: #fff;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #E3E6EB;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #424959;
  background-color: #fff;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28191, 191, 193%29"></polygon></svg>');
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMBJREFUeNrEllsOhCAMRVszC9IlzU7KCmVHTJsoMWYMUtpyv9BgbuXQB5ZSdgBYYY4ycgBivk8KYFsQMfMiTTBP4o3nUzCKzOabLJbLy2/g31evGkAginR4/ZegKH5qX3bJCscA3t0x3kgO5tQFyhhFf50xRqFLbyMUNJQzgyjGS/wgCpvKqkRBpuWrE4V9d+1E4dPUXqIg107SQOE/2DRQxMwTDygIInVDET9T3lCoj/6j/VCmGjZOl2lKpZ8AAwDQP7zIimDGFQAAAABJRU5ErkJggg=="); } }
  select:disabled {
    background-color: #EFF0F2;
    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, .comments-area ol.commentlist li.comment #cancel-comment-reply-link {
  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: #D7C2A5;
  color: #fff; }
  [data-whatinput='mouse'] .button, [data-whatinput='mouse'] .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment [data-whatinput='mouse'] #cancel-comment-reply-link {
    outline: 0; }
  .button:hover, .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .button:focus, .comments-area ol.commentlist li.comment #cancel-comment-reply-link:focus {
    background-color: #c5a77e;
    color: #fff; }
  .button.tiny, .comments-area ol.commentlist li.comment .tiny#cancel-comment-reply-link {
    font-size: 0.6rem; }
  .button.small, .comments-area ol.commentlist li.comment .small#cancel-comment-reply-link {
    font-size: 0.75rem; }
  .button.large, .comments-area ol.commentlist li.comment .large#cancel-comment-reply-link {
    font-size: 1.25rem; }
  .button.expanded, .comments-area ol.commentlist li.comment .expanded#cancel-comment-reply-link {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary, .comments-area ol.commentlist li.comment .primary#cancel-comment-reply-link {
    background-color: #59626B;
    color: #fff; }
    .button.primary:hover, .comments-area ol.commentlist li.comment .primary#cancel-comment-reply-link:hover, .button.primary:focus, .comments-area ol.commentlist li.comment .primary#cancel-comment-reply-link:focus {
      background-color: #474e56;
      color: #fff; }
  .button.secondary, .comments-area ol.commentlist li.comment .secondary#cancel-comment-reply-link {
    background-color: #D7C2A5;
    color: #424959; }
    .button.secondary:hover, .comments-area ol.commentlist li.comment .secondary#cancel-comment-reply-link:hover, .button.secondary:focus, .comments-area ol.commentlist li.comment .secondary#cancel-comment-reply-link:focus {
      background-color: #c09e70;
      color: #424959; }
  .button.subheading, .comments-area ol.commentlist li.comment .subheading#cancel-comment-reply-link {
    background-color: #777;
    color: #fff; }
    .button.subheading:hover, .comments-area ol.commentlist li.comment .subheading#cancel-comment-reply-link:hover, .button.subheading:focus, .comments-area ol.commentlist li.comment .subheading#cancel-comment-reply-link:focus {
      background-color: #5f5f5f;
      color: #fff; }
  .button.success, .comments-area ol.commentlist li.comment .success#cancel-comment-reply-link {
    background-color: #3adb76;
    color: #fff; }
    .button.success:hover, .comments-area ol.commentlist li.comment .success#cancel-comment-reply-link:hover, .button.success:focus, .comments-area ol.commentlist li.comment .success#cancel-comment-reply-link:focus {
      background-color: #22bb5b;
      color: #fff; }
  .button.warning, .comments-area ol.commentlist li.comment .warning#cancel-comment-reply-link {
    background-color: #ffae00;
    color: #fff; }
    .button.warning:hover, .comments-area ol.commentlist li.comment .warning#cancel-comment-reply-link:hover, .button.warning:focus, .comments-area ol.commentlist li.comment .warning#cancel-comment-reply-link:focus {
      background-color: #cc8b00;
      color: #fff; }
  .button.alert, .comments-area ol.commentlist li.comment .alert#cancel-comment-reply-link {
    background-color: #ec5840;
    color: #fff; }
    .button.alert:hover, .comments-area ol.commentlist li.comment .alert#cancel-comment-reply-link:hover, .button.alert:focus, .comments-area ol.commentlist li.comment .alert#cancel-comment-reply-link:focus {
      background-color: #da3116;
      color: #fff; }
  .button.hollow, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link {
    border: 1px solid #59626B;
    color: #59626B; }
    .button.hollow, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link, .button.hollow:hover, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link:hover, .button.hollow:focus, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link:focus {
      background-color: transparent; }
    .button.hollow:hover, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link:hover, .button.hollow:focus, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link:focus {
      border-color: #2d3136;
      color: #2d3136; }
    .button.hollow.primary, .comments-area ol.commentlist li.comment .hollow.primary#cancel-comment-reply-link {
      border: 1px solid #59626B;
      color: #59626B; }
      .button.hollow.primary:hover, .comments-area ol.commentlist li.comment .hollow.primary#cancel-comment-reply-link:hover, .button.hollow.primary:focus, .comments-area ol.commentlist li.comment .hollow.primary#cancel-comment-reply-link:focus {
        border-color: #2d3136;
        color: #2d3136; }
    .button.hollow.secondary, .comments-area ol.commentlist li.comment .hollow.secondary#cancel-comment-reply-link {
      border: 1px solid #D7C2A5;
      color: #D7C2A5; }
      .button.hollow.secondary:hover, .comments-area ol.commentlist li.comment .hollow.secondary#cancel-comment-reply-link:hover, .button.hollow.secondary:focus, .comments-area ol.commentlist li.comment .hollow.secondary#cancel-comment-reply-link:focus {
        border-color: #84653a;
        color: #84653a; }
    .button.hollow.subheading, .comments-area ol.commentlist li.comment .hollow.subheading#cancel-comment-reply-link {
      border: 1px solid #777;
      color: #777; }
      .button.hollow.subheading:hover, .comments-area ol.commentlist li.comment .hollow.subheading#cancel-comment-reply-link:hover, .button.hollow.subheading:focus, .comments-area ol.commentlist li.comment .hollow.subheading#cancel-comment-reply-link:focus {
        border-color: #3c3c3c;
        color: #3c3c3c; }
    .button.hollow.success, .comments-area ol.commentlist li.comment .hollow.success#cancel-comment-reply-link {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .comments-area ol.commentlist li.comment .hollow.success#cancel-comment-reply-link:hover, .button.hollow.success:focus, .comments-area ol.commentlist li.comment .hollow.success#cancel-comment-reply-link:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning, .comments-area ol.commentlist li.comment .hollow.warning#cancel-comment-reply-link {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .comments-area ol.commentlist li.comment .hollow.warning#cancel-comment-reply-link:hover, .button.hollow.warning:focus, .comments-area ol.commentlist li.comment .hollow.warning#cancel-comment-reply-link:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert, .comments-area ol.commentlist li.comment .hollow.alert#cancel-comment-reply-link {
      border: 1px solid #ec5840;
      color: #ec5840; }
      .button.hollow.alert:hover, .comments-area ol.commentlist li.comment .hollow.alert#cancel-comment-reply-link:hover, .button.hollow.alert:focus, .comments-area ol.commentlist li.comment .hollow.alert#cancel-comment-reply-link:focus {
        border-color: #881f0e;
        color: #881f0e; }
  .button.disabled, .comments-area ol.commentlist li.comment .disabled#cancel-comment-reply-link, .button[disabled], .comments-area ol.commentlist li.comment [disabled]#cancel-comment-reply-link {
    opacity: 0.25;
    cursor: not-allowed; }
  .button.dropdown::after, .comments-area ol.commentlist li.comment .dropdown#cancel-comment-reply-link::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    border-color: #fff 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, .comments-area ol.commentlist li.comment .arrow-only#cancel-comment-reply-link::after {
    margin-left: 0;
    float: none;
    top: -0.1em; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  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: #fff;
  border: 1px solid #EFF0F2;
  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: #59626B;
  position: relative;
  border-bottom: 1px solid #EFF0F2; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #EFF0F2; }
  .accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.5rem; }
  .is-active > .accordion-title::before {
    content: '–'; }

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

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

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

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #59626B;
  color: #fff; }
  .badge.secondary {
    background: #D7C2A5;
    color: #424959; }
  .badge.subheading {
    background: #777;
    color: #fff; }
  .badge.success {
    background: #3adb76;
    color: #fff; }
  .badge.warning {
    background: #ffae00;
    color: #fff; }
  .badge.alert {
    background: #ec5840;
    color: #fff; }

.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: #424959;
    font-size: 0.6875rem;
    cursor: default;
    text-transform: uppercase; }
    .breadcrumbs li:not(:last-child)::after {
      color: #E3E6EB;
      content: "/";
      margin: 0 0.75rem;
      position: relative;
      top: 1px;
      opacity: 1; }
  .breadcrumbs a {
    color: #59626B; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #E3E6EB;
    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, .button-group .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group #cancel-comment-reply-link {
    margin: 0;
    font-size: 0.9rem; }
    .button-group .button:not(:last-child), .button-group .comments-area ol.commentlist li.comment #cancel-comment-reply-link:not(:last-child), .comments-area ol.commentlist li.comment .button-group #cancel-comment-reply-link:not(:last-child) {
      margin-right: 1px; }
  .button-group.tiny .button, .button-group.tiny .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.tiny #cancel-comment-reply-link {
    font-size: 0.6rem; }
  .button-group.small .button, .button-group.small .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.small #cancel-comment-reply-link {
    font-size: 0.75rem; }
  .button-group.large .button, .button-group.large .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.large #cancel-comment-reply-link {
    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 .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(2), .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ #cancel-comment-reply-link, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ #cancel-comment-reply-link {
      display: inline-block;
      width: calc(50% - 1px);
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(3), .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ #cancel-comment-reply-link, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ #cancel-comment-reply-link {
      display: inline-block;
      width: calc(33.3333333333% - 1px);
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(4), .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ #cancel-comment-reply-link, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ #cancel-comment-reply-link {
      display: inline-block;
      width: calc(25% - 1px);
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(5), .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ #cancel-comment-reply-link, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ #cancel-comment-reply-link {
      display: inline-block;
      width: calc(20% - 1px);
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(6), .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .comments-area ol.commentlist li.comment .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ #cancel-comment-reply-link, .button-group.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.expanded #cancel-comment-reply-link:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ #cancel-comment-reply-link {
      display: inline-block;
      width: calc(16.6666666667% - 1px);
      margin-right: 1px; }
  .button-group.primary .button, .button-group.primary .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.primary #cancel-comment-reply-link {
    background-color: #59626B;
    color: #fff; }
    .button-group.primary .button:hover, .button-group.primary .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .button-group.primary #cancel-comment-reply-link:hover, .button-group.primary .button:focus, .button-group.primary .comments-area ol.commentlist li.comment #cancel-comment-reply-link:focus, .comments-area ol.commentlist li.comment .button-group.primary #cancel-comment-reply-link:focus {
      background-color: #474e56;
      color: #fff; }
  .button-group.secondary .button, .button-group.secondary .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.secondary #cancel-comment-reply-link {
    background-color: #D7C2A5;
    color: #424959; }
    .button-group.secondary .button:hover, .button-group.secondary .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .button-group.secondary #cancel-comment-reply-link:hover, .button-group.secondary .button:focus, .button-group.secondary .comments-area ol.commentlist li.comment #cancel-comment-reply-link:focus, .comments-area ol.commentlist li.comment .button-group.secondary #cancel-comment-reply-link:focus {
      background-color: #c09e70;
      color: #424959; }
  .button-group.subheading .button, .button-group.subheading .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.subheading #cancel-comment-reply-link {
    background-color: #777;
    color: #fff; }
    .button-group.subheading .button:hover, .button-group.subheading .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .button-group.subheading #cancel-comment-reply-link:hover, .button-group.subheading .button:focus, .button-group.subheading .comments-area ol.commentlist li.comment #cancel-comment-reply-link:focus, .comments-area ol.commentlist li.comment .button-group.subheading #cancel-comment-reply-link:focus {
      background-color: #5f5f5f;
      color: #fff; }
  .button-group.success .button, .button-group.success .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.success #cancel-comment-reply-link {
    background-color: #3adb76;
    color: #fff; }
    .button-group.success .button:hover, .button-group.success .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .button-group.success #cancel-comment-reply-link:hover, .button-group.success .button:focus, .button-group.success .comments-area ol.commentlist li.comment #cancel-comment-reply-link:focus, .comments-area ol.commentlist li.comment .button-group.success #cancel-comment-reply-link:focus {
      background-color: #22bb5b;
      color: #fff; }
  .button-group.warning .button, .button-group.warning .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.warning #cancel-comment-reply-link {
    background-color: #ffae00;
    color: #fff; }
    .button-group.warning .button:hover, .button-group.warning .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .button-group.warning #cancel-comment-reply-link:hover, .button-group.warning .button:focus, .button-group.warning .comments-area ol.commentlist li.comment #cancel-comment-reply-link:focus, .comments-area ol.commentlist li.comment .button-group.warning #cancel-comment-reply-link:focus {
      background-color: #cc8b00;
      color: #fff; }
  .button-group.alert .button, .button-group.alert .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.alert #cancel-comment-reply-link {
    background-color: #ec5840;
    color: #fff; }
    .button-group.alert .button:hover, .button-group.alert .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .button-group.alert #cancel-comment-reply-link:hover, .button-group.alert .button:focus, .button-group.alert .comments-area ol.commentlist li.comment #cancel-comment-reply-link:focus, .comments-area ol.commentlist li.comment .button-group.alert #cancel-comment-reply-link:focus {
      background-color: #da3116;
      color: #fff; }
  .button-group.stacked .button, .button-group.stacked .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.stacked #cancel-comment-reply-link, .button-group.stacked-for-small .button, .button-group.stacked-for-small .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.stacked-for-small #cancel-comment-reply-link, .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.stacked-for-medium #cancel-comment-reply-link {
    width: 100%;
    border-right: 1px solid transparent; }
    .button-group.stacked .button:not(:last-child), .button-group.stacked .comments-area ol.commentlist li.comment #cancel-comment-reply-link:not(:last-child), .comments-area ol.commentlist li.comment .button-group.stacked #cancel-comment-reply-link:not(:last-child), .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-small .comments-area ol.commentlist li.comment #cancel-comment-reply-link:not(:last-child), .comments-area ol.commentlist li.comment .button-group.stacked-for-small #cancel-comment-reply-link:not(:last-child), .button-group.stacked-for-medium .button:not(:last-child), .button-group.stacked-for-medium .comments-area ol.commentlist li.comment #cancel-comment-reply-link:not(:last-child), .comments-area ol.commentlist li.comment .button-group.stacked-for-medium #cancel-comment-reply-link:not(:last-child) {
      border-bottom: 1px solid #fff; }
  @media screen and (min-width: 40em) {
    .button-group.stacked-for-small .button, .button-group.stacked-for-small .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.stacked-for-small #cancel-comment-reply-link {
      width: auto; }
      .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-small .comments-area ol.commentlist li.comment #cancel-comment-reply-link:not(:last-child), .comments-area ol.commentlist li.comment .button-group.stacked-for-small #cancel-comment-reply-link:not(:last-child) {
        margin-right: 1px; } }
  @media screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.stacked-for-medium #cancel-comment-reply-link {
      width: auto; }
      .button-group.stacked-for-medium .button:not(:last-child), .button-group.stacked-for-medium .comments-area ol.commentlist li.comment #cancel-comment-reply-link:not(:last-child), .comments-area ol.commentlist li.comment .button-group.stacked-for-medium #cancel-comment-reply-link:not(:last-child) {
        margin-right: 1px; } }
  @media screen and (max-width: 39.9375em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-small.expanded .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .button-group.stacked-for-small.expanded #cancel-comment-reply-link {
        display: block;
        margin-right: 0; } }

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(66, 73, 89, 0.25);
  border-radius: 0;
  position: relative;
  color: #424959;
  background-color: white; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #e5e7ea; }
  .callout.secondary {
    background-color: #f9f6f2; }
  .callout.subheading {
    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: #BFBFC1;
  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: #424959; }

.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: #fff;
  transition: transform 0.15s linear; }
  .is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%); }
  .is-drilldown-submenu.is-closing {
    transform: translateX(100%); }

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

.js-drilldown-back > a::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #59626B 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: #fff;
  border: 1px solid #E3E6EB;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10; }
  .dropdown-pane.is-open {
    visibility: visible; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #59626B transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.large-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #59626B transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #59626B;
    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: #fff;
  border: 1px solid #E3E6EB; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px;
    margin-top: -3px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #59626B transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #59626B;
    border-left-style: solid;
    border-right-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
    display: block; }

.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: #59626B;
  color: #fff; }
  .label.secondary {
    background: #D7C2A5;
    color: #424959; }
  .label.subheading {
    background: #777;
    color: #fff; }
  .label.success {
    background: #3adb76;
    color: #fff; }
  .label.warning {
    background: #ffae00;
    color: #fff; }
  .label.alert {
    background: #ec5840;
    color: #fff; }

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

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

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

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

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

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

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

.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: #424959;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #424959, 0 14px 0 #424959; }
  .menu-icon.dark:hover::after {
    background: #BFBFC1;
    box-shadow: 0 7px 0 #BFBFC1, 0 14px 0 #BFBFC1; }

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: #fff;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(66, 73, 89, 0.5); }

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

.off-canvas {
  position: absolute;
  background: #EFF0F2;
  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: 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; } }

.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: #424959;
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0; }
    .pagination a:hover,
    .pagination button:hover {
      background: #EFF0F2; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #59626B;
    color: #fff;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #E3E6EB;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    content: '\2026';
    padding: 0.1875rem 0.625rem;
    color: #424959; }

.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: #E3E6EB;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0; }
  .progress.primary .progress-meter {
    background-color: #59626B; }
  .progress.secondary .progress-meter {
    background-color: #D7C2A5; }
  .progress.subheading .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: #59626B; }

.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: #fff;
  white-space: nowrap; }

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

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #E3E6EB;
  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: #59626B;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
  border-radius: 0; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #4c535b; }
  .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(66, 73, 89, 0.45);
  overflow-y: scroll; }

.reveal {
  display: none;
  z-index: 1006;
  padding: 1rem;
  border: 1px solid #E3E6EB;
  background-color: #fff;
  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 > :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: 39.9375em) {
    .reveal {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      max-width: none;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

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

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

.switch-paddle {
  background: #E3E6EB;
  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: #fff;
    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: #59626B; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

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

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

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

.switch.tiny .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 #f2f2f2;
    background-color: #fff; }
  table caption {
    font-weight: bold;
    padding: 0.5rem 0.625rem 0.625rem; }
  table thead,
  table tfoot {
    background: #f9f9f9;
    color: #424959; }
    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: #f2f2f2; }
  table tbody th,
  table tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

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

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

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

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

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

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

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

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

.tabs.primary {
  background: #59626B; }
  .tabs.primary > li > a {
    color: #fff; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #606a74; }

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

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

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

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

.thumbnail {
  border: solid 4px #fff;
  box-shadow: 0 0 0 1px rgba(66, 73, 89, 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(89, 98, 107, 0.5); }

.title-bar {
  background: #424959;
  color: #fff;
  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: #424959;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #424959, 0 14px 0 #424959; }
  .menu-icon.dark:hover::after {
    background: #BFBFC1;
    box-shadow: 0 7px 0 #BFBFC1, 0 14px 0 #BFBFC1; }

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

.tooltip {
  background-color: #424959;
  color: #fff;
  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 #424959;
    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: #424959 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 #424959;
    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 #424959 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    transform: translateY(-50%); }

.top-bar {
  padding: 0.5rem; }
  .top-bar::before, .top-bar::after {
    content: ' ';
    display: table; }
  .top-bar::after {
    clear: both; }
  .top-bar,
  .top-bar ul {
    background-color: #EFF0F2; }
  .top-bar input {
    max-width: 200px;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button, .top-bar .comments-area ol.commentlist li.comment input#cancel-comment-reply-link, .comments-area ol.commentlist li.comment .top-bar input#cancel-comment-reply-link {
    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: 63.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }

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

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

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

/*======================================
=            Import Modules            =
======================================*/
/*===================================================================
=            3rd Party CSS/SASS FOR JQUERY/OTHER PLUGINS            =
===================================================================*/
/**
 * Owl Carousel v2.1.1
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative; }

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none; }

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  display: none; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

.no-js .owl-carousel {
  display: block; }

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.owl-height {
  transition: height .5s ease-in-out; }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*============================================
=            Banner Module Styles            =
============================================*/
/*----------  Default Owl Carousel Arrows/Dots  ----------*/
.slider_nav {
  width: 100%;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .slider_nav [class*='owl-'] {
    display: inline-block;
    cursor: pointer;
    z-index: 3;
    position: absolute;
    border-radius: 3px;
    top: 50%;
    margin-top: -35px;
    width: 17px; }
    .slider_nav [class*='owl-']:before {
      content: '';
      font-family: 'FontAwesome';
      font-size: 50px; }
    .slider_nav [class*='owl-']:hover {
      text-decoration: none; }
      .slider_nav [class*='owl-']:hover:before {
        color: #59626B; }
  .slider_nav .owl-prev {
    left: 20px; }
    .slider_nav .owl-prev:before {
      content: "\f104"; }
  .slider_nav .owl-next {
    right: 20px; }
    .slider_nav .owl-next:before {
      content: "\f105"; }
  .slider_nav .disabled {
    cursor: default; }

.slider_dots {
  position: absolute;
  bottom: 30px;
  text-align: center;
  z-index: 3;
  width: 100%; }
  .slider_dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
    margin: 5px 7px; }
    .slider_dots .owl-dot span {
      width: 15px;
      height: 15px;
      cursor: pointer;
      background-color: #fff;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .slider_dots .owl-dot.active span, .slider_dots .owl-dot:hover span {
      background-color: #59626B; }

/*----------  Default Slider Styles  ----------*/
.slider_container {
  position: relative;
  background-image: url("../images/preloader.svg");
  background-position: center center;
  background-color: #F7F7F7;
  background-repeat: no-repeat; }
  .slider_container [data-js-banner-height] {
    min-height: 300px; }
    @media screen and (max-width: 63.9375em) {
      .slider_container [data-js-banner-height] {
        min-height: 200px; } }
  .slider_container .owl-carousel .owl-stage-outer {
    width: 100% !important; }
  .slider_container .owl-carousel .owl-item {
    width: 100%;
    display: block; }
    .slider_container .owl-carousel .owl-item .item {
      background-size: cover;
      background-position: center;
      width: 100%; }
  .slider_container .owl-carousel.default-banner-theme .banner_text .vert_center_container {
    padding-top: 30%; }
    .slider_container .owl-carousel.default-banner-theme .banner_text .vert_center_container h2 {
      font-family: "proxima-nova", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
      font-size: 36px;
      line-height: 1.1em;
      text-transform: uppercase;
      color: #fff;
      font-weight: 300;
      letter-spacing: 5px;
      margin-bottom: 30px; }
      .slider_container .owl-carousel.default-banner-theme .banner_text .vert_center_container h2 strong {
        display: block;
        font-size: 92px;
        line-height: 1em;
        font-weight: 500;
        font-family: "baskerville-urw", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }
    .slider_container .owl-carousel.default-banner-theme .banner_text .vert_center_container p {
      color: #fff; }
  @media screen and (max-width: 63.9375em) {
    .slider_container .owl-carousel.default-banner-theme .banner_text {
      text-align: center; }
      .slider_container .owl-carousel.default-banner-theme .banner_text .vert_center_container {
        padding-top: 0; }
        .slider_container .owl-carousel.default-banner-theme .banner_text .vert_center_container h2 {
          font-size: 30px;
          line-height: 1.2em;
          text-align: center; }
          .slider_container .owl-carousel.default-banner-theme .banner_text .vert_center_container h2 strong {
            font-size: 40px; } }

/*----------  Custom Slider Styles  ----------*/
/*=================================================================
=            Single Page Banners / Solid Colour Header            =
=================================================================*/
.article_header_banner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 3rem;
  text-align: left; }
  @media screen and (max-width: 39.9375em) {
    .article_header_banner {
      margin-bottom: 2rem; } }
  .article_header_banner.default {
    background-color: #59626B; }
  .article_header_banner.image_src {
    background-color: #EFF0F2; }
  .article_header_banner.below {
    margin-bottom: 0; }
  .article_header_banner.center {
    text-align: center; }
  .article_header_banner.left {
    text-align: left; }
  .article_header_banner.right {
    text-align: right; }
  .article_header_banner, .article_header_banner .vert_center_container {
    min-height: 400px; }
    @media screen and (max-width: 39.9375em) {
      .article_header_banner, .article_header_banner .vert_center_container {
        min-height: 200px; } }
  .article_header_banner h1 {
    margin-bottom: 0;
    color: #fff; }
    @media screen and (max-width: 39.9375em) {
      .article_header_banner h1 {
        font-size: 2rem; } }

header h1.banner_heading {
  margin-top: 2rem;
  margin-bottom: 1rem; }

/*=====  End of Single Page Banners / Solid Colour Header  ======*/
.featured_testimonials {
  background: #EFF0F2;
  padding: 3rem 0;
  margin: 1rem 0 0;
  position: relative; }
  .featured_testimonials .item {
    text-align: left; }
    .featured_testimonials .item .testi_by {
      margin-top: 1rem;
      font-weight: 600; }
  .featured_testimonials .owl-item {
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.7, 0, 0.3, 1) 0s; }
  .featured_testimonials .owl-item.active {
    opacity: 1;
    transition: opacity 0.9s cubic-bezier(0.7, 0, 0.3, 1) 0.5s; }
  .featured_testimonials .slider_dots {
    position: static;
    bottom: 30px;
    text-align: center;
    z-index: 3;
    width: auto;
    margin-top: 30px;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto; }
  .featured_testimonials .owl-dot span {
    background: #EFF0F2; }
  .featured_testimonials .owl-dot.active span {
    background: #59626B; }

.testimonial_dots {
  bottom: 10px; }

.testimonial_shortcode.constrained .featured_testimonials {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0; }
  @media screen and (max-width: 39.9375em) {
    .testimonial_shortcode.constrained .featured_testimonials {
      padding-left: 0;
      padding-right: 0; } }

/*================================================
 =            Portfolio Listing Styles            =
 ================================================*/
.project_listing_container {
  margin-top: 2.3rem;
  margin-bottom: 0;
  text-align: center; }
  @media screen and (max-width: 39.9375em) {
    .project_listing_container {
      margin-top: 1rem; } }
  .project_listing_container .inner_project_container {
    margin-bottom: 30px; }
    @media screen and (max-width: 39.9375em) {
      .project_listing_container .inner_project_container {
        margin-bottom: 1rem; } }
    .project_listing_container .inner_project_container .project_img {
      display: block;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center center;
      -webkit-backface-visibility: hidden;
      -moz-transition: all 0.25s ease 0s;
      -webkit-transition: all 0.25s ease 0s;
      transition: all 0.25s ease 0s; }
      .project_listing_container .inner_project_container .project_img:before {
        content: '';
        padding-top: 100%;
        display: block; }
      @media screen and (max-width: 39.9375em) {
        .project_listing_container .inner_project_container .project_img {
          width: 100%;
          margin-left: auto;
          margin-right: auto; } }
      .project_listing_container .inner_project_container .project_img .overlay {
        background-color: transparent;
        color: #fff;
        display: block;
        position: absolute;
        margin: auto;
        vertical-align: center;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        -webkit-backface-visibility: hidden;
        -moz-transition: all 0.3s ease 0s;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        opacity: 0; }
        .project_listing_container .inner_project_container .project_img .overlay i {
          position: absolute;
          height: 43px;
          width: 33px;
          top: 100%;
          bottom: 0;
          font-size: 42px;
          right: 0;
          left: 0;
          -webkit-backface-visibility: hidden;
          -moz-transition: all 0.3s ease 0s;
          -webkit-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s;
          margin: auto;
          opacity: 0; }
        .project_listing_container .inner_project_container .project_img .overlay .project_content {
          position: absolute;
          top: 100%;
          bottom: 0;
          right: 0;
          left: 0;
          padding: 0 40px;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          -o-box-sizing: border-box;
          -ms-box-sizing: border-box;
          box-sizing: border-box;
          -webkit-backface-visibility: hidden;
          -moz-transition: all 0.3s ease 0s;
          -webkit-transition: all 0.3s ease 0s;
          transition: all 0.3s ease 0s;
          margin: auto;
          opacity: 0; }
          .project_listing_container .inner_project_container .project_img .overlay .project_content h2 {
            margin-bottom: 20px;
            color: #fff;
            font-weight: 700; }
      .project_listing_container .inner_project_container .project_img:hover .overlay {
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 1; }
        .project_listing_container .inner_project_container .project_img:hover .overlay i, .project_listing_container .inner_project_container .project_img:hover .overlay .project_content {
          opacity: 1;
          top: 0%; }

/*====================================================
=            Portfolio Single Page Styles            =
====================================================*/
.blog_page .blog_header {
  margin-top: 80px;
  margin-bottom: 30px; }
  @media screen and (max-width: 63.9375em) {
    .blog_page .blog_header {
      margin-top: 30px; } }

.blog_listing_post {
  display: block;
  position: relative; }
  .blog_listing_post article .bp_thumb {
    position: relative;
    height: 250px;
    z-index: 0;
    background-color: #eee;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center; }
    .blog_listing_post article .bp_thumb:before {
      content: ' ';
      display: block;
      opacity: 0;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      -webkit-backface-visibility: hidden;
      -moz-transition: all 0.25s ease 0s;
      -webkit-transition: all 0.25s ease 0s;
      transition: all 0.25s ease 0s;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1; }
    .blog_listing_post article .bp_thumb:after {
      content: "\f002";
      font-family: 'Fontawesome';
      display: block;
      color: #fff;
      font-size: 32px;
      line-height: 1.2em;
      opacity: 0;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 50%;
      z-index: 1;
      width: 34px;
      height: 32px;
      text-align: center;
      margin: auto;
      -webkit-backface-visibility: hidden;
      -moz-transition: all 0.25s ease 0s;
      -webkit-transition: all 0.25s ease 0s;
      transition: all 0.25s ease 0s; }
  .blog_listing_post article .blog_post_content {
    position: relative;
    padding: 25px 25px;
    z-index: 2;
    color: #424959; }
    .blog_listing_post article .blog_post_content header h2 {
      text-transform: uppercase;
      color: #777;
      font-weight: 600;
      letter-spacing: 2px;
      font-size: 20px; }
    .blog_listing_post article .blog_post_content section {
      font-size: 16px;
      line-height: 1.4em;
      margin-bottom: 6px; }
      .blog_listing_post article .blog_post_content section p:last-child {
        margin-bottom: 0; }
    .blog_listing_post article .blog_post_content footer {
      text-align: center;
      font-size: 14px;
      color: #BFBFC1; }
  .blog_listing_post:hover article .bp_thumb:before {
    opacity: 1; }
  .blog_listing_post:hover article .bp_thumb:after {
    opacity: 1;
    bottom: 0; }
  .blog_listing_post:hover article .blog_post_content header h2 {
    color: #59626B; }

.blog_sidebar {
  margin-left: 20px;
  margin-top: 10px; }
  .blog_sidebar .blog_sidebar_widget {
    padding: 40px 0;
    border-bottom: 1px solid #DCDCDC; }
    .blog_sidebar .blog_sidebar_widget.no_b {
      border-bottom: 0; }
    .blog_sidebar .blog_sidebar_widget:first-child {
      padding-top: 0; }
    .blog_sidebar .blog_sidebar_widget:last-child {
      border-bottom: 0; }
    .blog_sidebar .blog_sidebar_widget h3 {
      text-transform: uppercase;
      font-weight: 600;
      color: #777;
      letter-spacing: 3px;
      margin-left: 5px;
      margin-bottom: 10px; }
    .blog_sidebar .blog_sidebar_widget ul {
      margin-left: 5px;
      margin-bottom: 0; }
      .blog_sidebar .blog_sidebar_widget ul li {
        list-style: none; }
        .blog_sidebar .blog_sidebar_widget ul li a {
          color: #858585;
          font-weight: 600;
          font-size: 16px; }
          .blog_sidebar .blog_sidebar_widget ul li a:hover {
            color: #59626B; }
    .blog_sidebar .blog_sidebar_widget .menu-social-container ul li a {
      padding: 0;
      margin-right: 15px; }
      .blog_sidebar .blog_sidebar_widget .menu-social-container ul li a:before {
        font-size: 18px;
        width: 40px;
        line-height: 40px;
        height: 40px; }
  .blog_sidebar .related_blog_posts {
    margin-top: 30px;
    display: block;
    margin-left: 5px; }
    .blog_sidebar .related_blog_posts a {
      -webkit-backface-visibility: hidden;
      -moz-transition: all 0.25s ease 0s;
      -webkit-transition: all 0.25s ease 0s;
      transition: all 0.25s ease 0s;
      display: block;
      margin-bottom: 20px; }
      .blog_sidebar .related_blog_posts a:hover {
        opacity: 0.8; }
    .blog_sidebar .related_blog_posts span {
      display: block;
      float: left; }
    .blog_sidebar .related_blog_posts .img_thumb {
      width: 35%;
      margin-right: 5%; }
      .blog_sidebar .related_blog_posts .img_thumb img {
        max-width: 100%; }
    .blog_sidebar .related_blog_posts .title {
      width: 60%;
      text-transform: uppercase;
      line-height: 1.5em;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 2px;
      color: #777;
      padding-left: 10px; }

.blog_single {
  margin-top: 80px; }
  .blog_single header {
    margin-bottom: 10px;
    color: #A1A1A1;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px; }
    .blog_single header h1 {
      font-weight: 300;
      color: #777;
      margin-bottom: 20px; }
  .blog_single .entry-thumb {
    margin-bottom: 30px; }
  .blog_single .entry-content {
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid #DCDCDC; }

.csf_custom_share_container {
  text-align: right;
  margin-top: -5px; }
  .csf_custom_share_container a {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    line-height: 35px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    background-color: #59626B;
    color: #fff;
    font-size: 18px;
    text-align: center; }
    .csf_custom_share_container a:hover {
      background-color: #2b2f33; }

/*=============================================
=            Import Page Templates            =
=============================================*/
/*==========================================
=            Home Page Template            =
==========================================*/
.home_template .slider_container {
  margin-bottom: 2rem; }

.home_template .featured_cats {
  display: block;
  height: 483px;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  -moz-transition: opacity 0.25s ease 0s;
  -webkit-transition: opacity 0.25s ease 0s;
  transition: opacity 0.25s ease 0s; }
  @media screen and (max-width: 63.9375em) {
    .home_template .featured_cats {
      height: 363px;
      margin-bottom: 0; } }
  .home_template .featured_cats .vert_center_container {
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(89, 98, 107, 0.7);
    color: #fff;
    text-transform: uppercase;
    padding-left: 40px;
    margin-right: 40px; }
    .home_template .featured_cats .vert_center_container h3 {
      font-family: "proxima-nova", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
      font-size: 24px;
      line-height: 1em;
      letter-spacing: 4px;
      margin-bottom: 0;
      color: #fff; }
  .home_template .featured_cats:hover {
    opacity: 0.8; }

.home_template .home_content_left {
  padding-right: 0px;
  margin-top: -10px; }
  .home_template .home_content_left h2 {
    text-align: left;
    text-transform: uppercase;
    font-size: 34px;
    font-family: "baskerville-urw", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-style: italic;
    letter-spacing: 2px;
    line-height: 1em; }
    @media screen and (max-width: 63.9375em) {
      .home_template .home_content_left h2 {
        margin-bottom: 30px; } }
    .home_template .home_content_left h2 strong {
      letter-spacing: normal;
      font-style: normal;
      display: block;
      font-weight: 500;
      line-height: 1em;
      font-size: 62px;
      margin-right: -15px; }

.home_template .home_content_right {
  text-align: left;
  border-left: 2px solid #E3E6EB;
  padding-left: 40px; }
  @media screen and (max-width: 63.9375em) {
    .home_template .home_content_right {
      border-left: 0 !important;
      padding-left: 0; } }

.home_template .home_content {
  text-align: right; }
  .home_template .home_content a.button, .home_template .home_content .comments-area ol.commentlist li.comment a#cancel-comment-reply-link, .comments-area ol.commentlist li.comment .home_template .home_content a#cancel-comment-reply-link {
    margin-top: 60px; }
  @media screen and (max-width: 63.9375em) {
    .home_template .home_content {
      text-align: left; }
      .home_template .home_content a.button, .home_template .home_content .comments-area ol.commentlist li.comment a#cancel-comment-reply-link, .comments-area ol.commentlist li.comment .home_template .home_content a#cancel-comment-reply-link {
        margin-top: 25px; } }

/*===============================================
=            Default Template Styles            =
===============================================*/
.default_template .slider_container, .default_template .article_header_banner {
  margin-bottom: 3rem; }
  @media screen and (max-width: 63.9375em) {
    .default_template .slider_container, .default_template .article_header_banner {
      margin-bottom: 1rem; } }

.default_template ul {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 50px; }
  .default_template ul li {
    margin: 5px 3px;
    list-style: square;
    color: #7b8c96;
    padding: 0 5px; }

@media screen and (max-width: 63.9375em) {
  .default_template #inner-content, .default_template .main_page_heading.banner_heading, .default_template .article-header {
    margin-left: 20px;
    margin-right: 20px; } }

/*====================================
=            Import Parts            =
====================================*/
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0); }

#cboxWrapper {
  max-width: none; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000;
  opacity: 0.9;
  filter: alpha(opacity=90); }

#colorbox {
  outline: 0; }

#cboxContent {
  margin-top: 20px;
  background: #000; }

.cboxIframe {
  background: #fff; }

#cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

#cboxLoadedContent {
  border: 5px solid #000;
  background: #fff; }

#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc; }

#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc; }

#cboxLoadingGraphic {
  background: url(../images/loading.gif) no-repeat center center; }

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none; }

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0; }

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff; }

#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(../images/controls.png) no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px; }

#cboxPrevious:hover {
  background-position: bottom left; }

#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(../images/controls.png) no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px; }

#cboxNext:hover {
  background-position: bottom right; }

#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: url(../images/controls.png) no-repeat top center;
  width: 38px;
  height: 19px;
  text-indent: -9999px; }

#cboxClose:hover {
  background-position: bottom center; }

.comments-area {
  margin-bottom: 60px; }
  .comments-area .comment_header {
    text-transform: uppercase;
    color: #59626B;
    margin-bottom: 30px; }
    .comments-area .comment_header h3 {
      font-weight: 300;
      font-family: "baskerville-urw", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }
      .comments-area .comment_header h3 i {
        margin-left: 20px;
        letter-spacing: 0;
        width: 28px;
        height: 28px;
        line-height: 29px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-backface-visibility: hidden;
        -moz-transition: all 0.25s ease 0s;
        -webkit-transition: all 0.25s ease 0s;
        transition: all 0.25s ease 0s;
        background-color: #59626B;
        color: #fff;
        font-size: 25px;
        text-align: center; }
  .comments-area .media-object-avatar {
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    width: 60px; }
    .comments-area .media-object-avatar img {
      max-width: 100%;
      height: auto; }
  .comments-area .csf_custom_share_container {
    margin-top: -2px; }
  .comments-area .commentfield {
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .comments-area .commentfield .media-object-section {
      display: block;
      flex-grow: 2; }
      .comments-area .commentfield .media-object-section:first-child {
        max-width: 91px; }
      .comments-area .commentfield .media-object-section textarea {
        width: 100%; }
  .comments-area ol.commentlist {
    margin-top: -10px; }
    .comments-area ol.commentlist li.comment {
      padding: 0 0;
      margin: 15px 0; }
      .comments-area ol.commentlist li.comment:not(.depth-1) {
        padding: 15px 0;
        padding-left: 25px;
        border-left: 4px solid #a7afb6;
        background-color: #f3f3f3; }
      .comments-area ol.commentlist li.comment #cancel-comment-reply-link {
        font-size: 14px !important;
        margin-top: 20px;
        padding: 15px !important;
        background-color: #ec5840; }
        .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover {
          background-color: #e23317; }
      .comments-area ol.commentlist li.comment .media-object {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 0; }
        .comments-area ol.commentlist li.comment .media-object .media-object-section {
          display: block;
          flex-grow: 2; }
          .comments-area ol.commentlist li.comment .media-object .media-object-section:first-child {
            max-width: 77px; }
          .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-author {
            letter-spacing: 1px; }
            .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-author .author, .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-author a {
              color: #424959;
              letter-spacing: 1px;
              font-weight: 400;
              font-size: 16px; }
            .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-author a:hover {
              color: #59626B; }
            .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-author i {
              margin-left: 10px;
              color: #59626B; }
              .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-author i:hover {
                color: #42494f; }
          .comments-area ol.commentlist li.comment .media-object .media-object-section section.comment_content p {
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 16px; }
          .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-reply-link {
            float: left;
            color: #A1A1A1;
            font-weight: 500; }
            .comments-area ol.commentlist li.comment .media-object .media-object-section .comment-reply-link:hover {
              color: #42494f; }
  .comments-area .comment-form {
    margin-bottom: 40px; }
  .comments-area #cancel-comment-reply-link {
    margin-top: 20px;
    letter-spacing: 1px; }
  .comments-area .form-submit {
    text-align: right;
    margin-top: 10px;
    margin-bottom: 0; }
    .comments-area .form-submit input[type=submit] {
      padding: 15px 23px;
      font-size: 14px;
      margin-bottom: 0;
      display: none; }
  .comments-area .must-log-in {
    margin-bottom: 40px; }

/*===================================================
=            Import Main, Retina & Print            =
===================================================*/
/************************************************

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
.pos_rel {
  position: relative; }

.csf_basic_transition {
  -webkit-backface-visibility: hidden;
  -moz-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s; }

.vert_center_container {
  width: 100%;
  display: table;
  height: 100%; }
  .vert_center_container .inner_vert_center_container {
    width: 100%;
    display: table-cell;
    vertical-align: middle; }

.button, .comments-area ol.commentlist li.comment #cancel-comment-reply-link, input[type="submit"], .off-canvas-wrapper .button, .off-canvas-wrapper .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .off-canvas-wrapper #cancel-comment-reply-link, .off-canvas-wrapper input[type="submit"], .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit {
  text-transform: uppercase;
  border: none;
  outline: none !important;
  background: #D7C2A5;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 22px 45px;
  font-size: 16px;
  letter-spacing: 2px;
  -webkit-backface-visibility: hidden;
  -moz-transition: background 0.25s ease 0s;
  -webkit-transition: background 0.25s ease 0s;
  transition: background 0.25s ease 0s; }
  .button:hover, .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, input[type="submit"]:hover, .off-canvas-wrapper .button:hover, .off-canvas-wrapper .comments-area ol.commentlist li.comment #cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .off-canvas-wrapper #cancel-comment-reply-link:hover, .off-canvas-wrapper input[type="submit"]:hover, .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit:hover {
    background: #c7aa82;
    color: #fff !important; }
  .button.button_grey, .comments-area ol.commentlist li.comment .button_grey#cancel-comment-reply-link, input[type="submit"].button_grey, .off-canvas-wrapper .button.button_grey, .off-canvas-wrapper .comments-area ol.commentlist li.comment .button_grey#cancel-comment-reply-link, .comments-area ol.commentlist li.comment .off-canvas-wrapper .button_grey#cancel-comment-reply-link, .off-canvas-wrapper input[type="submit"].button_grey, .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit.button_grey {
    background-color: #59626B !important;
    color: #fff !important; }
    .button.button_grey:hover, .comments-area ol.commentlist li.comment .button_grey#cancel-comment-reply-link:hover, input[type="submit"].button_grey:hover, .off-canvas-wrapper .button.button_grey:hover, .off-canvas-wrapper .comments-area ol.commentlist li.comment .button_grey#cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .off-canvas-wrapper .button_grey#cancel-comment-reply-link:hover, .off-canvas-wrapper input[type="submit"].button_grey:hover, .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit.button_grey:hover {
      background: #707c87 !important;
      color: #fff !important; }
  .button.hollow, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link, input[type="submit"].hollow, .off-canvas-wrapper .button.hollow, .off-canvas-wrapper .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link, .comments-area ol.commentlist li.comment .off-canvas-wrapper .hollow#cancel-comment-reply-link, .off-canvas-wrapper input[type="submit"].hollow, .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit.hollow {
    border-width: 1px; }
    .button.hollow:hover, .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link:hover, input[type="submit"].hollow:hover, .off-canvas-wrapper .button.hollow:hover, .off-canvas-wrapper .comments-area ol.commentlist li.comment .hollow#cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .off-canvas-wrapper .hollow#cancel-comment-reply-link:hover, .off-canvas-wrapper input[type="submit"].hollow:hover, .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit.hollow:hover {
      background: #59626B;
      color: #fff !important;
      border-color: #59626B; }
    .button.hollow.white, .comments-area ol.commentlist li.comment .hollow.white#cancel-comment-reply-link, input[type="submit"].hollow.white, .off-canvas-wrapper .button.hollow.white, .off-canvas-wrapper .comments-area ol.commentlist li.comment .hollow.white#cancel-comment-reply-link, .comments-area ol.commentlist li.comment .off-canvas-wrapper .hollow.white#cancel-comment-reply-link, .off-canvas-wrapper input[type="submit"].hollow.white, .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit.hollow.white {
      border-color: #fff;
      color: #fff !important; }
      .button.hollow.white:hover, .comments-area ol.commentlist li.comment .hollow.white#cancel-comment-reply-link:hover, input[type="submit"].hollow.white:hover, .off-canvas-wrapper .button.hollow.white:hover, .off-canvas-wrapper .comments-area ol.commentlist li.comment .hollow.white#cancel-comment-reply-link:hover, .comments-area ol.commentlist li.comment .off-canvas-wrapper .hollow.white#cancel-comment-reply-link:hover, .off-canvas-wrapper input[type="submit"].hollow.white:hover, .off-canvas-wrapper input[type="submit"].wpcf7-form-control.wpcf7-submit.hollow.white:hover {
        color: #fff !important;
        border-color: #fff;
        background: rgba(255, 255, 255, 0.4); }

.clear_group:after {
  content: "";
  display: table;
  clear: both; }

input[type='text'],
input[type='password'],
input[type='email'],
input[type='tel'],
textarea,
form.pmpro_form .input,
form.pmpro_form textarea,
form.pmpro_form select {
  padding: 22px 25px;
  width: 100%;
  text-transform: uppercase;
  max-width: none;
  line-height: 1em;
  margin: 1.5em 0;
  outline: none;
  font-family: "proxima-nova", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  color: #596068;
  border: 1px solid #fff;
  font-size: 16px;
  height: auto;
  font-family: 'Segoe', helvetica, sans-serif;
  -webkit-backface-visibility: hidden;
  -moz-transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  -webkit-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent; }
  input[type='text']::-webkit-input-placeholder,
  input[type='password']::-webkit-input-placeholder,
  input[type='email']::-webkit-input-placeholder,
  input[type='tel']::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  form.pmpro_form .input::-webkit-input-placeholder,
  form.pmpro_form textarea::-webkit-input-placeholder,
  form.pmpro_form select::-webkit-input-placeholder {
    color: #BFBFC1;
    font-size: 16px;
    line-height: 1.2em; }
  input[type='text']:-moz-placeholder,
  input[type='password']:-moz-placeholder,
  input[type='email']:-moz-placeholder,
  input[type='tel']:-moz-placeholder,
  textarea:-moz-placeholder,
  form.pmpro_form .input:-moz-placeholder,
  form.pmpro_form textarea:-moz-placeholder,
  form.pmpro_form select:-moz-placeholder {
    /* Firefox 18- */
    color: #BFBFC1;
    font-size: 16px;
    line-height: 1.2em; }
  input[type='text']::-moz-placeholder,
  input[type='password']::-moz-placeholder,
  input[type='email']::-moz-placeholder,
  input[type='tel']::-moz-placeholder,
  textarea::-moz-placeholder,
  form.pmpro_form .input::-moz-placeholder,
  form.pmpro_form textarea::-moz-placeholder,
  form.pmpro_form select::-moz-placeholder {
    /* Firefox 19+ */
    color: #BFBFC1;
    font-size: 16px;
    line-height: 1.2em; }
  input[type='text']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder,
  input[type='tel']:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  form.pmpro_form .input:-ms-input-placeholder,
  form.pmpro_form textarea:-ms-input-placeholder,
  form.pmpro_form select:-ms-input-placeholder {
    color: #BFBFC1;
    font-size: 16px;
    line-height: 1.2em; }
  @media screen and (max-width: 63.9375em) {
    input[type='text']::-webkit-input-placeholder,
    input[type='password']::-webkit-input-placeholder,
    input[type='email']::-webkit-input-placeholder,
    input[type='tel']::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder,
    form.pmpro_form .input::-webkit-input-placeholder,
    form.pmpro_form textarea::-webkit-input-placeholder,
    form.pmpro_form select::-webkit-input-placeholder {
      color: #BFBFC1;
      font-size: 14px;
      line-height: 1.2em; }
    input[type='text']:-moz-placeholder,
    input[type='password']:-moz-placeholder,
    input[type='email']:-moz-placeholder,
    input[type='tel']:-moz-placeholder,
    textarea:-moz-placeholder,
    form.pmpro_form .input:-moz-placeholder,
    form.pmpro_form textarea:-moz-placeholder,
    form.pmpro_form select:-moz-placeholder {
      /* Firefox 18- */
      color: #BFBFC1;
      font-size: 14px;
      line-height: 1.2em; }
    input[type='text']::-moz-placeholder,
    input[type='password']::-moz-placeholder,
    input[type='email']::-moz-placeholder,
    input[type='tel']::-moz-placeholder,
    textarea::-moz-placeholder,
    form.pmpro_form .input::-moz-placeholder,
    form.pmpro_form textarea::-moz-placeholder,
    form.pmpro_form select::-moz-placeholder {
      /* Firefox 19+ */
      color: #BFBFC1;
      font-size: 14px;
      line-height: 1.2em; }
    input[type='text']:-ms-input-placeholder,
    input[type='password']:-ms-input-placeholder,
    input[type='email']:-ms-input-placeholder,
    input[type='tel']:-ms-input-placeholder,
    textarea:-ms-input-placeholder,
    form.pmpro_form .input:-ms-input-placeholder,
    form.pmpro_form textarea:-ms-input-placeholder,
    form.pmpro_form select:-ms-input-placeholder {
      color: #BFBFC1;
      font-size: 14px;
      line-height: 1.2em; } }

body {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 300; }

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

a:hover, a:visited:hover {
  color: #D7C2A5 !important; }

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

.home_template h1, .home_template .h1 {
  font-size: 62px;
  line-height: 1.2em;
  color: #596068; }

@media screen and (max-width: 63.9375em) {
  .default_template h1, .default_template .h1 {
    font-size: 2.5rem; } }

h2, .h2 {
  text-align: left;
  text-transform: uppercase;
  font-size: 36px;
  font-family: "baskerville-urw", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }
  @media screen and (max-width: 63.9375em) {
    h2, .h2 {
      font-size: 26px;
      line-height: 1.3em; } }

h3, .h3 {
  color: #596068; }

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

/*********************
NAVIGATION STYLES
*********************/
.top-bar {
  position: relative;
  /* height: 124px;  */
	height: 150px;
  z-index: 99;
  padding: 0;
  background-color: #fff; }
  @media screen and (max-width: 63.9375em) {
    .top-bar {
      height: 80px; } }
  .top-bar.is_admin_bar.sticky.is-stuck {
    margin-top: 32px !important; }
  .top-bar a.logo {
    background: url("http://placehold.it/250x80") no-repeat left center;
    background-size: contain;
    /* height: 80px; */
	  height: 140px;
    width: 100%;
    text-indent: -9999px;
    /* margin-top: 21px; */
	  margin-top: 5px;
    display: block; }
  .top-bar ul.top_nav {
    float: right;
    margin-left: 0;
    background: #59626B;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px; }
    .top-bar ul.top_nav li {
      list-style: none;
      display: inline-block; }
      .top-bar ul.top_nav li a {
        display: block;
        padding: 6px 6px;
        color: #fff;
        font-size: 14px;
        -webkit-backface-visibility: hidden;
        -moz-transition: all 0.25s ease 0s;
        -webkit-transition: all 0.25s ease 0s;
        transition: all 0.25s ease 0s; }
        .top-bar ul.top_nav li a i {
          font-size: 16px;
          margin-right: 5px; }
        .top-bar ul.top_nav li a:hover {
          color: #a7afb6; }
      .top-bar ul.top_nav li:last-child a {
        font-size: 15px;
        font-weight: 800; }
  .top-bar ul.menu {
    background-color: transparent;
    margin-top: 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-content: stretch;
    align-items: stretch;
    height: 124px; }
    @media screen and (max-width: 63.9375em) {
      .top-bar ul.menu {
        height: 80px; } }
    .top-bar ul.menu li {
      display: block;
      background-color: transparent;
      -webkit-backface-visibility: hidden;
      -moz-transition: all 0.25s ease 0s;
      -webkit-transition: all 0.25s ease 0s;
      transition: all 0.25s ease 0s; }
      .top-bar ul.menu li > a {
        text-transform: uppercase;
        color: #59626B;
        font-size: 14px;
        display: table;
        padding: 0.8rem 2rem 0.7em;
        height: 100%;
        background-color: transparent;
        -webkit-backface-visibility: hidden;
        -moz-transition: all 0.25s ease 0s;
        -webkit-transition: all 0.25s ease 0s;
        transition: all 0.25s ease 0s;
        letter-spacing: 2px;
        font-weight: 600;
        font-family: "proxima-nova", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }
        .top-bar ul.menu li > a .fb {
          position: relative;
          top: -3px;
          color: #fff; }
          .top-bar ul.menu li > a .fb i {
            font-size: 18px; }
          .top-bar ul.menu li > a .fb:before {
            position: absolute;
            content: '';
            display: inline-block;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            line-height: 42px;
            left: -15px;
            top: 28px;
            z-index: -1;
            color: #fff;
            background: #59626B;
            -webkit-backface-visibility: hidden;
            -moz-transition: all 0.25s ease 0s;
            -webkit-transition: all 0.25s ease 0s;
            transition: all 0.25s ease 0s; }
        .top-bar ul.menu li > a .hoverline {
          display: block;
          height: 3px;
          background: #D7C2A5;
          width: 70%;
          max-width: 70px;
          opacity: 0;
          margin: 0 auto;
          position: relative;
          bottom: -10px;
          -webkit-backface-visibility: hidden;
          -moz-transition: opacity 0.25s ease 0s;
          -webkit-transition: opacity 0.25s ease 0s;
          transition: opacity 0.25s ease 0s; }
        .top-bar ul.menu li > a:hover {
          color: #59626B; }
          .top-bar ul.menu li > a:hover .hoverline {
            opacity: 1; }
          .top-bar ul.menu li > a:hover .fb:before {
            background: #707c87; }
        .top-bar ul.menu li > a span {
          position: relative;
          display: table-cell;
          vertical-align: middle; }
      .top-bar ul.menu li.is-dropdown-submenu-parent > a {
        padding-right: 1rem !important; }
        .top-bar ul.menu li.is-dropdown-submenu-parent > a::after {
          display: none !important; }
      .top-bar ul.menu li:last-child a {
        padding-right: 0; }
      .top-bar ul.menu li:hover ul {
        display: block; }
      .top-bar ul.menu li ul {
        height: auto;
        display: none;
        margin-top: 0;
        background: #59626B;
        text-align: left;
        border: 0;
        padding-top: 10px;
        padding-bottom: 10px; }
        .top-bar ul.menu li ul li:hover {
          background: #2b2f33; }
          .top-bar ul.menu li ul li:hover a {
            color: #fff; }
        .top-bar ul.menu li ul li:before {
          content: '';
          display: none; }
        .top-bar ul.menu li ul li a {
          color: #fff;
          line-height: 1.3em;
          text-align: left;
          padding-top: 13px;
          padding-bottom: 13px;
          padding-left: 20px; }
          .top-bar ul.menu li ul li a span.hoverline {
            display: none; }
        .top-bar ul.menu li ul li:last-child {
          border: 0; }
  @media screen and (max-width: 63.9375em) {
    .top-bar {
      height: 112px; }
      .top-bar a.logo {
        margin-top: 16px;
        margin-bottom: 9px;
        height: 58px; }
      .top-bar ul.top_nav {
        width: 100%;
        text-align: center; }
      .top-bar ul.menu {
        margin-top: 21px; }
        .top-bar ul.menu li:before {
          margin: 0; }
        .top-bar ul.menu li a {
          padding: 0 5px; }
        .top-bar ul.menu li.is-dropdown-submenu-parent > a {
          padding-right: 0 !important; }
      .is-off-canvas-open.is-open-right .top-bar {
        background: #7A7F8A; }
      .top-bar .mobile_menu {
        position: relative;
        outline: none !important; }
        .top-bar .mobile_menu .menu-icon {
          z-index: 100;
          position: absolute;
          right: 10px;
          top: 42px;
          outline: none !important; }
          .top-bar .mobile_menu .menu-icon:after {
            background-color: #BFBFC1;
            box-shadow: 0 7px 0 #BFBFC1, 0 14px 0 #BFBFC1; }
          .top-bar .mobile_menu .menu-icon[aria-expanded="true"]:after {
            background-color: #59626B;
            box-shadow: 0 7px 0 #59626B, 0 14px 0 #59626B; } }

.off-canvas-wrapper {
  background: #59626B; }
  .off-canvas-wrapper a {
    color: #a7afb6; }
    .off-canvas-wrapper a:after {
      border-color: #fff transparent transparent; }

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

.off-canvas {
  background: transparent; }

.js-off-canvas-exit {
  z-index: 9;
  background: rgba(66, 73, 89, 0.7); }

/************************************************
POSTS & CONTENT STYLES & DEFAULT TEMPLATE STYLES
************************************************/
#content .inner-content, #content #inner-content {
  padding: 1rem 0rem; }
  #content .inner-content.home_content, #content #inner-content.home_content {
    padding: 100px 0; }
    @media screen and (max-width: 63.9375em) {
      #content .inner-content.home_content, #content #inner-content.home_content {
        padding: 50px 20px 50px; } }

.default_template {
  padding-bottom: 2rem; }
  @media screen and (max-width: 39.9375em) {
    .default_template {
      padding-bottom: 1rem; } }

.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: #D7C2A5;
  color: #fff; }
  [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: #c5a77e;
    color: #fff; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #EFF0F2;
  padding: 100px 0 0;
  position: relative;
  font-family: "proxima-nova", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase; }
  .footer .diamond_white {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 28px 27px 0 27px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -22px;
    top: 0; }
  .footer .footer_top {
    margin-bottom: 85px; }
    .footer .footer_top h2 {
      margin-top: 55px;
      font-size: 48px; }
    .footer .footer_top .enquire_dets {
      line-height: 1.2em;
      max-width: 360px;
      margin-top: 50px;
      margin-bottom: 100px;
      font-size: 14px;
      letter-spacing: 2px;
      font-weight: 600; }
      .footer .footer_top .enquire_dets .ed_row {
        width: 100%;
        float: left;
        margin-bottom: 30px; }
        .footer .footer_top .enquire_dets .ed_row .ed_row_ic {
          width: 25%;
          float: left; }
        .footer .footer_top .enquire_dets .ed_row .ed_row_info {
          width: 75%;
          float: left; }
    .footer .footer_top .footer_top_right {
      padding-left: 20%; }
      .footer .footer_top .footer_top_right .button_grey {
        float: right;
        margin-top: 30px; }
    .footer .footer_top a {
      color: #59626B; }
      .footer .footer_top a:hover {
        color: #59626B; }
  @media screen and (max-width: 63.9375em) {
    .footer {
      padding: 20px 0 0;
      text-align: center; }
      .footer .footer_top {
        margin-bottom: 50px; }
        .footer .footer_top h2 {
          margin-top: 45px;
          text-align: center; }
        .footer .footer_top .enquire_dets {
          margin-top: 20px;
          margin-bottom: 0;
          margin-right: auto;
          margin-left: auto; }
          .footer .footer_top .enquire_dets .ed_row .ed_row_ic {
            margin-bottom: 5px; }
          .footer .footer_top .enquire_dets .ed_row .ed_row_ic, .footer .footer_top .enquire_dets .ed_row .ed_row_info {
            width: 100%; }
        .footer .footer_top .footer_top_right {
          padding-right: 20px;
          padding-left: 20px;
          text-align: center; }
          .footer .footer_top .footer_top_right .button_grey {
            float: none;
            margin-top: 10px; } }
  .footer .footer_menus {
    padding: 4rem 0; }
    .footer .footer_menus h2, .footer .footer_menus h3 {
      font-size: 22px;
      line-height: 1.3em; }
    .footer .footer_menus ul.menu li, .footer .footer_menus ul li {
      display: block;
      width: 100%; }
      .footer .footer_menus ul.menu li.active a, .footer .footer_menus ul li.active a {
        background: none;
        color: #BFBFC1; }
      .footer .footer_menus ul.menu li a, .footer .footer_menus ul li a {
        padding: 0.5rem 0;
        display: block;
        line-height: 1em;
        color: #BFBFC1; }
        .footer .footer_menus ul.menu li a:hover, .footer .footer_menus ul li a:hover {
          color: #59626B; }
    @media screen and (max-width: 63.9375em) {
      .footer .footer_menus {
        text-align: center;
        padding: 2rem 0 0.5rem; }
        .footer .footer_menus .widget {
          margin-bottom: 1.5rem; }
        .footer .footer_menus ul.menu, .footer .footer_menus ul {
          text-align: center; }
          .footer .footer_menus ul.menu li, .footer .footer_menus ul li {
            display: inline-block; }
            .footer .footer_menus ul.menu li a, .footer .footer_menus ul li a {
              display: inline-block;
              width: auto;
              padding-left: 1rem;
              padding-right: 1rem; } }
  .footer .footer_bottom {
    border-top: 1px solid #C1C6CC;
    padding: 1.5rem 0;
    color: #909DA6;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "proxima-nova", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; }
    .footer .footer_bottom ul.menu, .footer .footer_bottom ul {
      display: block;
      width: 100%; }
      .footer .footer_bottom ul.menu li, .footer .footer_bottom ul li {
        display: inline-block; }
        .footer .footer_bottom ul.menu li.active a, .footer .footer_bottom ul li.active a {
          background: none;
          color: #909DA6;
          font-size: 14px;
          font-weight: 500; }
        .footer .footer_bottom ul.menu li a, .footer .footer_bottom ul li a {
          display: inline-block;
          color: #909DA6;
          font-size: 14px;
          font-weight: 500;
          padding: 0.5rem 0; }
          .footer .footer_bottom ul.menu li a:hover, .footer .footer_bottom ul li a:hover {
            color: #acb6bd;
            font-size: 14px;
            font-weight: 500; }
        .footer .footer_bottom ul.menu li:after, .footer .footer_bottom ul li:after {
          content: '|';
          margin: 0px 10px;
          display: inline-block;
          color: #909DA6;
          font-size: 14px;
          font-weight: 500; }
        .footer .footer_bottom ul.menu li:last-child:after, .footer .footer_bottom ul li:last-child:after {
          content: '';
          display: none; }
      @media screen and (max-width: 63.9375em) {
        .footer .footer_bottom ul.menu, .footer .footer_bottom ul {
          text-align: center; } }
    .footer .footer_bottom .copyright {
      text-align: right;
      color: #909DA6;
      font-size: 14px;
      font-weight: 500; }
      .footer .footer_bottom .copyright a {
        color: #909DA6;
        font-size: 14px;
        font-weight: 500; }
        .footer .footer_bottom .copyright a:hover {
          color: #acb6bd;
          font-size: 14px;
          font-weight: 500; }
      @media screen and (max-width: 63.9375em) {
        .footer .footer_bottom .copyright {
          text-align: center; } }
      @media screen and (max-width: 39.9375em) {
        .footer .footer_bottom .copyright span {
          display: block;
          margin-top: 0.5rem; } }

/*********************
SOCIAL SHARE & SOCIAL LINKS
*********************/
.csf_custom_share_container {
  text-align: right;
  margin-top: -5px; }
  .csf_custom_share_container a {
    width: 35px;
    height: 35px;
    margin-left: 10px;
    line-height: 35px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    background-color: #59626B;
    color: #fff;
    font-size: 18px;
    text-align: center; }
    .csf_custom_share_container a:hover {
      background-color: #2b2f33; }

.menu-social-container ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row; }
  .menu-social-container ul li {
    display: block !important;
    width: auto !important;
    flex-grow: 0;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.25s ease 0s;
    -webkit-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s; }
    .menu-social-container ul li a {
      display: inline-block;
      margin-right: 10px;
      background-position: center center;
      background-repeat: no-repeat; }
      .menu-social-container ul li a span {
        display: none; }
      .menu-social-container ul li a:before {
        content: "\f09a";
        font-family: 'Fontawesome';
        font-size: 14px;
        width: 26px;
        height: 26px;
        text-align: center;
        color: #fff;
        line-height: 26px;
        display: inline-block;
        background: #59626B;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-backface-visibility: hidden;
        -moz-transition: all 0.25s ease 0s;
        -webkit-transition: all 0.25s ease 0s;
        transition: all 0.25s ease 0s; }
      .menu-social-container ul li a[href*="http://www.facebook"]:before, .menu-social-container ul li a[href*="www.facebook"]:before, .menu-social-container ul li a[href*="https//www.facebook"]:before {
        content: "\f09a"; }
      .menu-social-container ul li a[href*="http://www.pintrest"]:before, .menu-social-container ul li a[href*="www.pintrest"]:before, .menu-social-container ul li a[href*="https//www.pintrest"]:before, .menu-social-container ul li a[href*="https//au.pintrest"]:before, .menu-social-container ul li a[href*="au.pintrest"]:before, .menu-social-container ul li a[href*="http//au.pintrest"]:before, .menu-social-container ul li a[href*="https://au.pinterest.com"]:before {
        content: "\f231"; }
      .menu-social-container ul li a[href*="http://www.instagram"]:before, .menu-social-container ul li a[href*="www.instagram"]:before, .menu-social-container ul li a[href*="https//www.instagram"]:before, .menu-social-container ul li a[href*="https//instagram"]:before, .menu-social-container ul li a[href*="instagram"]:before, .menu-social-container ul li a[href*="http//au.instagram"]:before {
        content: "\f16d"; }
      .menu-social-container ul li a[href*="http://www.twitter"]:before, .menu-social-container ul li a[href*="www.twitter"]:before, .menu-social-container ul li a[href*="https//www.twitter"]:before, .menu-social-container ul li a[href*="https//twitter"]:before, .menu-social-container ul li a[href*="twitter"]:before, .menu-social-container ul li a[href*="http//au.twitter"]:before {
        content: "\f099"; }
      .menu-social-container ul li a[href*="http://au.linkedin.com"]:before, .menu-social-container ul li a[href*="au.linkedin.com"]:before, .menu-social-container ul li a[href*="https//au.linkedin.com"]:before, .menu-social-container ul li a[href*="https//linkedin"]:before, .menu-social-container ul li a[href*="linkedin"]:before, .menu-social-container ul li a[href*="http//au.linkedin"]:before {
        content: "\f0e1"; }
      .menu-social-container ul li a:hover {
        opacity: 0.8; }
      @media screen and (max-width: 39.9375em) {
        .menu-social-container ul li a {
          width: 42px;
          height: 42px;
          background-size: 42px 42px; } }

/*********************
SEARCH
*********************/
.search_results_page {
  margin-bottom: 40px; }
  .search_results_page .underline_heading {
    margin-bottom: 60px; }
  .search_results_page .members-home-sidebar .members_sidebar_widget:first-child {
    padding-top: 0; }

.search_result {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #59626B; }
  .search_result .callout {
    margin-top: 35px; }
  .search_result .search_result_item {
    padding: 30px 0 35px;
    border-bottom: 1px solid #EFF0F2; }
    .search_result .search_result_item:last-child {
      border-bottom: 0; }
    .search_result .search_result_item h3 {
      margin-bottom: 16px;
      font-weight: 300;
      text-transform: uppercase;
      font-family: "baskerville-urw", "Open Sans", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
      letter-spacing: 2px; }
    .search_result .search_result_item .button, .search_result .search_result_item .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .search_result .search_result_item #cancel-comment-reply-link {
      margin-top: 10px;
      margin-bottom: 0; }

.search_style {
  background-color: rgba(239, 240, 242, 0.96);
  padding: 40px 40px 25px; }
  .search_style .search_input {
    width: 75%;
    float: left; }
    .search_style .search_input input[type='text'] {
      padding: 18px 22px;
      border: 0;
      margin: 0; }
  .search_style .search_button {
    width: 25%;
    float: left; }
    .search_style .search_button .button, .search_style .search_button .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .search_style .search_button #cancel-comment-reply-link {
      width: 100%;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      padding: 18px 25px;
      text-align: center; }
      .search_style .search_button .button i, .search_style .search_button .comments-area ol.commentlist li.comment #cancel-comment-reply-link i, .comments-area ol.commentlist li.comment .search_style .search_button #cancel-comment-reply-link i {
        margin-left: 10px;
        font-size: 22px;
        line-height: 13px; }

.menu_container {
  position: relative;
	margin-top: 17px;
}

.js_searchbox {
  position: absolute;
  right: 0;
  top: 124px;
  width: 500px;
  display: none; }
  .js_searchbox .search_style {
    padding: 25px; }
    .js_searchbox .search_style i {
      display: none; }
    .js_searchbox .search_style .button, .js_searchbox .search_style .comments-area ol.commentlist li.comment #cancel-comment-reply-link, .comments-area ol.commentlist li.comment .js_searchbox .search_style #cancel-comment-reply-link {
      margin-bottom: 0; }

.menu_options {
  margin-bottom: 50px; }
  .menu_options a.button, .menu_options .comments-area ol.commentlist li.comment a#cancel-comment-reply-link, .comments-area ol.commentlist li.comment .menu_options a#cancel-comment-reply-link {
    margin-top: 15px; }

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

/*----------  Instagram Feed Styles  ----------*/
.instagram_feed {
  padding: 3rem 0;
  text-align: center; }
  .instagram_feed h2 {
    margin-bottom: 3rem; }

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

Stylesheet: Retina Screens & Devices Stylesheet

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

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

Stylesheet: Print Stylesheet

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

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
