@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
*********************/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700|Playfair+Display:400i|Raleway:400,700");
.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); */
/**
 * Foundation for Sites by ZURB
 * Version 6.4.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal, .reveal.tiny, .reveal.small, .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pre {
  overflow: auto; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; }

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

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

.row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
    @media print, screen and (min-width: 40em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    @media print, screen and (min-width: 64em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    @media screen and (min-width: 75em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    @media screen and (min-width: 90em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    @media screen and (min-width: 106.25em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
    .row .row.collapse {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-right: auto;
      margin-left: auto; }
  .row:not(.expanded) .row {
    max-width: none; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row.is-collapse-child,
  .row.collapse > .column > .row,
  .row.collapse > .columns > .row {
    margin-right: 0;
    margin-left: 0; }

.column, .columns {
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0; }
  @media print, screen and (min-width: 40em) {
    .column, .columns {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

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

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

.small-1 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

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

.small-2 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

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

.small-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; }

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

.small-4 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

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

.small-5 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

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

.small-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

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

.small-7 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

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

.small-8 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

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

.small-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; }

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

.small-10 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

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

.small-11 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

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

.small-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%; }

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

.small-up-1 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-1 > .column, .small-up-1 > .columns {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

.small-up-2 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-2 > .column, .small-up-2 > .columns {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }

.small-up-3 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-3 > .column, .small-up-3 > .columns {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }

.small-up-4 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-4 > .column, .small-up-4 > .columns {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }

.small-up-5 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-5 > .column, .small-up-5 > .columns {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }

.small-up-6 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-6 > .column, .small-up-6 > .columns {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }

.small-up-7 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-7 > .column, .small-up-7 > .columns {
    -ms-flex: 0 0 14.28571%;
    flex: 0 0 14.28571%;
    max-width: 14.28571%; }

.small-up-8 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-8 > .column, .small-up-8 > .columns {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }

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

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

@media print, screen and (min-width: 40em) {
  .medium-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-1 > .column, .medium-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .medium-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-2 > .column, .medium-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .medium-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-3 > .column, .medium-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .medium-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-4 > .column, .medium-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .medium-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-5 > .column, .medium-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .medium-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-6 > .column, .medium-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .medium-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-7 > .column, .medium-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .medium-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-8 > .column, .medium-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

.row.medium-unstack > .column, .row.medium-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media print, screen and (min-width: 40em) {
    .row.medium-unstack > .column, .row.medium-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media print, screen and (min-width: 40em) {
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }

@media print, screen and (min-width: 64em) {
  .large-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-1 > .column, .large-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .large-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-2 > .column, .large-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .large-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-3 > .column, .large-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .large-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-4 > .column, .large-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .large-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-5 > .column, .large-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .large-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-6 > .column, .large-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .large-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-7 > .column, .large-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .large-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-8 > .column, .large-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media print, screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

.row.large-unstack > .column, .row.large-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media print, screen and (min-width: 64em) {
    .row.large-unstack > .column, .row.large-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media print, screen and (min-width: 64em) {
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }

@media screen and (min-width: 75em) {
  .xlarge-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .xlarge-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .xlarge-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .xlarge-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .xlarge-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .xlarge-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .xlarge-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .xlarge-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media screen and (min-width: 75em) and (min-width: 75em) {
  .xlarge-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

.row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media screen and (min-width: 75em) {
    .row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media screen and (min-width: 75em) {
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }

@media screen and (min-width: 90em) {
  .xxlarge-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .xxlarge-offset-0 {
    margin-left: 0%; }
  .xxlarge-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .xxlarge-offset-1 {
    margin-left: 8.33333%; }
  .xxlarge-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .xxlarge-offset-2 {
    margin-left: 16.66667%; }
  .xxlarge-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .xxlarge-offset-3 {
    margin-left: 25%; }
  .xxlarge-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .xxlarge-offset-4 {
    margin-left: 33.33333%; }
  .xxlarge-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .xxlarge-offset-5 {
    margin-left: 41.66667%; }
  .xxlarge-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .xxlarge-offset-6 {
    margin-left: 50%; }
  .xxlarge-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .xxlarge-offset-7 {
    margin-left: 58.33333%; }
  .xxlarge-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .xxlarge-offset-8 {
    margin-left: 66.66667%; }
  .xxlarge-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .xxlarge-offset-9 {
    margin-left: 75%; }
  .xxlarge-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xxlarge-offset-10 {
    margin-left: 83.33333%; }
  .xxlarge-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .xxlarge-offset-11 {
    margin-left: 91.66667%; }
  .xxlarge-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .xxlarge-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .xxlarge-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .xxlarge-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .xxlarge-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .xxlarge-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .xxlarge-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .xxlarge-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media screen and (min-width: 90em) and (min-width: 90em) {
  .xxlarge-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

.row.xxlarge-unstack > .column, .row.xxlarge-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media screen and (min-width: 90em) {
    .row.xxlarge-unstack > .column, .row.xxlarge-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media screen and (min-width: 90em) {
  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }

@media screen and (min-width: 106.25em) {
  .xxxlarge-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .xxxlarge-offset-0 {
    margin-left: 0%; }
  .xxxlarge-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .xxxlarge-offset-1 {
    margin-left: 8.33333%; }
  .xxxlarge-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .xxxlarge-offset-2 {
    margin-left: 16.66667%; }
  .xxxlarge-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .xxxlarge-offset-3 {
    margin-left: 25%; }
  .xxxlarge-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .xxxlarge-offset-4 {
    margin-left: 33.33333%; }
  .xxxlarge-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .xxxlarge-offset-5 {
    margin-left: 41.66667%; }
  .xxxlarge-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .xxxlarge-offset-6 {
    margin-left: 50%; }
  .xxxlarge-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .xxxlarge-offset-7 {
    margin-left: 58.33333%; }
  .xxxlarge-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .xxxlarge-offset-8 {
    margin-left: 66.66667%; }
  .xxxlarge-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .xxxlarge-offset-9 {
    margin-left: 75%; }
  .xxxlarge-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xxxlarge-offset-10 {
    margin-left: 83.33333%; }
  .xxxlarge-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .xxxlarge-offset-11 {
    margin-left: 91.66667%; }
  .xxxlarge-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-1 > .column, .xxxlarge-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .xxxlarge-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-2 > .column, .xxxlarge-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .xxxlarge-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-3 > .column, .xxxlarge-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .xxxlarge-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-4 > .column, .xxxlarge-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .xxxlarge-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-5 > .column, .xxxlarge-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .xxxlarge-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-6 > .column, .xxxlarge-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .xxxlarge-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-7 > .column, .xxxlarge-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .xxxlarge-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxxlarge-up-8 > .column, .xxxlarge-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media screen and (min-width: 106.25em) and (min-width: 106.25em) {
  .xxxlarge-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

.row.xxxlarge-unstack > .column, .row.xxxlarge-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media screen and (min-width: 106.25em) {
    .row.xxxlarge-unstack > .column, .row.xxxlarge-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media screen and (min-width: 106.25em) {
  .xxxlarge-collapse > .column, .xxxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .xxxlarge-uncollapse > .column, .xxxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; } }

.shrink {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%; }

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

.align-right {
  -ms-flex-pack: end;
  justify-content: flex-end; }

.align-center {
  -ms-flex-pack: center;
  justify-content: center; }

.align-justify {
  -ms-flex-pack: justify;
  justify-content: space-between; }

.align-spaced {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.align-right.vertical.menu > li > a {
  -ms-flex-pack: end;
  justify-content: flex-end; }

.align-center.vertical.menu > li > a {
  -ms-flex-pack: center;
  justify-content: center; }

.align-top {
  -ms-flex-align: start;
  align-items: flex-start; }

.align-self-top {
  -ms-flex-item-align: start;
  align-self: flex-start; }

.align-bottom {
  -ms-flex-align: end;
  align-items: flex-end; }

.align-self-bottom {
  -ms-flex-item-align: end;
  align-self: flex-end; }

.align-middle {
  -ms-flex-align: center;
  align-items: center; }

.align-self-middle {
  -ms-flex-item-align: center;
  align-self: center; }

.align-stretch {
  -ms-flex-align: stretch;
  align-items: stretch; }

.align-self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch; }

.align-center-middle {
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center; }

.small-order-1 {
  -ms-flex-order: 1;
  order: 1; }

.small-order-2 {
  -ms-flex-order: 2;
  order: 2; }

.small-order-3 {
  -ms-flex-order: 3;
  order: 3; }

.small-order-4 {
  -ms-flex-order: 4;
  order: 4; }

.small-order-5 {
  -ms-flex-order: 5;
  order: 5; }

.small-order-6 {
  -ms-flex-order: 6;
  order: 6; }

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .medium-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .medium-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .medium-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .medium-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .medium-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .large-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .large-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .large-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .large-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .large-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

@media screen and (min-width: 75em) {
  .xlarge-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .xlarge-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .xlarge-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .xlarge-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .xlarge-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .xlarge-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

@media screen and (min-width: 90em) {
  .xxlarge-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .xxlarge-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .xxlarge-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .xxlarge-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .xxlarge-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .xxlarge-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

@media screen and (min-width: 106.25em) {
  .xxxlarge-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .xxxlarge-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .xxxlarge-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .xxxlarge-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .xxxlarge-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .xxxlarge-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

.flex-container {
  display: -ms-flexbox;
  display: flex; }

.flex-child-auto {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }

.flex-child-grow {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto; }

.flex-child-shrink {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

.flex-dir-row {
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-dir-row-reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.flex-dir-column {
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-dir-column-reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: -ms-flexbox;
    display: flex; }
  .medium-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .medium-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .medium-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
  .medium-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .medium-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .medium-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .medium-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: -ms-flexbox;
    display: flex; }
  .large-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .large-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .large-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
  .large-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .large-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .large-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .large-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media screen and (min-width: 75em) {
  .xlarge-flex-container {
    display: -ms-flexbox;
    display: flex; }
  .xlarge-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .xlarge-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .xlarge-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
  .xlarge-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .xlarge-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .xlarge-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .xlarge-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media screen and (min-width: 90em) {
  .xxlarge-flex-container {
    display: -ms-flexbox;
    display: flex; }
  .xxlarge-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .xxlarge-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .xxlarge-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
  .xxlarge-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .xxlarge-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .xxlarge-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .xxlarge-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media screen and (min-width: 106.25em) {
  .xxxlarge-flex-container {
    display: -ms-flexbox;
    display: flex; }
  .xxxlarge-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .xxxlarge-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .xxxlarge-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; }
  .xxxlarge-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .xxxlarge-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .xxxlarge-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .xxxlarge-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

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

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

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

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

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Raleway", Helvetica, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small, .h1 small,
  h2 small, .h2 small,
  h3 small, .h3 small,
  h4 small, .h4 small,
  h5 small, .h5 small,
  h6 small, .h6 small {
    line-height: 0;
    color: #f0f0f0; }

h1, .h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h2, .h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

h3, .h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

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

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

h6, .h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem; }

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

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

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

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

li {
  font-size: inherit; }

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

ol {
  margin-left: 1.25rem; }

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

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

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

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

abbr, abbr[title] {
  border-bottom: 1px dotted #262626;
  cursor: help;
  text-decoration: none; }

figure {
  margin: 0; }

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

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

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

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

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

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

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .print-break-inside {
    page-break-inside: auto; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #d8b45d;
  color: #ffffff; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #cfa338;
    color: #ffffff; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #d8b45d;
    color: #262626; }
    .button.primary:hover, .button.primary:focus {
      background-color: #c79b30;
      color: #262626; }
  .button.secondary {
    background-color: #141314;
    color: #ffffff; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #100f10;
      color: #ffffff; }
  .button.success {
    background-color: #3adb76;
    color: #262626; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #262626; }
  .button.warning {
    background-color: #ffae00;
    color: #262626; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #262626; }
  .button.alert {
    background-color: #cc4b37;
    color: #ffffff; }
    .button.alert:hover, .button.alert:focus {
      background-color: #a53b2a;
      color: #ffffff; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
      background-color: #d8b45d;
      color: #ffffff; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #d8b45d;
        color: #262626; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #141314;
        color: #ffffff; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #262626; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #262626; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cc4b37;
        color: #ffffff; }
  .button.hollow {
    border: 1px solid #d8b45d;
    color: #d8b45d; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #7d611e;
      color: #7d611e; }
      .button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
        border: 1px solid #d8b45d;
        color: #d8b45d; }
    .button.hollow.primary {
      border: 1px solid #d8b45d;
      color: #d8b45d; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #7d611e;
        color: #7d611e; }
        .button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
          border: 1px solid #d8b45d;
          color: #d8b45d; }
    .button.hollow.secondary {
      border: 1px solid #141314;
      color: #141314; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #0a0a0a;
        color: #0a0a0a; }
        .button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
          border: 1px solid #141314;
          color: #141314; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
        .button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
          border: 1px solid #3adb76;
          color: #3adb76; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
        .button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
          border: 1px solid #ffae00;
          color: #ffae00; }
    .button.hollow.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #67251a;
        color: #67251a; }
        .button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
          border: 1px solid #cc4b37;
          color: #cc4b37; }
  .button.clear {
    border: 1px solid #d8b45d;
    color: #d8b45d; }
    .button.clear, .button.clear:hover, .button.clear:focus {
      background-color: transparent; }
    .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
      background-color: transparent; }
    .button.clear:hover, .button.clear:focus {
      border-color: #7d611e;
      color: #7d611e; }
      .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
        border: 1px solid #d8b45d;
        color: #d8b45d; }
    .button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
      border-color: transparent; }
    .button.clear.primary {
      border: 1px solid #d8b45d;
      color: #d8b45d; }
      .button.clear.primary:hover, .button.clear.primary:focus {
        border-color: #7d611e;
        color: #7d611e; }
        .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
          border: 1px solid #d8b45d;
          color: #d8b45d; }
      .button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
        border-color: transparent; }
    .button.clear.secondary {
      border: 1px solid #141314;
      color: #141314; }
      .button.clear.secondary:hover, .button.clear.secondary:focus {
        border-color: #0a0a0a;
        color: #0a0a0a; }
        .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
          border: 1px solid #141314;
          color: #141314; }
      .button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
        border-color: transparent; }
    .button.clear.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.clear.success:hover, .button.clear.success:focus {
        border-color: #157539;
        color: #157539; }
        .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
          border: 1px solid #3adb76;
          color: #3adb76; }
      .button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
        border-color: transparent; }
    .button.clear.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.clear.warning:hover, .button.clear.warning:focus {
        border-color: #805700;
        color: #805700; }
        .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
          border: 1px solid #ffae00;
          color: #ffae00; }
      .button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
        border-color: transparent; }
    .button.clear.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.clear.alert:hover, .button.clear.alert:focus {
        border-color: #67251a;
        color: #67251a; }
        .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
          border: 1px solid #cc4b37;
          color: #cc4b37; }
      .button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
        border-color: transparent; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #ffffff transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em; }
  .button.dropdown.hollow::after {
    border-top-color: #d8b45d; }
  .button.dropdown.hollow.primary::after {
    border-top-color: #d8b45d; }
  .button.dropdown.hollow.secondary::after {
    border-top-color: #141314; }
  .button.dropdown.hollow.success::after {
    border-top-color: #3adb76; }
  .button.dropdown.hollow.warning::after {
    border-top-color: #ffae00; }
  .button.dropdown.hollow.alert::after {
    border-top-color: #cc4b37; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

a.button:hover, a.button:focus {
  text-decoration: none; }

.accordion {
  margin-left: 0;
  background: #ffffff;
  list-style-type: none; }
  .accordion[disabled] .accordion-title {
    cursor: not-allowed; }

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

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

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

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #f4f4f4;
  border-bottom: 0;
  background-color: #ffffff;
  color: #262626; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid #f4f4f4; }

.accordion-menu li {
  width: 100%; }

.accordion-menu a {
  padding: 0.7rem 1rem; }

.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem; }

.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem; }

.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0; }

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

.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  left: auto;
  right: 1rem; }

.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem; }

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

.is-accordion-submenu-parent {
  position: relative; }

.has-submenu-toggle > a {
  margin-right: 40px; }

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 40px;
  height: 40px; }
  .submenu-toggle::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #d8b45d transparent transparent;
    top: 0;
    bottom: 0;
    margin: auto; }

.submenu-toggle[aria-expanded='true']::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%; }

.submenu-toggle-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0; }

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #d8b45d;
  color: #ffffff; }
  .badge.primary {
    background: #d8b45d;
    color: #262626; }
  .badge.secondary {
    background: #141314;
    color: #ffffff; }
  .badge.success {
    background: #3adb76;
    color: #262626; }
  .badge.warning {
    background: #ffae00;
    color: #262626; }
  .badge.alert {
    background: #cc4b37;
    color: #ffffff; }

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

.button-group {
  margin-bottom: 1rem;
  font-size: 0; }
  .button-group::before, .button-group::after {
    display: table;
    content: ' '; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 0.9rem; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 0.6rem; }
  .button-group.small .button {
    font-size: 0.75rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded {
    margin-right: -1px; }
    .button-group.expanded::before, .button-group.expanded::after {
      display: none; }
    .button-group.expanded .button:first-child:last-child {
      width: 100%; }
    .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
      display: inline-block;
      width: calc(50% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
      display: inline-block;
      width: calc(33.33333% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
      display: inline-block;
      width: calc(25% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
      display: inline-block;
      width: calc(20% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
      display: inline-block;
      width: calc(16.66667% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
        margin-right: -6px; }
  .button-group.primary .button {
    background-color: #d8b45d;
    color: #262626; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #c79b30;
      color: #262626; }
  .button-group.secondary .button {
    background-color: #141314;
    color: #ffffff; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #100f10;
      color: #ffffff; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #262626; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #262626; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #262626; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #262626; }
  .button-group.alert .button {
    background-color: #cc4b37;
    color: #ffffff; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #a53b2a;
      color: #ffffff; }
  .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
    width: 100%; }
    .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
      margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .button-group.stacked-for-small .button {
      width: auto;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      width: auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 39.9375em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }

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

.card {
  margin-bottom: 1rem;
  border: 1px solid #f4f4f4;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  color: #262626; }
  .card > :last-child {
    margin-bottom: 0; }

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

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

.card-image {
  min-height: 1px; }

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

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative; }
  [data-whatinput='mouse'] .menu li {
    outline: 0; }
  .menu a,
  .menu .button {
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: 0.7rem 1rem; }
  .menu input,
  .menu select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu input {
    display: inline-block; }
  .menu li, .menu.horizontal li {
    display: inline-block; }
  .menu.vertical li {
    display: block; }
  .menu.expanded {
    display: table;
    width: 100%; }
    .menu.expanded > li {
      display: table-cell;
      vertical-align: middle; }
  .menu.simple li + li {
    margin-left: 1rem; }
  .menu.simple a {
    padding: 0; }
  @media print, screen and (min-width: 40em) {
    .menu.medium-horizontal li {
      display: inline-block; }
    .menu.medium-vertical li {
      display: block; }
    .menu.medium-expanded {
      display: table;
      width: 100%; }
      .menu.medium-expanded > li {
        display: table-cell;
        vertical-align: middle; }
    .menu.medium-simple {
      display: table;
      width: 100%; }
      .menu.medium-simple > li {
        display: table-cell;
        vertical-align: middle; } }
  @media print, screen and (min-width: 64em) {
    .menu.large-horizontal li {
      display: inline-block; }
    .menu.large-vertical li {
      display: block; }
    .menu.large-expanded {
      display: table;
      width: 100%; }
      .menu.large-expanded > li {
        display: table-cell;
        vertical-align: middle; }
    .menu.large-simple {
      display: table;
      width: 100%; }
      .menu.large-simple > li {
        display: table-cell;
        vertical-align: middle; } }
  @media screen and (min-width: 75em) {
    .menu.xlarge-horizontal li {
      display: inline-block; }
    .menu.xlarge-vertical li {
      display: block; }
    .menu.xlarge-expanded {
      display: table;
      width: 100%; }
      .menu.xlarge-expanded > li {
        display: table-cell;
        vertical-align: middle; }
    .menu.xlarge-simple {
      display: table;
      width: 100%; }
      .menu.xlarge-simple > li {
        display: table-cell;
        vertical-align: middle; } }
  @media screen and (min-width: 90em) {
    .menu.xxlarge-horizontal li {
      display: inline-block; }
    .menu.xxlarge-vertical li {
      display: block; }
    .menu.xxlarge-expanded {
      display: table;
      width: 100%; }
      .menu.xxlarge-expanded > li {
        display: table-cell;
        vertical-align: middle; }
    .menu.xxlarge-simple {
      display: table;
      width: 100%; }
      .menu.xxlarge-simple > li {
        display: table-cell;
        vertical-align: middle; } }
  @media screen and (min-width: 106.25em) {
    .menu.xxxlarge-horizontal li {
      display: inline-block; }
    .menu.xxxlarge-vertical li {
      display: block; }
    .menu.xxxlarge-expanded {
      display: table;
      width: 100%; }
      .menu.xxxlarge-expanded > li {
        display: table-cell;
        vertical-align: middle; }
    .menu.xxxlarge-simple {
      display: table;
      width: 100%; }
      .menu.xxxlarge-simple > li {
        display: table-cell;
        vertical-align: middle; } }
  .menu.nested {
    margin-right: 0;
    margin-left: 1rem; }
  .menu.icons img,
  .menu.icons i,
  .menu.icons svg {
    vertical-align: middle; }
    .menu.icons img + span,
    .menu.icons i + span,
    .menu.icons svg + span {
      vertical-align: middle; }
  .menu.icon-top img,
  .menu.icon-top i,
  .menu.icon-top svg, .menu.icon-right img,
  .menu.icon-right i,
  .menu.icon-right svg, .menu.icon-bottom img,
  .menu.icon-bottom i,
  .menu.icon-bottom svg, .menu.icon-left img,
  .menu.icon-left i,
  .menu.icon-left svg {
    vertical-align: middle; }
    .menu.icon-top img + span,
    .menu.icon-top i + span,
    .menu.icon-top svg + span, .menu.icon-right img + span,
    .menu.icon-right i + span,
    .menu.icon-right svg + span, .menu.icon-bottom img + span,
    .menu.icon-bottom i + span,
    .menu.icon-bottom svg + span, .menu.icon-left img + span,
    .menu.icon-left i + span,
    .menu.icon-left svg + span {
      vertical-align: middle; }
  .menu.icon-left li a img,
  .menu.icon-left li a i,
  .menu.icon-left li a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu.icon-right li a img,
  .menu.icon-right li a i,
  .menu.icon-right li a svg {
    margin-left: 0.25rem;
    display: inline-block; }
  .menu.icon-top li a {
    text-align: center; }
    .menu.icon-top li a img,
    .menu.icon-top li a i,
    .menu.icon-top li a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.icon-bottom li a {
    text-align: center; }
    .menu.icon-bottom li a img,
    .menu.icon-bottom li a i,
    .menu.icon-bottom li a svg {
      display: block;
      margin: 0.25rem auto 0; }
  .menu .is-active > a {
    background: #d8b45d;
    color: #ffffff; }
  .menu .active > a {
    background: #d8b45d;
    color: #ffffff; }
  .menu.align-left {
    text-align: left; }
  .menu.align-right {
    text-align: right; }
    .menu.align-right .submenu li {
      text-align: left; }
    .menu.align-right.vertical .submenu li {
      text-align: right; }
    .menu.align-right .nested {
      margin-right: 1rem;
      margin-left: 0; }
  .menu.align-center {
    text-align: center; }
    .menu.align-center .submenu li {
      text-align: left; }
  .menu .menu-text {
    padding: 0.7rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit; }

.menu-centered > .menu {
  text-align: center; }
  .menu-centered > .menu .submenu li {
    text-align: left; }

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

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

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

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

.drilldown a {
  padding: 0.7rem 1rem;
  background: #ffffff; }

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

.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0; }

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

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

.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  left: auto;
  right: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #d8b45d; }

.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  right: auto;
  left: 1rem;
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #d8b45d transparent transparent; }

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

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

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

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

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

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

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

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

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

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

.dropdown.menu .is-active > a {
  background: transparent;
  color: #d8b45d; }

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

.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #d8b45d;
  color: #ffffff; }
  .label.primary {
    background: #d8b45d;
    color: #262626; }
  .label.secondary {
    background: #141314;
    color: #ffffff; }
  .label.success {
    background: #3adb76;
    color: #262626; }
  .label.warning {
    background: #ffae00;
    color: #262626; }
  .label.alert {
    background: #cc4b37;
    color: #ffffff; }

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

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

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

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

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

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

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

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(-250px); }
  @media print, screen and (min-width: 40em) {
    .position-left {
      width: 250px;
      transform: translateX(-250px); } }
  .off-canvas-content .off-canvas.position-left {
    transform: translateX(-250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content .off-canvas.position-left {
        transform: translateX(-250px); } }
    .off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-left.has-transition-push {
    transform: translateX(250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content.is-open-left.has-transition-push {
        transform: translateX(250px); } }
  .position-left.is-transition-push {
    box-shadow: inset -13px 0 20px -13px rgba(38, 38, 38, 0.25); }

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(250px); }
  @media print, screen and (min-width: 40em) {
    .position-right {
      width: 250px;
      transform: translateX(250px); } }
  .off-canvas-content .off-canvas.position-right {
    transform: translateX(250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content .off-canvas.position-right {
        transform: translateX(250px); } }
    .off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-right.has-transition-push {
    transform: translateX(-250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content.is-open-right.has-transition-push {
        transform: translateX(-250px); } }
  .position-right.is-transition-push {
    box-shadow: inset 13px 0 20px -13px rgba(38, 38, 38, 0.25); }

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px); }
  @media print, screen and (min-width: 40em) {
    .position-top {
      height: 250px;
      transform: translateY(-250px); } }
  .off-canvas-content .off-canvas.position-top {
    transform: translateY(-250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content .off-canvas.position-top {
        transform: translateY(-250px); } }
    .off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-top.has-transition-push {
    transform: translateY(250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content.is-open-top.has-transition-push {
        transform: translateY(250px); } }
  .position-top.is-transition-push {
    box-shadow: inset 0 -13px 20px -13px rgba(38, 38, 38, 0.25); }

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px); }
  @media print, screen and (min-width: 40em) {
    .position-bottom {
      height: 250px;
      transform: translateY(250px); } }
  .off-canvas-content .off-canvas.position-bottom {
    transform: translateY(250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content .off-canvas.position-bottom {
        transform: translateY(250px); } }
    .off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-bottom.has-transition-push {
    transform: translateY(-250px); }
    @media print, screen and (min-width: 40em) {
      .off-canvas-content.is-open-bottom.has-transition-push {
        transform: translateY(-250px); } }
  .position-bottom.is-transition-push {
    box-shadow: inset 0 13px 20px -13px rgba(38, 38, 38, 0.25); }

.off-canvas-content {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden; }
  .off-canvas-content.has-transition-push {
    transform: translate(0, 0); }
  .off-canvas-content .off-canvas.is-open {
    transform: translate(0, 0); }

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

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

@media screen and (min-width: 75em) {
  .position-left.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-left.reveal-for-xlarge .close-button {
      display: none; }
    .off-canvas-content .position-left.reveal-for-xlarge {
      transform: none; }
    .off-canvas-content.has-reveal-left {
      margin-left: 250px; }
    .position-left.reveal-for-xlarge ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-right.reveal-for-xlarge .close-button {
      display: none; }
    .off-canvas-content .position-right.reveal-for-xlarge {
      transform: none; }
    .off-canvas-content.has-reveal-right {
      margin-right: 250px; }
    .position-right.reveal-for-xlarge ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-top.reveal-for-xlarge .close-button {
      display: none; }
    .off-canvas-content .position-top.reveal-for-xlarge {
      transform: none; }
    .off-canvas-content.has-reveal-top {
      margin-top: 250px; }
    .position-top.reveal-for-xlarge ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-xlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-bottom.reveal-for-xlarge .close-button {
      display: none; }
    .off-canvas-content .position-bottom.reveal-for-xlarge {
      transform: none; }
    .off-canvas-content.has-reveal-bottom {
      margin-bottom: 250px; }
    .position-bottom.reveal-for-xlarge ~ .off-canvas-content {
      margin-bottom: 250px; } }

@media screen and (min-width: 90em) {
  .position-left.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-left.reveal-for-xxlarge .close-button {
      display: none; }
    .off-canvas-content .position-left.reveal-for-xxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-left {
      margin-left: 250px; }
    .position-left.reveal-for-xxlarge ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-right.reveal-for-xxlarge .close-button {
      display: none; }
    .off-canvas-content .position-right.reveal-for-xxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-right {
      margin-right: 250px; }
    .position-right.reveal-for-xxlarge ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-top.reveal-for-xxlarge .close-button {
      display: none; }
    .off-canvas-content .position-top.reveal-for-xxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-top {
      margin-top: 250px; }
    .position-top.reveal-for-xxlarge ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-xxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-bottom.reveal-for-xxlarge .close-button {
      display: none; }
    .off-canvas-content .position-bottom.reveal-for-xxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-bottom {
      margin-bottom: 250px; }
    .position-bottom.reveal-for-xxlarge ~ .off-canvas-content {
      margin-bottom: 250px; } }

@media screen and (min-width: 106.25em) {
  .position-left.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-left.reveal-for-xxxlarge .close-button {
      display: none; }
    .off-canvas-content .position-left.reveal-for-xxxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-left {
      margin-left: 250px; }
    .position-left.reveal-for-xxxlarge ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-right.reveal-for-xxxlarge .close-button {
      display: none; }
    .off-canvas-content .position-right.reveal-for-xxxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-right {
      margin-right: 250px; }
    .position-right.reveal-for-xxxlarge ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-top.reveal-for-xxxlarge .close-button {
      display: none; }
    .off-canvas-content .position-top.reveal-for-xxxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-top {
      margin-top: 250px; }
    .position-top.reveal-for-xxxlarge ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-xxxlarge {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-bottom.reveal-for-xxxlarge .close-button {
      display: none; }
    .off-canvas-content .position-bottom.reveal-for-xxxlarge {
      transform: none; }
    .off-canvas-content.has-reveal-bottom {
      margin-bottom: 250px; }
    .position-bottom.reveal-for-xxxlarge ~ .off-canvas-content {
      margin-bottom: 250px; } }

@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit; }
    .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-medium .close-button {
      display: none; } }

@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit; }
    .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-large .close-button {
      display: none; } }

@media screen and (min-width: 75em) {
  .off-canvas.in-canvas-for-xlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit; }
    .off-canvas.in-canvas-for-xlarge.position-left, .off-canvas.in-canvas-for-xlarge.position-right, .off-canvas.in-canvas-for-xlarge.position-top, .off-canvas.in-canvas-for-xlarge.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-xlarge .close-button {
      display: none; } }

@media screen and (min-width: 90em) {
  .off-canvas.in-canvas-for-xxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit; }
    .off-canvas.in-canvas-for-xxlarge.position-left, .off-canvas.in-canvas-for-xxlarge.position-right, .off-canvas.in-canvas-for-xxlarge.position-top, .off-canvas.in-canvas-for-xxlarge.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-xxlarge .close-button {
      display: none; } }

@media screen and (min-width: 106.25em) {
  .off-canvas.in-canvas-for-xxxlarge {
    visibility: visible;
    height: auto;
    position: static;
    background: inherit;
    width: inherit;
    overflow: inherit;
    transition: inherit; }
    .off-canvas.in-canvas-for-xxxlarge.position-left, .off-canvas.in-canvas-for-xxxlarge.position-right, .off-canvas.in-canvas-for-xxxlarge.position-top, .off-canvas.in-canvas-for-xxxlarge.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-xxxlarge .close-button {
      display: none; } }

.orbit {
  position: relative; }

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

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

.orbit-figure {
  margin: 0; }

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

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

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

.orbit-previous {
  left: 0; }

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

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

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

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

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

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #f0f0f0; }
  .progress.primary .progress-meter {
    background-color: #d8b45d; }
  .progress.secondary .progress-meter {
    background-color: #141314; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #cc4b37; }

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

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

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

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

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

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

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

.sticky-container {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs.primary {
  background: #d8b45d; }
  .tabs.primary > li > a {
    color: #262626; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #d5ae51; }

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

.tabs-content {
  border: 1px solid #f4f4f4;
  border-top: 0;
  background: #ffffff;
  color: #262626;
  transition: all 0.5s ease; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0; }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
  clip-path: none; }

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

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

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

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

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

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

.clearfix::after {
  clear: both; }

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

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
/***************************
CUSTOM STYLE BY DAILY PRESS
****************************/
body {
  font-size: 16px; }

