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

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

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

Stylesheet: Mixins & Constants Stylesheet

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "GT Sectra", serif;
  font-weight: normal;
  line-height: 1.375;
  color: #000000;
  -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 {
  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; }
  [data-whatinput='mouse'] button {
    outline: 0; }

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

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

.row {
  max-width: 81.25rem;
  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.9375rem;
    margin-left: -0.9375rem; }
    @media print, screen and (min-width: 52.5em) {
      .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: 90em) {
      .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem; } }
  .row.expanded {
    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.9375rem;
  padding-left: 0.9375rem;
  min-width: initial; }
  @media print, screen and (min-width: 52.5em) {
    .column, .columns {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

.column.row.row, .row.row.columns {
  display: -ms-flexbox;
  display: flex; }

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

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

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

.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.9375rem;
  padding-left: 0.9375rem; }

@media print, screen and (min-width: 52.5em) {
  .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-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; }
  .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: 52.5em) and (min-width: 52.5em) {
  .medium-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

@media print, screen and (min-width: 52.5em) {
  .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; }
  .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; } }

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

@media print, screen and (min-width: 52.5em) {
  .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-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; }
  .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; } }

@media print, screen and (min-width: 64em) {
  .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; }
  .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; } }

.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: 90em) {
  .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-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; }
  .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: 90em) and (min-width: 90em) {
  .xlarge-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

@media screen and (min-width: 90em) {
  .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; }
  .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; } }

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

@media screen and (min-width: 90em) {
  .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; } }

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

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

.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: 52.5em) {
  .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: 90em) {
  .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; } }

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.5;
  text-rendering: optimizeLegibility; }

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "GT Sectra", serif;
  font-style: normal;
  font-weight: bold;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #AAAAAA; }

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

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

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

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

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

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

@media print, screen and (min-width: 52.5em) {
  h1 {
    font-size: 3rem; }
  h2 {
    font-size: 2.25rem; }
  h3 {
    font-size: 2rem; }
  h4 {
    font-size: 1.75rem; }
  h5 {
    font-size: 1.5rem; }
  h6 {
    font-size: 1rem; } }

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

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

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

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 #AAAAAA; }
  blockquote, blockquote p {
    line-height: 1.5;
    color: #666666; }

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

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

figure {
  margin: 0; }

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 52.5em) {
  .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: 90em) {
  .xlarge-text-left {
    text-align: left; }
  .xlarge-text-right {
    text-align: right; }
  .xlarge-text-center {
    text-align: center; }
  .xlarge-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 #666666;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #AAAAAA;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  color: #000000;
  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 #666666;
    background-color: #ffffff;
    box-shadow: 0 0 5px #AAAAAA;
    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: #AAAAAA; }

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

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  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: #000000; }
  label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0; }

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

.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 #AAAAAA;
  background: #e6e6e6;
  color: #000000;
  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 #AAAAAA; }
  .fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem;
    background: #ffffff; }

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #AAAAAA;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  line-height: normal;
  color: #000000;
  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%28102, 102, 102%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 #666666;
    background-color: #ffffff;
    box-shadow: 0 0 5px #AAAAAA;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  select:disabled {
    background-color: #e6e6e6;
    cursor: not-allowed; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

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

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

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #faab9f; }
  .form-error.is-visible {
    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%; }