.full-width {
  margin-left: 0;
  margin-right: 0;
  max-width: none; }

.nowrap {
  white-space: nowrap; }

.no-padding {
  padding: 0; }

.hesperiden.tparrows:before {
  color: #d8b45d !important; }

.centered {
  text-align: center; }

.grey-background {
  width: 100%;
  background-color: #f4f4f4; }

.event-divider:before {
  content: '';
  width: 70%;
  height: 1px;
  background-color: #262626;
  display: block;
  margin: 10px auto 50px; }
  @media print, screen and (min-width: 40em) {
    .event-divider:before {
      width: 400px; } }

.hesperiden.tparrows, .hesperiden.tparrows:before {
  display: none; }
  @media print, screen and (min-width: 64em) {
    .hesperiden.tparrows, .hesperiden.tparrows:before {
      display: block; } }

.publication {
  text-align: center; }
  @media print, screen and (min-width: 64em) {
    .publication .publication-img {
      width: 70%; } }

/** Revolution Slider Customisation **/
#rev_slider_1_1_wrapper .tp-leftarrow, #rev_slider_1_1_wrapper .tp-rightarrow {
  top: 85% !important; }
  @media print, screen and (min-width: 64em) {
    #rev_slider_1_1_wrapper .tp-leftarrow, #rev_slider_1_1_wrapper .tp-rightarrow {
      top: 50% !important; } }

.slider-heading {
  text-align: center !important;
  overflow: visible; }
  .slider-heading h1 {
    font-family: "Raleway", Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.2 !important;
    font-size: 28px !important;
    text-shadow: 1px 1px 2px #262626;
    letter-spacing: 2px;
    margin: 0 auto;
    white-space: normal !important; }
    @media print, screen and (min-width: 40em) {
      .slider-heading h1 {
        font-size: 32px !important; } }
    @media print, screen and (min-width: 64em) {
      .slider-heading h1 {
        font-size: 45px !important;
        white-space: pre !important; } }
    @media screen and (min-width: 75em) {
      .slider-heading h1 {
        font-size: 56px !important; } }
  .slider-heading h4 > span {
    word-wrap: break-word !important;
    position: relative;
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    font-style: italic;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #262626;
    z-index: 1;
    white-space: normal !important;
    font-size: 16px !important;
    line-height: 1.3 !important; }
    @media print, screen and (min-width: 40em) {
      .slider-heading h4 > span {
        font-size: 24px !important; } }
    @media print, screen and (min-width: 64em) {
      .slider-heading h4 > span {
        font-size: 26px !important;
        white-space: pre !important; } }
    @media print, screen and (min-width: 64em) {
      .slider-heading h4 > span {
        font-size: 28px !important; } }
  .slider-heading h4:before, .slider-heading h4:after {
    content: none; }
  @media print, screen and (min-width: 64em) {
    .slider-heading h4:before, .slider-heading h4:after {
      position: absolute;
      top: 51%;
      overflow: hidden;
      width: 8%;
      height: 1px;
      content: '\a0' !important;
      color: #d8b45d;
      background-color: #d8b45d; } }
  @media print, screen and (min-width: 64em) {
    .slider-heading h4:before {
      margin-left: -15%;
      text-align: right; } }
  @media print, screen and (min-width: 64em) {
    .slider-heading h4:after {
      border-top: none;
      margin-left: 6%; } }
  .slider-heading a.button {
    font-size: 12px !important;
    padding: 10px !important;
    line-height: 1; }
    @media print, screen and (min-width: 40em) {
      .slider-heading a.button {
        font-size: 14px !important;
        padding: 0.9em 1.75em 0.8em 1.75em !important; } }
    @media print, screen and (min-width: 64em) {
      .slider-heading a.button {
        font-size: 16px !important; } }

/** Gallery Plugin **/
#html5-watermark {
  display: none;
  visibility: hidden; }

.wonderplugin-gridgallery-item-container + a {
  display: none; }

.wonderplugingridgallery .wonderplugin-gridgallery-pagination {
  text-align: right !important; }
  .wonderplugingridgallery .wonderplugin-gridgallery-pagination .wonderplugin-gridgallery-pagination-btn {
    margin: 0 0.15em;
    padding: 0.5em 0.75em;
    border: none;
    border-radius: 0;
    font-family: "Raleway", sans-serif;
    background: transparent !important;
    text-shadow: none;
    font-size: 90%;
    font-weight: bold; }
  .wonderplugingridgallery .wonderplugin-gridgallery-pagination .wonderplugin-gridgallery-pagination-btn-selected {
    background: #d8b45d !important; }
  .wonderplugingridgallery .wonderplugin-gridgallery-pagination .wonderplugin-gridgallery-pagination-btn:hover {
    background: #f4f4f4 !important;
    cursor: pointer; }

/** Tribe Events **/
.tribe-events-ical, .tribe-bar-disabled {
  display: none !important; }

#tribe-mobile-container {
  padding-top: 1em; }
  @media print, screen and (min-width: 64em) {
    #tribe-mobile-container {
      padding-top: 2em; } }

@media screen and (min-width: 75em) {
  #tribe-events-content-wrapper {
    padding-top: 2em; } }

#tribe-mobile-container .type-tribe_events ~ .type-tribe_events {
  border-top: none;
  padding-top: 2em !important; }

#tribe-events-footer .tribe-events-sub-nav {
  margin-top: 2em !important; }