.media-object {
  display: block;
  margin-bottom: 1rem; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 52.4375em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 2rem;
      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: 2rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 2rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

@media screen and (max-width: 52.4375em), 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: 89.9375em) {
  .hide-for-large-only {
    display: none !important; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix::after {
  clear: both; }

@font-face {
  font-family: 'Graphik Web';
  src: url("../webfonts/Graphik-BoldItalic-Web.eot");
  src: url("../webfonts/Graphik-BoldItalic-Web.eot?#iefix") format("embedded-opentype"), url("../webfonts/Graphik-BoldItalic-Web.woff2") format("woff2"), url("../webfonts/Graphik-BoldItalic-Web.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-stretch: normal; }

.Graphik-BoldItalic-Web {
  font-family: 'Graphik Web';
  font-weight: 700;
  font-style: italic;
  font-stretch: normal; }

@font-face {
  font-family: 'Graphik Web';
  src: url("../webfonts/Graphik-Bold-Web.eot");
  src: url("../webfonts/Graphik-Bold-Web.eot?#iefix") format("embedded-opentype"), url("../webfonts/Graphik-Bold-Web.woff2") format("woff2"), url("../webfonts/Graphik-Bold-Web.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal; }

.Graphik-Bold-Web, .button, .archive .categories a.active,
.single-post .categories a.active,
.page-template-by-hilary .categories a.active {
  font-family: 'Graphik Web';
  font-weight: 700;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: 'Graphik Web';
  src: url("../webfonts/Graphik-RegularItalic-Web.eot");
  src: url("../webfonts/Graphik-RegularItalic-Web.eot?#iefix") format("embedded-opentype"), url("../webfonts/Graphik-RegularItalic-Web.woff2") format("woff2"), url("../webfonts/Graphik-RegularItalic-Web.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-stretch: normal; }

.Graphik-RegularItalic-Web {
  font-family: 'Graphik Web';
  font-weight: 400;
  font-style: italic;
  font-stretch: normal; }

@font-face {
  font-family: 'Graphik Web';
  src: url("../webfonts/Graphik-Regular-Web.eot");
  src: url("../webfonts/Graphik-Regular-Web.eot?#iefix") format("embedded-opentype"), url("../webfonts/Graphik-Regular-Web.woff2") format("woff2"), url("../webfonts/Graphik-Regular-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

.Graphik-Regular-Web, .label, .button.button-hollow, .top-bar .links a, .top-bar .search form input[type="text"], .top-bar .form-search input[type="text"], .post-about .facts, .post-concerts, .post-discography .albums p,
.post-album .albums p, .post-discography .column-testimonials p, .post-discography .column-testimonials h6,
.post-album .column-testimonials p,
.post-album .column-testimonials h6, .post-album .album-info p, .page-template-videos a.view-all, .page-template-videos p, .gform_wrapper .gform_fields label, .gform_wrapper .gform_fields input[type="text"]:focus,
.gform_wrapper .gform_fields textarea:focus,
.gform_wrapper .gform_fields input,
.gform_wrapper .gform_fields textarea, .gform_wrapper .validation_error, .gform_wrapper .gfield_error .validation_message, .post-contact .publicist, .post-teaser p, .sidebar p, .sidebar .years, .sidebar form input[type="text"]:focus,
.sidebar form input, .archive .categories a,
.single-post .categories a,
.page-template-by-hilary .categories a, .wp-pagenavi, .upcoming-events .column-events, .thumb-links, .featured-box h2, .featured-box a, .footer-image p, footer p, footer form input[type="text"]:focus,
footer form input[type="text"] {
  font-family: 'Graphik Web';
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: 'GT Sectra';
  src: url("../webfonts/GT-Sectra-Fine-Regular.eot");
  src: url("../webfonts/GT-Sectra-Fine-Regular.eot?#iefix") format("embedded-opentype"), url("../webfonts/GT-Sectra-Fine-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

.GT-Sectra-Fine-Regular, .post-homepage .hero h1 {
  font-family: 'GT Sectra';
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: 'GT Sectra';
  src: url("../webfonts/GT-Sectra-Fine-Bold.eot");
  src: url("../webfonts/GT-Sectra-Fine-Bold.eot?#iefix") format("embedded-opentype"), url("../webfonts/GT-Sectra-Fine-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal; }

.GT-Sectra-Fine-Bold {
  font-family: 'GT Sectra';
  font-weight: 700;
  font-style: normal;
  font-stretch: normal; }

* {
  transition: color 200ms, background-color 200ms, opacity 200ms, border 200ms; }

html {
  font-size: 14px; }
  @media print, screen and (min-width: 52.5em) {
    html {
      font-size: 15px; } }
  @media print, screen and (min-width: 64em) {
    html {
      font-size: 16px; } }

body {
  letter-spacing: 0.015em;
  overflow-x: hidden; }

p.deck {
  font-size: 1.5rem; }
  p.deck a {
    color: #666666; }

img {
  width: 100%; }

h1 {
  margin-bottom: 1.5rem;
  line-height: 1; }

.label {
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase; }
  .label a {
    color: #666666; }

table {
  border-collapse: collapse;
  width: 100%; }

.button {
  font-size: 0.75rem;
  border-radius: 2px;
  padding: 0 0.8rem;
  height: 36px;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  display: inline-block; }
  .button.button-black, .gform_wrapper .button.gform_button {
    background-color: #000000;
    color: #ffffff; }
  .button.button-white {
    background-color: #000000;
    color: #ffffff; }
  .button.button-short {
    height: 25px;
    line-height: 25px; }
  .button.button-hollow {
    height: 36px;
    line-height: 33px;
    font-size: 0.875rem;
    border: 1px solid #AAAAAA;
    border-radius: 4px; }

.container {
  padding: 0; }
  @media print, screen and (min-width: 52.5em) {
    .container {
      padding: 0 1rem; } }
  @media print, screen and (min-width: 64em) {
    .container {
      padding: 0 2rem; } }
  @media screen and (min-width: 90em) {
    .container {
      padding: 0 10rem; } }

.background-cover, .post-homepage .hero .image, .archive .hero,
.single-post .hero,
.page-template-by-hilary .hero, .upcoming-events .column-image, .featured-box, .footer-image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #ffffff; }
  .top-bar a {
    color: #000000; }
  .top-bar h1 {
    font-size: 1.5rem;
    margin: 12px 0 0 0; }
    @media print, screen and (min-width: 52.5em) {
      .top-bar h1 {
        margin: 0;
        height: 48px;
        line-height: 48px; } }
  .top-bar .columns {
    height: 46px; }
  .top-bar .logo-links {
    border-bottom: 1px solid #d5d5d5; }
    @media print, screen and (min-width: 52.5em) {
      .top-bar .logo-links {
        padding-top: 1rem; } }
  .top-bar .hamburger-container {
    background-color: #000000;
    width: 50px;
    height: 40px;
    padding-top: 10px;
    padding-left: 8px;
    float: right;
    position: relative;
    z-index: 300; }
    @media print, screen and (min-width: 52.5em) {
      .top-bar .hamburger-container {
        display: none; } }
  @media print, screen and (min-width: 52.5em) {
    .top-bar .row-logo-links {
      padding-left: 0.625rem;
      padding-right: 0.625rem; } }
  .top-bar .links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none; }
    @media print, screen and (min-width: 52.5em) {
      .top-bar .links {
        float: right;
        display: block;
        opacity: 1; } }
    .top-bar .links li {
      display: inline-block;
      border-bottom: 4px solid transparent;
      margin-left: 0.5rem; }
      @media print, screen and (min-width: 64em) {
        .top-bar .links li {
          margin-left: 2rem; } }
    .top-bar .links li:first-child {
      margin-left: 0; }
    .top-bar .links a {
      display: block;
      height: 44px;
      line-height: 44px; }
    @media print, screen and (min-width: 52.5em) {
      .top-bar .links li.active {
        border-bottom: 4px solid #666666; } }
    .top-bar .links .fa {
      color: #000000;
      cursor: pointer;
      transition: opacity 200ms; }
    .top-bar .links .fa-times {
      display: none; }
  .top-bar .icons a {
    font-size: 0.625rem;
    margin-right: 2px;
    margin-top: 10px;
    display: inline-block; }
  .top-bar .icons .fa-stack-1x {
    color: #000000; }
  .top-bar .search {
    background-color: #666666;
    height: 100px;
    max-height: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: max-height .200s;
    overflow: hidden; }
    .top-bar .search form {
      position: relative;
      color: #ffffff; }
      .top-bar .search form .fa {
        font-size: 1.75rem; }
      .top-bar .search form input[type="text"] {
        font-size: 2.25rem;
        width: calc(100% - 50px);
        border: 0;
        display: inline-block;
        color: #ffffff;
        background-color: transparent;
        height: 100px;
        line-height: 100px;
        -webkit-appearance: none;
        box-shadow: none; }
      .top-bar .search form input[type="submit"] {
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
        height: 100px;
        width: 70px;
        opacity: 0; }
  .top-bar .form-search {
    position: relative;
    max-width: 280px;
    margin: 1rem auto; }
    .top-bar .form-search input[type="text"] {
      border: 0;
      background-color: #666666;
      color: #ffffff;
      -webkit-appearance: none;
      box-shadow: none;
      padding: 0 1rem;
      height: 40px;
      line-height: 40px;
      margin: 0; }
    .top-bar .form-search input[type="submit"] {
      cursor: pointer;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1;
      height: 40px;
      width: 40px;
      opacity: 0; }
    .top-bar .form-search .fa {
      color: #ffffff;
      position: absolute;
      top: 14px;
      right: 10px; }

@media screen and (max-width: 52.4375em) {
  .top-bar.top-bar-menu-open .links {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    height: 100vh;
    z-index: 200;
    text-align: center;
    animation: play-pulse 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    padding-top: 3rem; }
    .top-bar.top-bar-menu-open .links li {
      margin: 0;
      display: block; }
    .top-bar.top-bar-menu-open .links a {
      font-family: 'Graphik Web';
      font-weight: 700;
      font-size: 1.75rem;
      color: #ffffff !important; }
  .top-bar.top-bar-menu-open .hamburger span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%; }
  .top-bar.top-bar-menu-open .hamburger span:nth-child(2) {
    transform: rotate(45deg); }
  .top-bar.top-bar-menu-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg); }
  .top-bar.top-bar-menu-open .hamburger span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%; } }

.top-bar.search--is-showing .search {
  max-height: 100px; }

.top-bar.search--is-showing .links .fa-search {
  display: none; }

.top-bar.search--is-showing .links .fa-times {
  display: inline; }

.archive .top-bar,
.single-post .top-bar,
.page-template-by-hilary .top-bar,
.page-template-homepage .top-bar {
  background-color: transparent; }
  .archive .top-bar a,
  .single-post .top-bar a,
  .page-template-by-hilary .top-bar a,
  .page-template-homepage .top-bar a {
    color: #ffffff; }
  .archive .top-bar .links .fa,
  .single-post .top-bar .links .fa,
  .page-template-by-hilary .top-bar .links .fa,
  .page-template-homepage .top-bar .links .fa {
    color: #ffffff; }
  .archive .top-bar.headroom--not-top:not(.top-bar-menu-open),
  .single-post .top-bar.headroom--not-top:not(.top-bar-menu-open),
  .page-template-by-hilary .top-bar.headroom--not-top:not(.top-bar-menu-open),
  .page-template-homepage .top-bar.headroom--not-top:not(.top-bar-menu-open) {
    background-color: #ffffff; }
    .archive .top-bar.headroom--not-top:not(.top-bar-menu-open) a, .archive .top-bar.headroom--not-top:not(.top-bar-menu-open) .fa,
    .single-post .top-bar.headroom--not-top:not(.top-bar-menu-open) a,
    .single-post .top-bar.headroom--not-top:not(.top-bar-menu-open) .fa,
    .page-template-by-hilary .top-bar.headroom--not-top:not(.top-bar-menu-open) a,
    .page-template-by-hilary .top-bar.headroom--not-top:not(.top-bar-menu-open) .fa,
    .page-template-homepage .top-bar.headroom--not-top:not(.top-bar-menu-open) a,
    .page-template-homepage .top-bar.headroom--not-top:not(.top-bar-menu-open) .fa {
      color: #000000; }
    .archive .top-bar.headroom--not-top:not(.top-bar-menu-open) .icons .fa-stack-1x,
    .single-post .top-bar.headroom--not-top:not(.top-bar-menu-open) .icons .fa-stack-1x,
    .page-template-by-hilary .top-bar.headroom--not-top:not(.top-bar-menu-open) .icons .fa-stack-1x,
    .page-template-homepage .top-bar.headroom--not-top:not(.top-bar-menu-open) .icons .fa-stack-1x {
      color: #ffffff; }

.page-is-loading main {
  filter: blur(100px);
  opacity: 0; }

.page-is-loading .top-bar {
  background-color: transparent; }
  .page-is-loading .top-bar a {
    color: #000000; }

.page-dark {
  background-color: #000000;
  color: #ffffff; }
  .page-dark .top-bar {
    background-color: #000000; }
    .page-dark .top-bar a {
      color: #ffffff; }
    .page-dark .top-bar .logo-links {
      border-bottom: 1px solid #464646; }
    .page-dark .top-bar .links .fa {
      color: #ffffff; }

.page-template-discography main,
.page-template-album main {
  padding-bottom: 0; }

main {
  transition: filter 250ms, opacity 500ms, transform 250ms;
  padding: 8rem 0 5rem 0; }

.page-template-homepage #main-menu {
  opacity: 0;
  transition: opacity 2s; }
  .page-template-homepage #main-menu.main-menu--is-showing {
    opacity: 1; }

.page-template-homepage main {
  padding-top: 0; }

.post-homepage .hero {
  height: 320px;
  position: relative;
  background-color: #000000;
  overflow: hidden; }
  @media print, screen and (min-width: 52.5em) {
    .post-homepage .hero {
      height: 100vh; } }
  .post-homepage .hero .row,
  .post-homepage .hero .columns {
    height: 100%; }
  .post-homepage .hero .image {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1.5);
    opacity: 0;
    transition: transform 3s, opacity 4s; }
  .post-homepage .hero h1 {
    z-index: 1;
    position: relative;
    text-align: center;
    color: #e0c6ad;
    line-height: 1;
    display: inline-block;
    float: right;
    font-size: 50px;
    transition: opacity 4s;
    opacity: 0;
    font-size: 2.8125rem;
    padding-top: 7rem;
    padding-right: 0.5rem; }
    @media print, screen and (min-width: 52.5em) {
      .post-homepage .hero h1 {
        font-size: 6.25rem;
        padding-right: 3rem;
        padding-top: 0; } }
    @media print, screen and (min-width: 64em) {
      .post-homepage .hero h1 {
        font-size: 7.5rem; } }
    .post-homepage .hero h1.name--is-showing {
      opacity: 1; }
  .post-homepage .hero.hero--is-animating .image {
    transform: scale(1);
    opacity: 1; }

.post-homepage .latest {
  border: 1px solid #DFDFDF;
  padding: 1rem;
  margin-left: 1rem; }
  .post-homepage .latest img {
    max-width: 150px; }

.post-homepage .intro {
  margin: 4rem auto; }

.post-homepage .postcards {
  margin: 4rem auto; }
  .post-homepage .postcards img {
    width: 140px;
    margin-bottom: 2rem;
    border-radius: 50%; }
    @media print, screen and (min-width: 52.5em) {
      .post-homepage .postcards img {
        width: 260px;
        margin-bottom: 0; } }
  .post-homepage .postcards a.more {
    color: #666666; }

.post-about .facts {
  background-color: #DAF5D1;
  padding: 2rem 1.5rem;
  font-size: 0.875rem; }
  .post-about .facts p {
    margin: 0; }
  .post-about .facts hr {
    margin: 0.8rem 0; }
  .post-about .facts .number {
    font-size: 2.25rem;
    line-height: 1; }

.post-concerts thead th {
  font-weight: normal;
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase; }

.post-concerts th, .post-concerts td {
  text-align: left;
  width: 20%;
  padding: 1rem 2rem 1rem 0;
  vertical-align: top;
  border-bottom: 1px solid #e6e6e6; }
  .post-concerts th:nth-child(1), .post-concerts td:nth-child(1) {
    width: 15%; }
  .post-concerts th:nth-child(4), .post-concerts td:nth-child(4) {
    width: 25%; }
  .post-concerts th:nth-child(5), .post-concerts td:nth-child(5) {
    width: 10%; }
  .post-concerts th:last-child, .post-concerts td:last-child {
    padding-right: 0; }

.post-concerts tbody tr:last-child th, .post-concerts tbody tr:last-child td {
  border: 0; }

.post-search {
  margin-top: 1rem; }
  .post-search hr {
    margin: 3rem 0 2rem 0; }

@media print, screen and (min-width: 52.5em) {
  .post-discography .albums,
  .post-album .albums {
    padding-right: 2rem; } }

.post-discography .albums .media-object,
.post-album .albums .media-object {
  border-top: 1px solid #e6e6e6;
  padding: 1rem 0 1rem 0; }

.post-discography .albums h4,
.post-album .albums h4 {
  margin-bottom: 0; }
  @media screen and (max-width: 52.4375em) {
    .post-discography .albums h4,
    .post-album .albums h4 {
      padding-bottom: .5rem; } }

.post-discography .albums img,
.post-album .albums img {
  width: 100%; }
  @media print, screen and (min-width: 52.5em) {
    .post-discography .albums img,
    .post-album .albums img {
      width: 200px; } }

@media screen and (max-width: 52.4375em) {
  .post-discography .media-object-section,
  .post-album .media-object-section {
    width: 40%; } }

@media screen and (max-width: 52.4375em) {
  .post-discography .column-testimonials,
  .post-album .column-testimonials {
    margin-top: 2rem; } }

@media print, screen and (min-width: 64em) {
  .post-discography .column-testimonials,
  .post-album .column-testimonials {
    max-width: 315px; } }

.post-discography .column-testimonials h6,
.post-album .column-testimonials h6 {
  margin-bottom: 2rem;
  line-height: 1.5; }

.post-discography .upcoming-events,
.post-album .upcoming-events {
  margin-bottom: 0; }

.post-discography .button-hollow,
.post-album .button-hollow {
  margin-right: 4px;
  margin-bottom: 0.5rem; }

.post-album a.back {
  display: inline-block;
  margin-bottom: 1.5rem; }

.post-album h1 {
  max-width: 768px; }

.post-album .sku {
  margin-bottom: 3rem; }

.post-album .album-info {
  margin-bottom: 5rem; }

.post-album .more {
  line-height: 1; }
  .post-album .more a {
    display: inline-block;
    float: right;
    margin-top: 0.4rem; }
    @media print, screen and (min-width: 52.5em) {
      .post-album .more a {
        margin-top: 0.6rem; } }

.post-album .albums p {
  font-size: 1rem; }

.post-album .albums .media-object-first {
  margin-top: 0.5rem; }

.post-photos h4 {
  margin-bottom: 1rem;
  margin-top: 1rem; }
  @media print, screen and (min-width: 52.5em) {
    .post-photos h4 {
      margin-top: 3rem; } }
  .post-photos h4 a {
    float: right;
    display: block;
    margin-bottom: 1rem; }

.post-photos .row-thumbs .column, .post-photos .row-thumbs .columns {
  margin-bottom: 2rem; }

.post-photos .row-thumbs a {
  position: relative; }

.post-photos .row-thumbs i {
  position: absolute;
  color: #ffffff;
  font-size: 2.5rem;
  top: calc(50% - 20px);
  left: calc(50% - 20px); }

.page-template-videos h1 {
  width: 100%; }

.page-template-videos a.view-all {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 1rem;
  background-color: #ffffff;
  color: #000000; }
  @media print, screen and (min-width: 52.5em) {
    .page-template-videos a.view-all {
      float: right; } }

.page-template-videos p {
  font-size: 0.875rem; }

.page-template-videos .videos {
  margin-top: 2rem; }
  .page-template-videos .videos .row {
    margin-bottom: 3rem; }
  .page-template-videos .videos p.more {
    margin-top: 2rem; }
    .page-template-videos .videos p.more a {
      color: #ffffff; }
    .page-template-videos .videos p.more a:hover {
      background-color: #ffffff;
      color: #000000; }

.gform_wrapper .gform_fields {
  margin: 0;
  padding: 0;
  list-style: none; }
  .gform_wrapper .gform_fields li {
    margin-bottom: 2rem; }
  .gform_wrapper .gform_fields label {
    text-transform: uppercase; }
  .gform_wrapper .gform_fields .gfield_required {
    display: none; }
  .gform_wrapper .gform_fields input[type="text"]:focus,
  .gform_wrapper .gform_fields textarea:focus,
  .gform_wrapper .gform_fields input,
  .gform_wrapper .gform_fields textarea {
    background-color: #efefef;
    border: 0;
    height: auto;
    box-shadow: none;
    padding: 1rem; }

.gform_wrapper .gform_button {
  -webkit-appearance: none;
  box-shadow: none;
  border: 0; }

.gform_wrapper .validation_error {
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #faab9f;
  color: #ffffff; }

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea {
  background-color: #faab9f; }

.gform_wrapper .gfield_error .validation_message {
  color: #faab9f; }

.post-contact form {
  margin-bottom: 2rem; }
  @media print, screen and (min-width: 52.5em) {
    .post-contact form {
      padding-right: 2rem; } }

.post-contact h4 {
  margin-top: 1rem; }

.post-post,
.post-post.post-teaser {
  border-bottom: 1px solid #AAAAAA;
  padding-bottom: 1rem;
  margin-bottom: 2rem; }
  @media screen and (min-width: 48em) {
    .post-post,
    .post-post.post-teaser {
      border-bottom: 0;
      padding-bottom: 0; } }

.post-teaser {
  margin-bottom: 4rem; }
  .post-teaser h3 {
    margin-bottom: 0.5rem; }
  .post-teaser h6 {
    margin-bottom: 1rem; }
  .post-teaser p {
    font-size: 1.125rem; }
  .post-teaser img {
    width: 220px;
    float: left;
    margin: 0 1.5rem 0.25rem 0; }
  .post-teaser a.excerpt-read-more {
    color: #666666;
    text-transform: capitalize; }

@media print, screen and (min-width: 52.5em) {
  .sidebar {
    max-width: 315px; } }

.sidebar p {
  font-size: 1rem; }
  .sidebar p a {
    color: #666666; }

.sidebar hr {
  margin: 2rem 0; }

.sidebar .years {
  font-size: 1rem;
  margin: 0;
  padding-right: 0;
  list-style: none; }
  .sidebar .years a {
    width: 50px;
    display: inline-block;
    color: #000000; }

.sidebar .recent a {
  color: #000000;
  display: block;
  margin-bottom: 1rem; }

.sidebar form {
  position: relative; }
  .sidebar form input[type="text"]:focus,
  .sidebar form input {
    background-color: #efefef;
    border: 0;
    height: auto;
    box-shadow: none;
    padding: 1rem; }
  .sidebar form .fa {
    position: absolute;
    right: 12px;
    top: 13px;
    color: #9B9B9B;
    font-size: 1.5rem; }

.column-content,
.column-sidebar {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }

@media screen and (min-width: 48em) {
  .column-content {
    width: 60%; } }

@media screen and (min-width: 48em) {
  .column-sidebar {
    width: 40%; } }

.archive main,
.single-post main,
.page-template-by-hilary main {
  padding-top: 0; }

.archive .posts,
.single-post .posts,
.page-template-by-hilary .posts {
  margin-top: 4rem; }

.archive .hero,
.single-post .hero,
.page-template-by-hilary .hero {
  height: 320px; }
  @media print, screen and (min-width: 52.5em) {
    .archive .hero,
    .single-post .hero,
    .page-template-by-hilary .hero {
      height: 550px; } }
  .archive .hero .container,
  .archive .hero .row,
  .archive .hero .columns,
  .single-post .hero .container,
  .single-post .hero .row,
  .single-post .hero .columns,
  .page-template-by-hilary .hero .container,
  .page-template-by-hilary .hero .row,
  .page-template-by-hilary .hero .columns {
    height: 100%; }
  .archive .hero h1,
  .single-post .hero h1,
  .page-template-by-hilary .hero h1 {
    color: #ffffff; }

.archive .categories,
.single-post .categories,
.page-template-by-hilary .categories {
  background-color: #000000; }
  @media screen and (max-width: 52.4375em) {
    .archive .categories,
    .single-post .categories,
    .page-template-by-hilary .categories {
      padding: 8px 0; } }
  .archive .categories a,
  .single-post .categories a,
  .page-template-by-hilary .categories a {
    display: block;
    font-size: 1.125rem;
    color: #ffffff; }
  .archive .categories ul,
  .single-post .categories ul,
  .page-template-by-hilary .categories ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .archive .categories li,
  .single-post .categories li,
  .page-template-by-hilary .categories li {
    height: 24px;
    line-height: 24px;
    display: inline-block;
    padding-right: 1rem; }
    @media print, screen and (min-width: 52.5em) {
      .archive .categories li,
      .single-post .categories li,
      .page-template-by-hilary .categories li {
        height: 56px;
        line-height: 56px; } }
    .archive .categories li:last-child,
    .single-post .categories li:last-child,
    .page-template-by-hilary .categories li:last-child {
      padding-right: 0; }

.archive .share,
.single-post .share,
.page-template-by-hilary .share {
  cursor: pointer;
  position: absolute; }
  .archive .share em,
  .single-post .share em,
  .page-template-by-hilary .share em {
    font-style: normal; }
  .archive .share a,
  .single-post .share a,
  .page-template-by-hilary .share a {
    font-size: 0.625rem;
    position: absolute;
    top: -5px;
    display: none; }
    .archive .share a .fa-stack-1x,
    .single-post .share a .fa-stack-1x,
    .page-template-by-hilary .share a .fa-stack-1x {
      color: #ffffff; }
  .archive .share a:nth-child(2),
  .single-post .share a:nth-child(2),
  .page-template-by-hilary .share a:nth-child(2) {
    left: 28px; }

.archive .row-welcome,
.single-post .row-welcome,
.page-template-by-hilary .row-welcome {
  margin: 4rem auto 0 auto; }
  .archive .row-welcome .welcome,
  .single-post .row-welcome .welcome,
  .page-template-by-hilary .row-welcome .welcome {
    max-width: 1060px;
    border-bottom: 1px solid #AAAAAA; }
  .archive .row-welcome p,
  .single-post .row-welcome p,
  .page-template-by-hilary .row-welcome p {
    line-height: 1.4;
    padding-bottom: 2rem;
    font-size: 20px; }
    @media print, screen and (min-width: 64em) {
      .archive .row-welcome p,
      .single-post .row-welcome p,
      .page-template-by-hilary .row-welcome p {
        font-size: 24px; } }

.latest article {
  display: none; }

.latest article:nth-child(1) {
  display: block; }

.throwback article:nth-child(1) {
  display: none; }

.page-by-hilary.paged .row-welcome,
.page-by-hilary.paged .latest,
.page-by-hilary.paged .hide-paged {
  display: none; }

.page-by-hilary.paged .throwback article:nth-child(1) {
  display: block; }

.wp-pagenavi {
  font-size: 1.125rem;
  border-bottom: 1px solid #AAAAAA;
  margin-bottom: 1rem;
  padding-bottom: 2rem; }
  @media screen and (min-width: 48em) {
    .wp-pagenavi {
      border-bottom: 0;
      margin-bottom: 0; } }
  .wp-pagenavi span.current,
  .wp-pagenavi a {
    display: inline-block;
    width: 33px;
    height: 33px;
    line-height: 32px;
    margin: 0;
    padding: 0;
    text-align: center;
    border: 1px solid #979797;
    margin: 0 0.5rem 0.5rem 0; }
  .wp-pagenavi span.current {
    font-weight: normal;
    background-color: #000000;
    border: 1px solid #000000;
    color: #ffffff; }

.upcoming-events {
  margin: 4rem auto; }
  .upcoming-events .column-events {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    background-color: #FFF2E9; }
    .upcoming-events .column-events thead th {
      font-weight: normal;
      font-size: 0.75rem;
      color: #666666;
      text-transform: uppercase; }
    .upcoming-events .column-events th, .upcoming-events .column-events td {
      text-align: left;
      text-align: left;
      width: 20%;
      padding: 1rem 2rem 1rem 0;
      vertical-align: top;
      border-bottom: 1px solid #AAAAAA; }
      .upcoming-events .column-events th:nth-child(1), .upcoming-events .column-events td:nth-child(1) {
        width: 15%; }
      .upcoming-events .column-events th:nth-child(4), .upcoming-events .column-events td:nth-child(4) {
        width: 25%; }
      .upcoming-events .column-events th:nth-child(5), .upcoming-events .column-events td:nth-child(5) {
        width: 10%; }
      .upcoming-events .column-events th:last-child, .upcoming-events .column-events td:last-child {
        padding-right: 0; }
    .upcoming-events .column-events tbody tr:last-child th, .upcoming-events .column-events tbody tr:last-child td {
      border: 0; }
    .upcoming-events .column-events td {
      vertical-align: top;
      border-bottom: 1px solid #AAAAAA;
      padding: 1rem 1.5rem 1rem 0; }
      @media print, screen and (min-width: 64em) {
        .upcoming-events .column-events td {
          padding: 1rem 1.5rem 1rem 0; } }
    .upcoming-events .column-events td:nth-child(1),
    .upcoming-events .column-events td:nth-child(2) {
      white-space: nowrap; }
    .upcoming-events .column-events td:nth-child(4) {
      padding-right: 0; }
    .upcoming-events .column-events tr:last-child td {
      border: 0; }

.buy a {
  font-size: 1rem;
  display: inline-block;
  line-height: 0; }

.buy .fa {
  padding-left: 0.2rem; }

.buy .fa-amazon {
  position: relative;
  top: 1px; }

.buy span {
  font-size: 0.875rem;
  display: none;
  padding-right: .1rem; }

.follow-hilary {
  padding: 4rem 0 2rem 0;
  background-color: #F4F4F4;
  color: #000000; }
  .follow-hilary h2, .follow-hilary p {
    text-align: center; }
  .follow-hilary h2 a {
    font-size: 0.875rem;
    position: relative;
    top: -8px; }
    .follow-hilary h2 a .fa-stack-1x {
      color: #ffffff; }

.thumb-links {
  padding: 4rem 0 2rem 0;
  background-color: #F4F4F4; }
  .thumb-links .column, .thumb-links .columns {
    margin-bottom: 1rem; }
  .thumb-links img {
    margin-bottom: 0.5rem; }

.featured-box {
  height: 450px;
  color: #ffffff; }
  .featured-box .container,
  .featured-box .row,
  .featured-box .columns {
    height: 100%; }
  .featured-box h2 {
    margin: 2rem 0 3rem 0; }
  .featured-box a {
    font-size: 1.125rem;
    border: 1px solid #ffffff;
    display: inline-block;
    padding: 0 1rem;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    color: #ffffff; }

.footer-image {
  height: 320px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative; }
  @media print, screen and (min-width: 52.5em) {
    .footer-image {
      height: 650px; } }
  .footer-image .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3); }
  .footer-image .text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding: 1rem; }
  .footer-image h2 {
    margin-bottom: 1rem; }
  .footer-image p {
    font-size: 1rem; }
  .footer-image p:last-child {
    margin-bottom: 0; }

footer {
  color: #ffffff;
  background-color: #222222;
  padding: 1rem 0; }
  @media print, screen and (min-width: 52.5em) {
    footer {
      padding: 3rem 0; } }
  @media screen and (max-width: 52.4375em) {
    footer h5 {
      margin-top: 1rem; } }
  footer h5 a {
    color: #ffffff; }
  footer p {
    font-size: 0.75rem; }
  footer a.icon {
    color: #ffffff;
    font-size: 1.875rem;
    margin-right: 8px; }
  footer form {
    position: relative; }
    @media print, screen and (min-width: 52.5em) {
      footer form {
        margin-right: 2rem; } }
    footer form input[type="text"]:focus,
    footer form input[type="text"] {
      border: 0;
      color: #ffffff;
      background-color: transparent;
      border-bottom: 1px solid #ffffff;
      height: auto;
      box-shadow: none;
      padding: 0.5rem 0 0.8rem 0; }
    footer form .fa {
      position: absolute;
      right: 0;
      top: 5px;
      color: #ffffff;
      font-size: 1.5rem; }

form.subscribe {
  position: relative; }
  form.subscribe input[type="submit"] {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    height: 36px;
    width: 40px;
    opacity: 0; }
  form.subscribe p {
    display: none; }
  form.subscribe p.success {
    color: limegreen; }
  form.subscribe p.error {
    color: red; }
  form.subscribe.state-success p.success {
    display: block; }
  form.subscribe.state-success p.error {
    display: none; }
  form.subscribe.state-error p.success {
    display: none; }
  form.subscribe.state-error p.error {
    display: block; }

footer a:hover {
  color: #666666; }

a:hover {
  opacity: 0.8; }

/*a:hover > img {
	opacity: 0.8;
}*/
.button:hover {
  background-color: #AAAAAA;
  color: #000000; }

.button-hollow:hover {
  border: 1px solid #000000;
  background-color: #000000;
  color: #ffffff; }
  .button-hollow:hover .fa,
  .button-hollow:hover span {
    color: #ffffff; }

.button-white:hover {
  background-color: #ffffff;
  color: #000000; }

@media print, screen and (min-width: 64em) {
  .buy:hover span {
    display: inline-block; } }

.buy:hover a:hover {
  opacity: 0.6; }

.featured-box a:hover {
  border: 1px solid #000000;
  background-color: #000000; }

.share:hover em {
  display: none; }

.share:hover a {
  display: inline-block; }

.links .fa:hover {
  opacity: 0.6; }

@keyframes play-pulse {
  0% {
    opacity: 0; }
  25% {
    opacity: 1; }
  75% {
    opacity: 1; }
  100% {
    opacity: 1; } }

.hamburger {
  display: inline-block;
  width: 35px;
  height: 30px;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer; }

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out; }

.hamburger span:nth-child(1) {
  top: 2px; }

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 9px; }

.hamburger span:nth-child(4) {
  top: 16px; }

#ff-stream-1 .ff-loadmore-wrapper .ff-btn {
  border-radius: 0;
  background-color: #222222;
  padding-top: 14px; }

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

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