#tribe-events-header .tribe-events-sub-nav {
  display: none; }

.tribe-events-sub-nav li {
  padding: 0.5em 0; }

.tribe-events-tooltip {
  display: none !important; }

#tribe-events-content .event-description {
  padding-top: 2em; }

.excerpt-read-more {
  visibility: hidden; }

.excerpt-read-more:before {
  visibility: visible;
  content: "...";
  font-weight: 400; }

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

a.button, .tribe-events-sub-nav a {
  font-size: 16px;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
  background-color: #d8b45d;
  padding: 0.9em 1.75em;
  color: #262626;
  text-transform: uppercase; }

.tribe-events-sub-nav li a {
  background-color: #262626;
  color: #ffffff; }

.tribe-events-read-more {
  font-size: 90%; }

.tribe-events-month-event-title a {
  font-weight: normal; }

.tribe-events-month-event-title a:hover {
  color: #262626; }

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

h1 {
  text-transform: uppercase; }

h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 150%;
  color: #262626;
  border-bottom: none; }
  @media screen and (min-width: 75em) {
    h2 {
      font-size: 175%; } }
  h2 .underline {
    padding-top: 5px;
    border-bottom: 1px solid #262626; }

h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 115%;
  color: #262626; }

h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  font-weight: bold;
  position: relative;
  overflow: hidden; }

h4:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-left: -999em;
  height: 2px;
  border-top: 1px solid #f4f4f4;
  left: auto;
  width: 999em;
  margin: 0 0 0 1em; }

h5 {
  font-family: "Playfair", serif; }

h6 {
  font-family: "Raleway", sans-serif;
  font-size: 115%;
  font-weight: bold; }

p {
  font-size: 90%; }
  @media print, screen and (min-width: 64em) {
    p {
      font-size: 100%; } }

.article-header .byline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 110%;
  color: #262626; }

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

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

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

#top-bar-menu .menu-container .menu.dropdown > li > a {
  font-size: 90%;
  font-weight: 700; }

/*********************
POSTS & CONTENT STYLES
*********************/
#content #inner-content {
  padding: 18px 0;
  background-color: #ffffff;
  padding: 1rem 0rem; }

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

.byline {
  color: #999; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Stylesheet: Retina Screens & Devices Stylesheet

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

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

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

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

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

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

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

*/ }

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

Stylesheet: Print Stylesheet

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

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

.header .above-topbar {
  padding: 0.75em 0;
  background-color: #262626; }
  @media screen and (min-width: 90em) {
    .header .above-topbar {
      padding: 1.25em 0; } }
  .header .above-topbar .top-header-wrapper {
    margin: 0 auto;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end; }
    @media screen and (min-width: 75em) {
      .header .above-topbar .top-header-wrapper {
        max-width: 1100px; } }
    @media screen and (min-width: 90em) {
      .header .above-topbar .top-header-wrapper {
        max-width: 1300px; } }
    @media screen and (min-width: 106.25em) {
      .header .above-topbar .top-header-wrapper {
        max-width: 1550px; } }
  .header .above-topbar .social {
    padding-right: 0; }
  .header .above-topbar .social .header-icons {
    margin: 0;
    text-align: right; }
  .header .above-topbar .social .header-icons li {
    display: inline;
    padding: 0 3px;
    color: #d8b45d; }
    .header .above-topbar .social .header-icons li img {
      max-width: 28px; }
      @media screen and (min-width: 90em) {
        .header .above-topbar .social .header-icons li img {
          max-width: 32px; } }
  .header .above-topbar .header-icons li a:hover {
    cursor: pointer; }
  .header .above-topbar .header-icons > li img {
    width: 34px; }
  .header .above-topbar .venue-select {
    margin: 0;
    list-style-type: none;
    padding-left: 18px;
    width: 200px; }
    .header .above-topbar .venue-select li {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-align: center;
      align-items: center;
      color: #ffffff !important;
      font-size: 85%;
      padding-top: 3px;
      position: relative; }
      .header .above-topbar .venue-select li .venue-icon {
        padding-top: 4px;
        max-width: 12px;
        max-height: 12px; }
      .header .above-topbar .venue-select li ul {
        margin: 0;
        padding: 1em;
        position: absolute;
        top: 100%;
        left: -9999px;
        right: auto;
        list-style-type: none;
        background-color: #262626 !important;
        z-index: 1000;
        min-width: 200px; }
        .header .above-topbar .venue-select li ul li a {
          padding: 0.25em 0.5em;
          color: #ffffff !important;
          white-space: nowrap;
          font-size: 115%;
          font-weight: lighter; }
    .header .above-topbar .venue-select li:hover ul {
      left: -18px; }

#top-bar-menu {
  background: #ffffff;
  padding: 0;
  margin: 0 auto;
  display: none; }
  @media print, screen and (min-width: 64em) {
    #top-bar-menu {
      display: -ms-flexbox;
      display: flex; } }
  @media screen and (min-width: 75em) {
    #top-bar-menu {
      max-width: 1100px; } }
  @media screen and (min-width: 90em) {
    #top-bar-menu {
      max-width: 1300px; } }
  @media screen and (min-width: 106.25em) {
    #top-bar-menu {
      max-width: 1550px; } }
  #top-bar-menu .menu.dropdown {
    background: #ffffff;
    text-transform: uppercase;
    display: block; }
  #top-bar-menu .logo-container {
    text-align: center;
    padding: 1em 0;
    background-color: #262626; }
    @media screen and (min-width: 75em) {
      #top-bar-menu .logo-container {
        text-align: left;
        background-color: transparent; } }
    #top-bar-menu .logo-container .logo {
      width: 225px; }
      @media screen and (min-width: 75em) {
        #top-bar-menu .logo-container .logo {
          width: 175px;
          position: absolute;
          top: 28px;
          z-index: 1000; } }
      @media screen and (min-width: 90em) {
        #top-bar-menu .logo-container .logo {
          width: 200px; } }
  #top-bar-menu .menu-container {
    padding: 0 !important; }
    @media print, screen and (min-width: 40em) {
      #top-bar-menu .menu-container {
        padding-right: 15px;
        padding-left: 15px; } }
    @media screen and (min-width: 75em) {
      #top-bar-menu .menu-container {
        margin-right: 0;
        margin-left: auto; } }
    #top-bar-menu .menu-container .menu.dropdown {
      vertical-align: top;
      text-align: center; }
      #top-bar-menu .menu-container .menu.dropdown > li > a {
        color: #141314;
        line-height: 65px;
        padding-top: 0;
        padding-bottom: 0; }
        @media screen and (min-width: 75em) {
          #top-bar-menu .menu-container .menu.dropdown > li > a {
            line-height: 65px; } }
    #top-bar-menu .menu-container .search-site {
      padding: 1em 2em 0 2em;
      margin-bottom: -1.5em; }
      @media print, screen and (min-width: 64em) {
        #top-bar-menu .menu-container .search-site {
          display: none; } }
      #top-bar-menu .menu-container .search-site input.search-field {
        width: 100%;
        max-width: 256px;
        display: inline-block; }
      #top-bar-menu .menu-container .search-site input.search-submit {
        position: relative;
        background-color: #ffffff;
        height: 30px;
        left: 220px;
        bottom: 50px;
        margin: 0;
        background: url("/content/themes/DailyPress/assets/images/Search-Icon2.png");
        background-repeat: no-repeat;
        background-position: center; }
      #top-bar-menu .menu-container .search-site ::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        color: #999999; }
      #top-bar-menu .menu-container .search-site :-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #999999;
        opacity: 1; }
      #top-bar-menu .menu-container .search-site ::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #999999;
        opacity: 1; }
      #top-bar-menu .menu-container .search-site :-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #999999; }
    #top-bar-menu .menu-container #menu-main-menu.menu.vertical {
      border-top: 1px solid #d8b45d;
      background-color: #ffffff;
      padding: 0.5em 0; }
      #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item {
        display: block;
        padding: 0 1em;
        border-bottom: 1px solid #e7e7e7; }
        @media print, screen and (min-width: 64em) {
          #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item {
            border-bottom: 0;
            display: inline-block;
            padding: 1em 0.75em; } }
        @media screen and (min-width: 75em) {
          #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item {
            padding: 0 0.25em;
            text-align: right; } }
        @media screen and (min-width: 90em) {
          #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item {
            padding: 0 1em; } }
        #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item ul.submenu {
          background-color: #ffffff; }
        #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item a {
          color: #262626;
          font-weight: bold;
          font-size: 16px;
          text-transform: uppercase;
          font-family: "Raleway", sans-serif;
          line-height: 1.6; }
          @media screen and (min-width: 75em) {
            #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item a {
              line-height: 65px; } }
        #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item a:hover {
          color: #d8b45d; }
        #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item ul.is-dropdown-submenu {
          z-index: 10000;
          height: auto;
          background-color: #ffffff; }
          #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item ul.is-dropdown-submenu li {
            text-align: left;
            padding: 0.25em 0;
            border-bottom: 1px solid #f7f7f7; }
            #top-bar-menu .menu-container #menu-main-menu.menu.vertical li.menu-item ul.is-dropdown-submenu li a {
              line-height: 1.5;
              font-size: 90%;
              font-weight: normal; }
      #top-bar-menu .menu-container #menu-main-menu.menu.vertical .submenu > li {
        border-bottom: 1px solid #f7f7f7; }
      @media print, screen and (min-width: 40em) {
        #top-bar-menu .menu-container #menu-main-menu.menu.vertical {
          padding: 0.25em; } }
      @media print, screen and (min-width: 64em) {
        #top-bar-menu .menu-container #menu-main-menu.menu.vertical {
          border-top: none;
          padding-bottom: 0; } }
      @media screen and (min-width: 75em) {
        #top-bar-menu .menu-container #menu-main-menu.menu.vertical {
          text-align: right;
          padding-top: 0;
          height: 65px; } }
    #top-bar-menu .menu-container li.menu-item.active > a {
      background: #ffffff;
      color: #d8b45d !important; }

@media screen and (min-width: 75em) {
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1em; } }

@media screen and (min-width: 75em) {
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: none;
    border: none;
    right: 0; } }

@media screen and (min-width: 75em) {
  #menu-main-menu > li:last-child {
    padding-right: 0 !important; }
    #menu-main-menu > li:last-child a {
      padding-right: 0; } }

#mobile-menu {
  background: #262626;
  color: #141314;
  max-height: 65px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  #mobile-menu.title-bar {
    padding: 0; }
  #mobile-menu .logo-container .logo {
    padding: 0.5em 0;
    max-height: 65px;
    max-width: none; }
  #mobile-menu .hamburger-icon {
    width: 30px;
    height: 16px;
    position: relative;
    display: block;
    float: right;
    margin: 1.45em 0; }
    #mobile-menu .hamburger-icon .line {
      display: block;
      background: #ffffff;
      width: 30px;
      height: 4px;
      position: absolute;
      left: 0;
      border-radius: 2px;
      transition: all 0.4s;
      -moz-transition: all 0.4s;
      -webkit-transition: all 0.4s; }
      #mobile-menu .hamburger-icon .line.line-1 {
        top: 0; }
      #mobile-menu .hamburger-icon .line.line-2 {
        top: 50%; }
      #mobile-menu .hamburger-icon .line.line-3 {
        top: 100%; }
    #mobile-menu .hamburger-icon:hover .line-1, #mobile-menu .hamburger-icon:focus .line-1 {
      transform: translateY(-2px);
      -moz-transform: translateY(-2px);
      -webkit-transform: translateY(-2px); }
    #mobile-menu .hamburger-icon:hover .line-3, #mobile-menu .hamburger-icon:focus .line-3 {
      transform: translateY(2px);
      -moz-transform: translateY(2px);
      -webkit-transform: translateY(2px); }
    #mobile-menu .hamburger-icon.active .line-1 {
      transform: translateY(8px) translateX(0) rotate(45deg);
      -moz-transform: translateY(8px) translateX(0) rotate(45deg);
      -webkit-transform: translateY(8px) translateX(0) rotate(45deg); }
    #mobile-menu .hamburger-icon.active .line-2 {
      opacity: 0; }
    #mobile-menu .hamburger-icon.active .line-3 {
      transform: translateY(-8px) translateX(0) rotate(-45deg);
      -moz-transform: translateY(-8px) translateX(0) rotate(-45deg);
      -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg); }

footer.footer {
  padding: 0;
  margin: 0;
  font-size: 80%;
  text-align: center; }
  @media print, screen and (min-width: 64em) {
    footer.footer {
      text-align: left; }
      footer.footer .copyright-info p {
        text-align: right !important; } }
  footer.footer h2 {
    color: #ffffff;
    font-size: 125%;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: solid 1px #d8b45d; }
  footer.footer h3 {
    font-size: 105%;
    font-weight: bold;
    letter-spacing: 1px; }
    @media print, screen and (min-width: 64em) {
      footer.footer h3 h2 {
        font-size: 135%; }
      footer.footer h3 h3 {
        font-size: 115%; } }
  footer.footer #inner-footer {
    padding: 2.5em 0;
    background-color: #262626; }
    @media print, screen and (min-width: 64em) {
      footer.footer #inner-footer {
        padding: 2.5em 0; } }
    footer.footer #inner-footer p {
      font-size: 14px;
      color: #ffffff; }
    footer.footer #inner-footer #text-2.widget-container {
      padding-top: 13px; }
    footer.footer #inner-footer .footer-wrapper {
      margin: 0 auto; }
      @media screen and (min-width: 75em) {
        footer.footer #inner-footer .footer-wrapper {
          max-width: 1100px; } }
      @media screen and (min-width: 90em) {
        footer.footer #inner-footer .footer-wrapper {
          max-width: 1300px; } }
      @media screen and (min-width: 106.25em) {
        footer.footer #inner-footer .footer-wrapper {
          max-width: 1550px; } }
      footer.footer #inner-footer .footer-wrapper .row {
        max-width: 100%; }
        footer.footer #inner-footer .footer-wrapper .row .columns .youtube-vid {
          padding-top: 16px; }
          footer.footer #inner-footer .footer-wrapper .row .columns .youtube-vid .vid {
            padding-right: 0; }
          footer.footer #inner-footer .footer-wrapper .row .columns .youtube-vid .youtube-desc {
            font-size: 115%;
            padding-top: 1em;
            background-color: #ffffff; }
        footer.footer #inner-footer .footer-wrapper .row .columns #text-2.widget-container {
          padding-top: 10px; }
        footer.footer #inner-footer .footer-wrapper .row .columns .footer-icons {
          margin: 0; }
          footer.footer #inner-footer .footer-wrapper .row .columns .footer-icons li {
            display: inline;
            padding: 0 3px;
            color: #d8b45d; }
            footer.footer #inner-footer .footer-wrapper .row .columns .footer-icons li img {
              width: 36px; }
        footer.footer #inner-footer .footer-wrapper .row .columns .clearfix:after {
          content: "";
          display: table;
          clear: both; }
        footer.footer #inner-footer .footer-wrapper .row .columns #sbx_button {
          padding: 1em 0 3em 0; }
      footer.footer #inner-footer .footer-wrapper .footer-address {
        letter-spacing: 1px; }
        footer.footer #inner-footer .footer-wrapper .footer-address a {
          color: #ffffff; }
  footer.footer .footer-bottom {
    margin: 0 auto; }
    @media screen and (min-width: 75em) {
      footer.footer .footer-bottom {
        max-width: 1100px; } }
    @media screen and (min-width: 90em) {
      footer.footer .footer-bottom {
        max-width: 1300px; } }
    @media screen and (min-width: 106.25em) {
      footer.footer .footer-bottom {
        max-width: 1550px; } }
    footer.footer .footer-bottom .columns {
      padding: 0.25em 1.5em; }
      @media print, screen and (min-width: 40em) {
        footer.footer .footer-bottom .columns {
          text-align: left;
          padding: 0.25em 0.9375rem; } }
      @media print, screen and (min-width: 64em) {
        footer.footer .footer-bottom .columns {
          line-height: 48px;
          padding: 0.25em 0.9375rem; } }
      footer.footer .footer-bottom .columns p {
        line-height: 1.4; }
      footer.footer .footer-bottom .columns a {
        color: #262626;
        position: relative;
        font-weight: normal; }
      footer.footer .footer-bottom .columns .active > a {
        background-color: transparent;
        color: #d8b45d; }
      footer.footer .footer-bottom .columns a:hover {
        color: #d8b45d; }
      footer.footer .footer-bottom .columns #menu-footer.menu li {
        padding: 1.5px 0;
        display: block !important; }
        footer.footer .footer-bottom .columns #menu-footer.menu li a {
          padding: 0.25em 0; }
    footer.footer .footer-bottom .columns > .venues-footer {
      margin: 0;
      list-style-type: none; }
      footer.footer .footer-bottom .columns > .venues-footer li {
        display: block;
        padding: 1.5px 0; }
    footer.footer .footer-bottom .columns.copyright-info {
      padding-top: 2em !important; }
      @media print, screen and (min-width: 64em) {
        footer.footer .footer-bottom .columns.copyright-info {
          padding-top: 1em !important; } }

#home #rev_slider_1_1_wrapper .tp-leftarrow, #home #rev_slider_1_1_wrapper .tp-rightarrow {
  top: 85% !important; }
  @media print, screen and (min-width: 64em) {
    #home #rev_slider_1_1_wrapper .tp-leftarrow, #home #rev_slider_1_1_wrapper .tp-rightarrow {
      top: 50% !important; } }

#home .home-slider {
  border-bottom: 6px solid #d8b45d;
  position: relative; }
  #home .home-slider .slider-heading {
    text-align: center !important;
    overflow: visible; }
    #home .home-slider .slider-heading h1 {
      font-family: "Raleway", Helvetica, sans-serif;
      font-weight: 700;
      line-height: 1.1;
      font-size: 18px !important;
      text-shadow: 1px 1px 2px #262626;
      letter-spacing: 2px;
      margin: 0 auto;
      word-wrap: break-word; }
      @media print, screen and (min-width: 40em) {
        #home .home-slider .slider-heading h1 {
          font-size: 32px !important; } }
      @media print, screen and (min-width: 64em) {
        #home .home-slider .slider-heading h1 {
          font-size: 45px !important; } }
      @media screen and (min-width: 75em) {
        #home .home-slider .slider-heading h1 {
          font-size: 55px !important; } }
    #home .home-slider .slider-heading h4 {
      overflow: visible; }
    #home .home-slider .slider-heading h4 > span {
      word-wrap: break-word !important;
      position: relative;
      font-family: 'Playfair Display', serif;
      font-weight: normal;
      font-style: italic;
      line-height: 1.3 !important;
      letter-spacing: 1px;
      font-size: 16px !important;
      text-shadow: 1px 1px 2px #262626;
      z-index: 1; }
      @media print, screen and (min-width: 40em) {
        #home .home-slider .slider-heading h4 > span {
          font-size: 24px !important; } }
      @media print, screen and (min-width: 64em) {
        #home .home-slider .slider-heading h4 > span {
          font-size: 28px !important; } }
    #home .home-slider .slider-heading h4:before, #home .home-slider .slider-heading h4:after {
      position: absolute;
      top: 51%;
      overflow: hidden;
      width: 8%;
      height: 1px;
      content: '\a0';
      color: #d8b45d;
      background-color: #d8b45d; }
    #home .home-slider .slider-heading h4:before {
      margin-left: -15%;
      text-align: right; }
    #home .home-slider .slider-heading h4:after {
      border-top: none;
      margin-left: 6%; }
    #home .home-slider .slider-heading a.button {
      font-size: 14px !important;
      padding: 10px !important;
      line-height: 1; }
      @media print, screen and (min-width: 40em) {
        #home .home-slider .slider-heading a.button {
          font-size: 14px !important;
          padding: 0.9em 1.75em 0.8em 1.75em !important; } }
      @media print, screen and (min-width: 64em) {
        #home .home-slider .slider-heading a.button {
          font-size: 16px !important; } }

#home .small-slider .slide {
  background-size: cover;
  position: relative;
  width: 320px;
  height: 160px; }
  @media screen and (min-width: 48em) {
    #home .small-slider .slide {
      height: 200px; } }
  @media print, screen and (min-width: 64em) {
    #home .small-slider .slide {
      height: 200px; } }
  @media screen and (min-width: 106.25em) {
    #home .small-slider .slide {
      height: 230px; } }
  @media screen and (min-width: 125em) {
    #home .small-slider .slide {
      width: 500px;
      height: 300px; } }
  #home .small-slider .slide .black-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); }

#home .small-slider .slide .heading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: white; }

#home .small-slider .slide .heading h2 {
  color: #ffffff;
  position: absolute;
  bottom: 0.25em;
  left: 1.15em;
  text-shadow: 1px 1px 2px #262626;
  letter-spacing: 1px; }
  @media screen and (min-width: 75em) {
    #home .small-slider .slide .heading h2 {
      font-size: 150%;
      line-height: 1.3; } }
  @media screen and (min-width: 90em) {
    #home .small-slider .slide .heading h2 {
      font-size: 160%; } }
  #home .small-slider .slide .heading h2 .subtitle-slide {
    font-family: 'Playfair Display',serif;
    font-style: italic;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 70%; }
    @media print, screen and (min-width: 64em) {
      #home .small-slider .slide .heading h2 .subtitle-slide {
        font-size: 75%; } }
    @media screen and (min-width: 75em) {
      #home .small-slider .slide .heading h2 .subtitle-slide {
        font-size: 80%; } }
    @media screen and (min-width: 90em) {
      #home .small-slider .slide .heading h2 .subtitle-slide {
        font-size: 90%; } }
    @media screen and (min-width: 106.25em) {
      #home .small-slider .slide .heading h2 .subtitle-slide {
        font-size: 95%; } }

#home .small-slider .slick-prev {
  left: 15px;
  height: 100%;
  width: 36px;
  z-index: 1000; }

#home .small-slider .slick-prev:before {
  content: ''; }

#home .small-slider .slick-next {
  right: 15px;
  width: 36px;
  height: 100%;
  z-index: 1001; }

#home .small-slider .slick-next:before {
  content: ''; }

#whats-on .body {
  padding: 1em 0;
  margin: 0 auto; }
  @media screen and (min-width: 75em) {
    #whats-on .body {
      max-width: 1100px;
      padding: 2em 0; } }
  @media screen and (min-width: 90em) {
    #whats-on .body {
      max-width: 1300px;
      padding: 2.5em 0 1em 0; } }
  @media screen and (min-width: 106.25em) {
    #whats-on .body {
      max-width: 1550px; } }
  #whats-on .body .main-content .all-events {
    padding-top: 1.5em; }
    #whats-on .body .main-content .all-events .events-thumbnails {
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -ms-flex-pack: center;
      justify-content: center;
      margin-right: 0;
      margin-left: 0; }
    #whats-on .body .main-content .all-events .tribe-events-event-image {
      display: -ms-flexbox;
      display: flex; }
      @media print, screen and (min-width: 40em) {
        #whats-on .body .main-content .all-events .tribe-events-event-image {
          display: block; } }
      #whats-on .body .main-content .all-events .tribe-events-event-image img {
        margin: 0 auto;
        max-width: 100%; }
    #whats-on .body .main-content .all-events .tribe-events-title {
      padding: 1em 0;
      text-align: center; }
      #whats-on .body .main-content .all-events .tribe-events-title a:hover {
        color: #d8b45d; }
    #whats-on .body .main-content .all-events .tribe-events-single-event-description, #whats-on .body .main-content .all-events .tribe-events-widget-link,
    #whats-on .body .main-content .all-events .tribe-events-duration {
      display: none; }
    #whats-on .body .main-content .all-events .tribe-mini-calendar-event .list-date {
      background: transparent; }

#whats-on .secondary-menu {
  text-align: center;
  background-color: #262626;
  width: 100%;
  border-bottom: 3px solid #d8b45d; }
  #whats-on .secondary-menu #secondary-menu {
    margin: 0 auto;
    padding: 10px 0; }
    @media print, screen and (min-width: 64em) {
      #whats-on .secondary-menu #secondary-menu {
        padding: 0; } }
    @media screen and (min-width: 75em) {
      #whats-on .secondary-menu #secondary-menu {
        max-width: 1100px; } }
    @media screen and (min-width: 90em) {
      #whats-on .secondary-menu #secondary-menu {
        max-width: 1300px; } }
    @media screen and (min-width: 106.25em) {
      #whats-on .secondary-menu #secondary-menu {
        max-width: 1550px; } }
  #whats-on .secondary-menu li {
    display: block;
    padding: 10px; }
    @media print, screen and (min-width: 64em) {
      #whats-on .secondary-menu li {
        display: inline-block;
        padding: 0.75em 1em; } }
    @media screen and (min-width: 90em) {
      #whats-on .secondary-menu li {
        padding: 0.75em 2em; } }
    #whats-on .secondary-menu li a {
      color: #ffffff;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 14px; }
    #whats-on .secondary-menu li a:hover {
      color: #d8b45d; }

#dining-bars .dining-slider {
  max-height: 550px; }

#dining-bars .body {
  padding: 1em 0;
  margin: 0 auto; }
  @media screen and (min-width: 75em) {
    #dining-bars .body {
      max-width: 1100px;
      padding: 2em 0; } }
  @media screen and (min-width: 90em) {
    #dining-bars .body {
      max-width: 1300px;
      padding: 2.5em 0 1em 0; } }
  @media screen and (min-width: 106.25em) {
    #dining-bars .body {
      max-width: 1550px; } }
  #dining-bars .body .main-content .dining-options > .columns.large-4 {
    text-align: center; }
    #dining-bars .body .main-content .dining-options > .columns.large-4 h3 {
      padding: 1em; }

#dining-bars h2.title {
  font-size: 150%;
  color: #262626;
  border-bottom: none; }
  @media screen and (min-width: 75em) {
    #dining-bars h2.title {
      font-size: 175%; } }
  #dining-bars h2.title .underline {
    padding-top: 5px;
    border-bottom: 1px solid #262626; }

#main-template .body {
  padding: 1em 0;
  margin: 0 auto; }
  @media screen and (min-width: 75em) {
    #main-template .body {
      max-width: 1100px;
      padding: 2em 0; } }
  @media screen and (min-width: 90em) {
    #main-template .body {
      max-width: 1300px;
      padding: 2.5em 0 1em 0; } }
  @media screen and (min-width: 106.25em) {
    #main-template .body {
      max-width: 1550px; } }
  #main-template .body .main-sidebar {
    -ms-flex-order: 0;
    order: 0;
    padding-left: 0;
    padding-right: 0; }
    @media print, screen and (min-width: 64em) {
      #main-template .body .main-sidebar {
        -ms-flex-order: 1;
        order: 1;
        padding-right: 0.9375rem; } }
  #main-template .body .main-content {
    padding-top: 1em;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    padding-bottom: 0;
    -ms-flex-order: 1;
    order: 1; }
    @media print, screen and (min-width: 64em) {
      #main-template .body .main-content {
        padding-left: 0.9375rem;
        padding-right: 1.5em;
        -ms-flex-order: 0;
        order: 0; } }
    @media screen and (min-width: 106.25em) {
      #main-template .body .main-content {
        padding-right: 3em; } }
    #main-template .body .main-content .event-list {
      padding-top: 0 !important; }
      #main-template .body .main-content .event-list .type-tribe_events {
        width: 100%; }
        #main-template .body .main-content .event-list .type-tribe_events .single-event {
          padding: 0.5em 0;
          display: -ms-flexbox;
          display: flex;
          display: -webkit-flex;
          -ms-flex-direction: column;
          flex-direction: column; }
          @media print, screen and (min-width: 64em) {
            #main-template .body .main-content .event-list .type-tribe_events .single-event {
              -ms-flex-direction: row;
              flex-direction: row;
              padding: 1.5em 0; } }
          @media print, screen and (min-width: 64em) {
            #main-template .body .main-content .event-list .type-tribe_events .single-event .list-date {
              padding-left: 0; } }
          #main-template .body .main-content .event-list .type-tribe_events .single-event .list-date .tribe-events-event-image {
            padding: 0.5em 0; }
          #main-template .body .main-content .event-list .type-tribe_events .single-event .activity-banner {
            width: 100%;
            padding-bottom: 1em; }
          #main-template .body .main-content .event-list .type-tribe_events .single-event .event-desc .list-dayname, #main-template .body .main-content .event-list .type-tribe_events .single-event .event-desc .tribe-events-duration {
            font-family: 'Playfair Display', serif;
            font-style: italic; }
            @media print, screen and (min-width: 64em) {
              #main-template .body .main-content .event-list .type-tribe_events .single-event .event-desc .list-dayname, #main-template .body .main-content .event-list .type-tribe_events .single-event .event-desc .tribe-events-duration {
                font-size: 115%; } }
          #main-template .body .main-content .event-list .type-tribe_events .single-event .event-desc .timezone {
            display: none; }
          #main-template .body .main-content .event-list .type-tribe_events .single-event .event-desc .event-description {
            padding-top: 1.5em; }
          #main-template .body .main-content .event-list .type-tribe_events .single-event .event-desc .more-info .view-more-icon {
            width: 32px; }
          #main-template .body .main-content .event-list .type-tribe_events .single-event .list-info .list-dayname, #main-template .body .main-content .event-list .type-tribe_events .single-event .list-info .tribe-events-duration {
            font-family: 'Playfair Display', serif;
            font-style: italic; }
            @media print, screen and (min-width: 64em) {
              #main-template .body .main-content .event-list .type-tribe_events .single-event .list-info .list-dayname, #main-template .body .main-content .event-list .type-tribe_events .single-event .list-info .tribe-events-duration {
                font-size: 115%; } }
  #main-template .body h2 {
    margin-bottom: 0.75em;
    position: relative;
    overflow: hidden; }
  #main-template .body h2.horizontal-line:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-left: -999em;
    height: 2px;
    border-top: 1px solid #f4f4f4;
    left: auto;
    width: 999em;
    margin: 0 0 0 1em; }

#main-template .row:not(.expanded) .row {
  margin: 0 auto;
  padding: 1.5em 0; }
  @media screen and (min-width: 75em) {
    #main-template .row:not(.expanded) .row {
      max-width: 1100px;
      padding: 2em 0; } }
  @media screen and (min-width: 90em) {
    #main-template .row:not(.expanded) .row {
      max-width: 1300px;
      padding: 2.5em 0; } }
  @media screen and (min-width: 106.25em) {
    #main-template .row:not(.expanded) .row {
      max-width: 1550px; } }
  #main-template .row:not(.expanded) .row .columns.large-12 {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem; }

#main-template .under-sidebar > div:last-child {
  padding-bottom: 2em; }
  @media screen and (min-width: 75em) {
    #main-template .under-sidebar > div:last-child {
      padding-bottom: 3em; } }
  @media screen and (min-width: 90em) {
    #main-template .under-sidebar > div:last-child {
      padding-bottom: 4em; } }

#main-template .under-sidebar .two-cols .row .columns {
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0.5em; }
  @media print, screen and (min-width: 64em) {
    #main-template .under-sidebar .two-cols .row .columns {
      text-align: left;
      padding-top: 0;
      padding-bottom: 0; } }
  #main-template .under-sidebar .two-cols .row .columns p {
    font-size: 80%; }
    @media print, screen and (min-width: 40em) {
      #main-template .under-sidebar .two-cols .row .columns p {
        font-size: 90%; } }
    @media print, screen and (min-width: 64em) {
      #main-template .under-sidebar .two-cols .row .columns p {
        font-size: 100%; } }

#main-template .no-background {
  width: 100%; }

#main-template .no-padding .row {
  padding-bottom: 0 !important; }

.publications .main-sidebar, .board-of-directors .main-sidebar, .careers .main-sidebar,
.courtesy-bus .main-sidebar, .clubgrants .main-sidebar, .interclubs .main-sidebar,
.youth-clubs .main-sidebar, .star-cash-partners .main-sidebar, .membership-benefits .main-sidebar,
.membership-rewards .main-sidebar, .star-buffet .main-sidebar, .sports-bar .main-sidebar,
.travel-club .main-sidebar, .live-entertainment .main-sidebar, .special-events .main-sidebar,
.weekly-activities .main-sidebar, .members-promotions .main-sidebar {
  display: none; }
  @media print, screen and (min-width: 64em) {
    .publications .main-sidebar, .board-of-directors .main-sidebar, .careers .main-sidebar,
    .courtesy-bus .main-sidebar, .clubgrants .main-sidebar, .interclubs .main-sidebar,
    .youth-clubs .main-sidebar, .star-cash-partners .main-sidebar, .membership-benefits .main-sidebar,
    .membership-rewards .main-sidebar, .star-buffet .main-sidebar, .sports-bar .main-sidebar,
    .travel-club .main-sidebar, .live-entertainment .main-sidebar, .special-events .main-sidebar,
    .weekly-activities .main-sidebar, .members-promotions .main-sidebar {
      display: block; } }

#contact-template .body {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media print, screen and (min-width: 64em) {
    #contact-template .body {
      -ms-flex-direction: row;
      flex-direction: row; } }

#contact-template .map-container .gmap {
  padding: 0; }
  #contact-template .map-container .gmap #contact-map {
    width: 100%;
    height: 250px; }
    @media screen and (min-width: 75em) {
      #contact-template .map-container .gmap #contact-map {
        height: 450px; } }

#contact-template .enquiries-body {
  padding: 1em 0 3em 0;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem; }
  @media print, screen and (min-width: 64em) {
    #contact-template .enquiries-body {
      padding-right: 0.9375rem;
      padding-left: 1.5em; } }
  @media screen and (min-width: 75em) {
    #contact-template .enquiries-body {
      padding: 2em 0 3em 0; } }
  @media screen and (min-width: 90em) {
    #contact-template .enquiries-body {
      padding: 2.5em 0 3em 0; } }
  @media screen and (min-width: 75em) {
    #contact-template .enquiries-body .enquiries {
      padding-left: 1.5em;
      max-width: 825px; } }
  @media screen and (min-width: 90em) {
    #contact-template .enquiries-body .enquiries {
      max-width: 936px; } }
  @media screen and (min-width: 106.25em) {
    #contact-template .enquiries-body .enquiries {
      max-width: 1162px;
      padding-left: 3em; } }
  #contact-template .enquiries-body #responsive-form {
    max-width: 1099px;
    margin: 0 auto;
    width: 100%;
    font-size: 90%; }
    @media print, screen and (min-width: 64em) {
      #contact-template .enquiries-body #responsive-form .column-half {
        width: 50% !important; }
      #contact-template .enquiries-body #responsive-form .column-third {
        width: 33% !important; } }
    #contact-template .enquiries-body #responsive-form .form-row {
      width: 100%; }
    #contact-template .enquiries-body #responsive-form .column-half, #contact-template .enquiries-body #responsive-form .column-full, #contact-template .enquiries-body #responsive-form .column-third {
      float: left;
      position: relative;
      padding: 0.5em;
      width: 100%;
      box-sizing: border-box; }
    #contact-template .enquiries-body #responsive-form .clearfix:after {
      content: "";
      display: table;
      clear: both; }
    #contact-template .enquiries-body #responsive-form input[type=text], #contact-template .enquiries-body #responsive-form input[type=email], #contact-template .enquiries-body #responsive-form input[type=number],
    #contact-template .enquiries-body #responsive-form input[type=tel], #contact-template .enquiries-body #responsive-form select, #contact-template .enquiries-body #responsive-form textarea {
      margin-top: 0.5em;
      background-color: #f4f4f4 !important;
      box-shadow: none; }
    #contact-template .enquiries-body #responsive-form textarea {
      padding: 1em; }
    #contact-template .enquiries-body #responsive-form input[type=submit] {
      border: none;
      box-shadow: none;
      background-color: #d8b45d;
      padding: 10px 15px;
      min-width: 150px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px; }
    #contact-template .enquiries-body #responsive-form input.add-resume {
      margin-top: 0.5em; }
    #contact-template .enquiries-body #responsive-form ::-webkit-input-placeholder {
      /* WebKit, Blink, Edge */
      color: #999999; }
    #contact-template .enquiries-body #responsive-form :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #999999;
      opacity: 1; }
    #contact-template .enquiries-body #responsive-form ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #999999;
      opacity: 1; }
    #contact-template .enquiries-body #responsive-form :-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #999999; }

#contact-template .left-sidebar {
  padding: 1em 0;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  background-color: #262626;
  color: #ffffff; }
  @media print, screen and (min-width: 64em) {
    #contact-template .left-sidebar {
      padding-left: 0.9375rem;
      padding-right: 1.5em; } }
  @media screen and (min-width: 75em) {
    #contact-template .left-sidebar {
      max-width: 28%;
      padding: 2em 0; } }
  @media screen and (min-width: 90em) {
    #contact-template .left-sidebar {
      padding: 2.5em 0 1em 0; } }
  @media screen and (min-width: 106.25em) {
    #contact-template .left-sidebar {
      max-width: 30%; } }
  @media screen and (min-width: 131.25em) {
    #contact-template .left-sidebar {
      max-width: 33%; } }
  @media screen and (min-width: 143.75em) {
    #contact-template .left-sidebar {
      max-width: 34%; } }
  @media screen and (min-width: 156.25em) {
    #contact-template .left-sidebar {
      max-width: 35.5%; } }
  #contact-template .left-sidebar h2, #contact-template .left-sidebar a {
    color: #ffffff; }
  #contact-template .left-sidebar a:hover {
    color: #d8b45d; }
  @media screen and (min-width: 75em) {
    #contact-template .left-sidebar .sidebar-wrapper {
      max-width: 275px;
      margin-left: auto;
      margin-right: 0;
      padding-right: 1.5em; } }
  @media screen and (min-width: 90em) {
    #contact-template .left-sidebar .sidebar-wrapper {
      max-width: 310px; } }
  @media screen and (min-width: 106.25em) {
    #contact-template .left-sidebar .sidebar-wrapper {
      max-width: 387px;
      padding-right: 3em; } }
  #contact-template .left-sidebar .sidebar-wrapper .trading-hours {
    padding-top: 10px;
    border: none;
    font-size: 90%; }
    @media print, screen and (min-width: 64em) {
      #contact-template .left-sidebar .sidebar-wrapper .trading-hours {
        font-size: 100%; } }
    #contact-template .left-sidebar .sidebar-wrapper .trading-hours tbody tr {
      background-color: #262626; }
      #contact-template .left-sidebar .sidebar-wrapper .trading-hours tbody tr td.table-day {
        padding: 0.5em 0.5em 0.5em 0;
        text-transform: uppercase;
        font-weight: bold;
        width: 30%; }
        @media print, screen and (min-width: 64em) {
          #contact-template .left-sidebar .sidebar-wrapper .trading-hours tbody tr td.table-day {
            padding: 0.25em 0.5em 0.25em 0; } }
      #contact-template .left-sidebar .sidebar-wrapper .trading-hours tbody tr td.table-hours {
        padding: 0.5em 0 0.5em 0.5em; }
        @media print, screen and (min-width: 64em) {
          #contact-template .left-sidebar .sidebar-wrapper .trading-hours tbody tr td.table-hours {
            padding: 0.25em 0.5em 0.25em 0; } }

#blog-template .body {
  padding: 1.5em 0;
  margin: 0 auto; }
  @media screen and (min-width: 75em) {
    #blog-template .body {
      max-width: 1100px;
      padding: 2em 0; } }
  @media screen and (min-width: 90em) {
    #blog-template .body {
      max-width: 1300px;
      padding: 2.5em 0 1em 0; } }
  @media screen and (min-width: 106.25em) {
    #blog-template .body {
      max-width: 1550px; } }
  #blog-template .body h2 {
    margin-bottom: 0.75em;
    position: relative;
    overflow: hidden; }
  #blog-template .body h2.horizontal-line:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-left: -999em;
    height: 2px;
    border-top: 1px solid #f4f4f4;
    left: auto;
    width: 999em;
    margin: 0 0 0 1em; }
  #blog-template .body .blog-post {
    padding-top: 1em; }
    #blog-template .body .blog-post h6 {
      font-size: 125%;
      margin-bottom: 0.15em; }
    #blog-template .body .blog-post h5 {
      font-style: italic;
      font-size: 115%; }
    #blog-template .body .blog-post a.excerpt-read-more {
      clear: both;
      display: block;
      content: ""; }
    #blog-template .body .blog-post .post-thumbnail {
      padding-bottom: 1em; }
    #blog-template .body .blog-post .blog-icon {
      padding-top: 0.75em;
      width: 40px; }
  #blog-template .body .blog-content {
    padding-top: 1em;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    padding-bottom: 0;
    -ms-flex-order: 1;
    order: 1; }
    @media print, screen and (min-width: 64em) {
      #blog-template .body .blog-content {
        padding-left: 0.9375rem;
        padding-right: 1.5em;
        -ms-flex-order: 0;
        order: 0; } }
    @media screen and (min-width: 106.25em) {
      #blog-template .body .blog-content {
        padding-right: 3em; } }
  #blog-template .body .community-sidebar {
    -ms-flex-order: 0;
    order: 0;
    padding-left: 0;
    padding-right: 0; }
    @media print, screen and (min-width: 64em) {
      #blog-template .body .community-sidebar {
        -ms-flex-order: 1;
        order: 1;
        padding-right: 0.9375rem; } }
    #blog-template .body .community-sidebar .sidebar-wrapper {
      margin-top: 1em; }
      @media print, screen and (min-width: 64em) {
        #blog-template .body .community-sidebar .sidebar-wrapper {
          margin-top: 2em;
          padding-left: 1.5em;
          border-left: 1px solid #262626; } }
      @media screen and (min-width: 106.25em) {
        #blog-template .body .community-sidebar .sidebar-wrapper {
          padding-left: 3em; } }
      #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-images {
        margin: 0 auto;
        padding-top: 0.5em;
        width: 90%; }
        @media screen and (min-width: 90em) {
          #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-images {
            width: 75%; } }
        #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-images .sidebar-img {
          padding: 0.5em 0; }
      #blog-template .body .community-sidebar .sidebar-wrapper h3 {
        margin-bottom: 0.75em; }
      #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul {
        list-style: none;
        margin: 0;
        -webkit-display: flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-pack: center;
        justify-content: center; }
        @media print, screen and (min-width: 64em) {
          #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul {
            -ms-flex-direction: column;
            flex-direction: column; } }
        #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li {
          margin: 0.25em 0.5em;
          width: 100%; }
          @media print, screen and (min-width: 40em) {
            #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li {
              width: 300px;
              margin: 0.25em auto; } }
          @media print, screen and (min-width: 64em) {
            #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li {
              margin: 0.5em 0;
              min-width: 120px;
              width: auto; } }
          #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li a {
            font-family: "Raleway", sans-serif;
            display: block;
            font-size: 85%;
            font-weight: bold;
            background-color: #d8b45d;
            padding: 7px 12px;
            color: #262626;
            text-transform: uppercase;
            text-align: center; }
            @media print, screen and (min-width: 64em) {
              #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li a {
                text-align: left;
                font-size: 90%; } }
          #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li a.active {
            background-color: #ffffff;
            border: 1px solid #d8b45d; }
          #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li a.active:hover {
            color: #262626; }
          #blog-template .body .community-sidebar .sidebar-wrapper .sidebar-links > ul li a:hover {
            color: #ffffff;
            text-decoration: none; }

#blog-post .blog-top {
  border-bottom: 1px solid #262626; }
  @media screen and (min-width: 75em) {
    #blog-post .blog-top {
      margin-bottom: 36px; } }

#blog-post .body {
  padding: 1em 0;
  margin: 0 auto; }
  @media print, screen and (min-width: 64em) {
    #blog-post .body {
      padding: 2em 0; } }
  @media screen and (min-width: 75em) {
    #blog-post .body {
      max-width: 1100px;
      padding: 3em 0; } }
  @media screen and (min-width: 90em) {
    #blog-post .body {
      max-width: 1300px;
      padding: 4em 0 3em 0; } }
  @media screen and (min-width: 106.25em) {
    #blog-post .body {
      max-width: 1550px; } }
  #blog-post .body .blog-image img {
    display: block; }
    @media screen and (min-width: 30em) {
      #blog-post .body .blog-image img {
        width: 70%;
        margin: 0 auto; } }
    @media print, screen and (min-width: 40em) {
      #blog-post .body .blog-image img {
        width: 50%; } }
    @media print, screen and (min-width: 64em) {
      #blog-post .body .blog-image img {
        width: 100%;
        margin: 0; } }
  #blog-post .body .blog-text {
    padding-top: 1em; }
    @media print, screen and (min-width: 64em) {
      #blog-post .body .blog-text {
        padding-top: 0; } }
    @media screen and (min-width: 75em) {
      #blog-post .body .blog-text {
        padding-left: 2em; } }

#policies-template .body {
  padding: 1em 0;
  margin: 0 auto; }
  @media screen and (min-width: 75em) {
    #policies-template .body {
      max-width: 1100px;
      padding: 2em 0; } }
  @media screen and (min-width: 90em) {
    #policies-template .body {
      max-width: 1300px;
      padding: 2.5em 0 1em 0; } }
  @media screen and (min-width: 106.25em) {
    #policies-template .body {
      max-width: 1550px; } }
  #policies-template .body .dress-regs {
    padding-left: 0; }
  #policies-template .body .main-content {
    padding-top: 1em;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    padding-bottom: 0; }
    @media print, screen and (min-width: 64em) {
      #policies-template .body .main-content {
        padding-left: 0.9375rem;
        padding-right: 1.5em; } }
    @media screen and (min-width: 106.25em) {
      #policies-template .body .main-content {
        padding-right: 3em; } }
  #policies-template .body #policies-notices {
    padding-top: 1em; }
    #policies-template .body #policies-notices .accordion li.accordion-item {
      padding: 0.5em 0;
      margin: 1em 0;
      background-color: #f0f0f0;
      border: none; }
      @media print, screen and (min-width: 64em) {
        #policies-template .body #policies-notices .accordion li.accordion-item {
          padding: 1.15em 1.5em; } }
      #policies-template .body #policies-notices .accordion li.accordion-item a.accordion-title {
        font-size: 100%;
        font-family: "Raleway", sans-serif;
        color: #262626;
        text-transform: uppercase;
        border: none;
        padding: 0.5em;
        background-color: #f0f0f0; }
        @media print, screen and (min-width: 64em) {
          #policies-template .body #policies-notices .accordion li.accordion-item a.accordion-title {
            font-size: 135%; } }
      #policies-template .body #policies-notices .accordion li.accordion-item .accordion-content {
        background-color: #f0f0f0;
        border: none; }
        #policies-template .body #policies-notices .accordion li.accordion-item .accordion-content li {
          font-size: 90%; }
          @media print, screen and (min-width: 64em) {
            #policies-template .body #policies-notices .accordion li.accordion-item .accordion-content li {
              font-size: 100%; } }
      #policies-template .body #policies-notices .accordion li.accordion-item a.accordion-title:before {
        font-size: 145%;
        margin-top: -0.75rem; }
        @media print, screen and (min-width: 64em) {
          #policies-template .body #policies-notices .accordion li.accordion-item a.accordion-title:before {
            font-size: 175%;
            margin-top: -1.25rem; } }

#event-template .tribe-events-single {
  padding-top: 0.5em; }
  @media print, screen and (min-width: 64em) {
    #event-template .tribe-events-single {
      padding-top: 1em; } }
  @media screen and (min-width: 75em) {
    #event-template .tribe-events-single {
      padding-top: 3em; } }

#event-template .recurringinfo {
  display: none; }

#event-template .hero h1 p {
  text-shadow: 1px 1px 2px #000000; }

.hero {
  position: relative;
  width: 100vw;
  height: 250px; }
  @media screen and (min-width: 75em) {
    .hero {
      height: 350px; } }
  @media screen and (min-width: 90em) {
    .hero {
      height: 450px; } }
  .hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    @media screen and (min-width: 75em) {
      .hero .hero-img {
        height: 350px; } }
    @media screen and (min-width: 90em) {
      .hero .hero-img {
        height: 450px; } }
  .hero .hero-text {
    width: 100%;
    position: absolute;
    color: #ffffff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; }
    .hero .hero-text h1 {
      font-size: 200%;
      text-transform: uppercase;
      letter-spacing: 2px; }
      @media screen and (min-width: 75em) {
        .hero .hero-text h1 {
          font-size: 275%; } }
      @media screen and (min-width: 90em) {
        .hero .hero-text h1 {
          font-size: 325%; } }
      .hero .hero-text h1 p {
        margin-bottom: 0;
        line-height: 1; }
    .hero .hero-text .sub-heading {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 115%;
      max-width: 800px;
      margin: 0 auto;
      font-weight: normal; }
      @media screen and (min-width: 75em) {
        .hero .hero-text .sub-heading {
          font-size: 125%;
          letter-spacing: 1px; } }
      @media screen and (min-width: 90em) {
        .hero .hero-text .sub-heading {
          font-size: 145%; } }
      .hero .hero-text .sub-heading p {
        line-height: 1.2; }

.main-sidebar .sidebar-wrapper {
  margin-top: 1em; }
  @media print, screen and (min-width: 64em) {
    .main-sidebar .sidebar-wrapper {
      margin-top: 2em;
      padding-left: 1.5em;
      border-left: 1px solid #262626; } }
  @media screen and (min-width: 106.25em) {
    .main-sidebar .sidebar-wrapper {
      padding-left: 3em; } }
  .main-sidebar .sidebar-wrapper .sidebar-images {
    margin: 0 auto;
    padding-top: 0.5em;
    width: 90%; }
    @media screen and (min-width: 90em) {
      .main-sidebar .sidebar-wrapper .sidebar-images {
        width: 75%; } }
    .main-sidebar .sidebar-wrapper .sidebar-images .sidebar-img {
      padding: 0.5em 0; }
  .main-sidebar .sidebar-wrapper h3 {
    margin-bottom: 0.75em; }
  .main-sidebar .sidebar-wrapper .sidebar-links > ul {
    list-style: none;
    margin: 0;
    -webkit-display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-pack: center;
    justify-content: center; }
    @media print, screen and (min-width: 64em) {
      .main-sidebar .sidebar-wrapper .sidebar-links > ul {
        -ms-flex-direction: column;
        flex-direction: column; } }
    .main-sidebar .sidebar-wrapper .sidebar-links > ul li {
      margin: 0.25em 0.5em;
      width: 100%; }
      @media print, screen and (min-width: 40em) {
        .main-sidebar .sidebar-wrapper .sidebar-links > ul li {
          width: 300px;
          margin: 0.25em auto; } }
      @media print, screen and (min-width: 64em) {
        .main-sidebar .sidebar-wrapper .sidebar-links > ul li {
          margin: 0.5em 0;
          min-width: 120px;
          width: auto; } }
      .main-sidebar .sidebar-wrapper .sidebar-links > ul li a {
        font-family: "Raleway", sans-serif;
        display: block;
        font-size: 85%;
        font-weight: bold;
        background-color: #d8b45d;
        padding: 7px 12px;
        color: #262626;
        text-transform: uppercase;
        text-align: center; }
        @media print, screen and (min-width: 64em) {
          .main-sidebar .sidebar-wrapper .sidebar-links > ul li a {
            text-align: left;
            font-size: 90%; } }
      .main-sidebar .sidebar-wrapper .sidebar-links > ul li a.active {
        background-color: #ffffff;
        border: 1px solid #d8b45d; }
      .main-sidebar .sidebar-wrapper .sidebar-links > ul li a.active:hover {
        color: #262626; }
      .main-sidebar .sidebar-wrapper .sidebar-links > ul li a:hover {
        color: #ffffff;
        text-decoration: none; }
  .main-sidebar .sidebar-wrapper .newsletter-signup {
    display: none;
    padding-top: 1.5em; }
    @media print, screen and (min-width: 64em) {
      .main-sidebar .sidebar-wrapper .newsletter-signup {
        display: block; } }
    .main-sidebar .sidebar-wrapper .newsletter-signup p {
      margin-bottom: 0; }

.one-column {
  padding: 1em 0; }
  .one-column .clubgrants-header {
    padding: 0 !important; }
    .one-column .clubgrants-header .cg-logo {
      padding: 0; }
      .one-column .clubgrants-header .cg-logo img {
        width: 300px; }
    .one-column .clubgrants-header .cg-donations {
      padding: 1em 0 0 0; }
      @media print, screen and (min-width: 64em) {
        .one-column .clubgrants-header .cg-donations {
          padding: 0;
          text-align: right; } }
      .one-column .clubgrants-header .cg-donations p {
        margin-bottom: 0; }
  .one-column .trading-hours {
    padding-top: 10px;
    border: none;
    font-size: 90%; }
    @media print, screen and (min-width: 64em) {
      .one-column .trading-hours {
        font-size: 100%; } }
    .one-column .trading-hours tbody tr {
      background-color: transparent; }
      .one-column .trading-hours tbody tr td.table-day {
        padding: 0.5em 0.5em 0.5em 0;
        text-transform: uppercase;
        font-weight: bold;
        width: 30%; }
        @media print, screen and (min-width: 64em) {
          .one-column .trading-hours tbody tr td.table-day {
            padding: 0.25em 0.5em 0.25em 0; } }
      .one-column .trading-hours tbody tr td.table-hours {
        padding: 0.5em 0 0.5em 0.5em; }
        @media print, screen and (min-width: 64em) {
          .one-column .trading-hours tbody tr td.table-hours {
            padding: 0.25em 0.5em 0.25em 0; } }
  .one-column .dining-prices {
    margin-bottom: 1.75em;
    border-spacing: 0;
    border: 1px solid #262626;
    font-size: 90%;
    line-height: 1.4; }
    @media print, screen and (min-width: 64em) {
      .one-column .dining-prices {
        font-size: 100%; } }
    .one-column .dining-prices tr.col-heading {
      background-color: #262626;
      color: #ffffff;
      font-weight: bold; }
    .one-column .dining-prices tr {
      background-color: transparent;
      border: none; }
    .one-column .dining-prices td {
      padding: 0.5em;
      border: 1px solid #f4f4f4; }
      @media print, screen and (min-width: 64em) {
        .one-column .dining-prices td {
          border: none;
          padding: 0.75em; } }
  .one-column #bus-timetable {
    margin: 0 auto;
    max-width: 500px;
    font-size: 90%;
    background: transparent;
    border-spacing: 0; }
    .one-column #bus-timetable tr, .one-column #bus-timetable td {
      background-color: transparent; }
    .one-column #bus-timetable td {
      border-top: 1px solid #262626; }
    .one-column #bus-timetable tr:last-child td {
      border-bottom: 1px solid #262626; }
    .one-column #bus-timetable td.bus-day {
      width: 50%;
      font-weight: bold; }
  .one-column .bus-contact {
    background-color: #f7f7f7; }
    .one-column .bus-contact .columns.large-5 {
      text-align: right; }
      .one-column .bus-contact .columns.large-5 .courtesy-phone {
        width: 100%; }
        @media print, screen and (min-width: 40em) {
          .one-column .bus-contact .columns.large-5 .courtesy-phone {
            width: 60%; } }
        @media print, screen and (min-width: 64em) {
          .one-column .bus-contact .columns.large-5 .courtesy-phone {
            width: 30%; } }
    .one-column .bus-contact .columns.large-7 {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -ms-flex-align: center;
      align-items: center; }
  .one-column table#subbranch tr, .one-column table#subbranch td {
    background-color: transparent; }
  .one-column table#subbranch td {
    padding-left: 0;
    font-size: 90%; }
    @media print, screen and (min-width: 64em) {
      .one-column table#subbranch td {
        font-size: 100%; } }
  .one-column table#subbranch td:first-child {
    font-weight: bold; }
    @media print, screen and (min-width: 64em) {
      .one-column table#subbranch td:first-child {
        font-weight: normal; } }
  .one-column #star-partners {
    background: transparent;
    border-spacing: 0; }
    .one-column #star-partners tr {
      background: transparent;
      borer: none; }
    .one-column #star-partners td {
      border: 1px solid #f4f4f4; }
    .one-column #star-partners td:first-child {
      width: 40%; }
  .one-column #responsive-form {
    max-width: 1099px;
    margin: 0 auto;
    width: 100%;
    font-size: 90%; }
    @media print, screen and (min-width: 64em) {
      .one-column #responsive-form .column-half {
        width: 50% !important; }
      .one-column #responsive-form .column-third {
        width: 33% !important; } }
    .one-column #responsive-form .form-row {
      width: 100%; }
    .one-column #responsive-form .column-half, .one-column #responsive-form .column-full, .one-column #responsive-form .column-third {
      float: left;
      position: relative;
      padding: 0.5em;
      width: 100%;
      box-sizing: border-box; }
    .one-column #responsive-form table.checkboxes tr, .one-column #responsive-form table.checkboxes td {
      background-color: transparent; }
    .one-column #responsive-form table.checkboxes td {
      padding: 0; }
    .one-column #responsive-form table.checkboxes td.avail-day {
      width: 120px; }
    .one-column #responsive-form .clearfix:after {
      content: "";
      display: table;
      clear: both; }
    .one-column #responsive-form input[type=text], .one-column #responsive-form input[type=email], .one-column #responsive-form input[type=number],
    .one-column #responsive-form input[type=tel], .one-column #responsive-form select, .one-column #responsive-form textarea {
      margin-top: 0.5em;
      background-color: #f4f4f4 !important;
      box-shadow: none; }
    .one-column #responsive-form textarea {
      padding: 1em; }
    .one-column #responsive-form input[type=submit] {
      border: none;
      box-shadow: none;
      background-color: #d8b45d;
      padding: 10px 15px;
      min-width: 150px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px; }
    .one-column #responsive-form input.add-resume {
      margin-top: 0.5em; }
    .one-column #responsive-form input[type="checkbox"] {
      border-radius: 0;
      box-shadow: none;
      border: 1px solid #262626; }
    .one-column #responsive-form ::-webkit-input-placeholder {
      /* WebKit, Blink, Edge */
      color: #999999; }
    .one-column #responsive-form :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #999999;
      opacity: 1; }
    .one-column #responsive-form ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #999999;
      opacity: 1; }
    .one-column #responsive-form :-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #999999; }

#function-template .one-column {
  padding-top: 50px; }

#two-columns {
  padding: 0; }

#membership-points {
  padding-bottom: 1em; }
  @media screen and (min-width: 75em) {
    #membership-points {
      padding: 1em 0; } }
  @media screen and (min-width: 90em) {
    #membership-points {
      padding: 1.5em 0; } }
  #membership-points .columns.large-3 {
    padding-left: 0; }
  #membership-points .column.large-9, #membership-points .large-9.columns {
    padding-left: 0; }
    @media print, screen and (min-width: 64em) {
      #membership-points .column.large-9, #membership-points .large-9.columns {
        padding-left: 1.5em;
        padding-right: 0; } }

#three-cards {
  width: 100%;
  padding: 0; }
  #three-cards h2 {
    text-align: left;
    margin-bottom: 1em; }
  #three-cards .card-image {
    width: 100%;
    padding-bottom: 0.75em; }
    @media print, screen and (min-width: 64em) {
      #three-cards .card-image {
        width: 80%; } }
  #three-cards .columns {
    padding-bottom: 1em; }

#three-columns .columns.large-4 {
  padding-bottom: 1em; }
  #three-columns .columns.large-4 img {
    padding-bottom: 0.5em;
    width: 75%;
    margin: 0 auto;
    display: block; }
  #three-columns .columns.large-4 p, #three-columns .columns.large-4 h6 {
    text-align: center; }

.dress-regs .regulations-wrapper {
  margin-top: 1em;
  padding-top: 1em;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem; }
  @media print, screen and (min-width: 64em) {
    .dress-regs .regulations-wrapper {
      margin-top: 2em;
      padding-left: 1.5em; } }
  @media screen and (min-width: 106.25em) {
    .dress-regs .regulations-wrapper {
      padding-left: 3em; } }
  .dress-regs .regulations-wrapper p {
    margin-bottom: 0;
    font-size: 90%; }
  .dress-regs .regulations-wrapper .sidebar-icons {
    margin: 0 auto;
    text-align: center;
    padding: 0.75em 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media print, screen and (min-width: 64em) {
      .dress-regs .regulations-wrapper .sidebar-icons {
        -ms-flex-direction: column;
        flex-direction: column; } }
    @media screen and (min-width: 90em) {
      .dress-regs .regulations-wrapper .sidebar-icons {
        width: 75%; } }
    .dress-regs .regulations-wrapper .sidebar-icons .sidebar-icon {
      padding: 0.5em 0;
      margin: 0 auto; }
    .dress-regs .regulations-wrapper .sidebar-icons img.regulation-icon {
      width: 60%;
      padding-bottom: 0.25em; }
      @media print, screen and (min-width: 40em) {
        .dress-regs .regulations-wrapper .sidebar-icons img.regulation-icon {
          width: 33%; } }
      @media print, screen and (min-width: 64em) {
        .dress-regs .regulations-wrapper .sidebar-icons img.regulation-icon {
          width: 45%; } }
  .dress-regs .regulations-wrapper h3 {
    margin-bottom: 0.75em; }

.travel-event.row .travel-img {
  padding-bottom: 2em;
  width: 100%; }

.travel-event.row h3 {
  width: 100%; }

.travel-event.row h5 {
  padding-bottom: 1em; }

.six-menus {
  padding-bottom: 50px;
  text-align: center;
  max-width: 75rem;
  margin: 0 auto; }
  .six-menus:before {
    content: '';
    width: 400px;
    height: 1px;
    background-color: #262626;
    display: block;
    margin: 10px auto 50px; }
  .six-menus .description {
    padding-bottom: 30px;
    display: block; }
    .six-menus .description .title {
      font-size: 23px; }
  .six-menus .image-menu {
    position: relative;
    padding: 0 20px; }
    .six-menus .image-menu .title-container {
      display: block;
      position: absolute;
      bottom: 0;
      width: calc(100% - 40px);
      background: rgba(255, 255, 255, 0.6);
      text-align: center;
      height: 35%; }
      .six-menus .image-menu .title-container h6 {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        font-size: 15px; }

.cards {
  max-width: 75rem;
  margin: 0 auto;
  padding-bottom: 50px; }
  .cards .card {
    margin: 10px;
    padding: 0;
    border: none;
    box-shadow: 0 -1px 0 #e0e0e0, 0 0 2px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.24); }
    .cards .card .image {
      position: relative; }
      .cards .card .image .image-title {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        background: rgba(38, 38, 38, 0.2); }
      .cards .card .image h5 {
        position: relative;
        font-family: "Raleway", Helvetica, sans-serif;
        top: 50%;
        transform: translateY(-50%);
        color: #ffffff;
        margin-bottom: 0;
        display: block; }
        .cards .card .image h5:after {
          content: '';
          background-color: #ffffff;
          width: 60px;
          height: 1px;
          display: block;
          margin: 5px auto 0px; }
    .cards .card .text-container {
      padding: 20px;
      background: #ffffff;
      color: #262626; }
      .cards .card .text-container p {
        margin: 0; }
      .cards .card .text-container .button {
        margin-top: 20px; }
