@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

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

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

Stylesheet: Mixins & Constants Stylesheet

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

******************************************************************/
/*********************
TOOLS
*********************/
@import url("//hello.myfonts.net/count/333feb");
.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=40em&large=64em&xlarge=75em&xxlarge=90em"; }

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

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

body {
  margin: 0;
  padding: 0;
  background: #000000;
  font-family: TTLakes-Regular;
  font-weight: normal;
  line-height: 1.5;
  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: 90rem;
  margin-right: auto;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .row .row {
    margin-right: -1.25rem;
    margin-left: -1.25rem; }
    @media print, screen and (min-width: 40em) {
      .row .row {
        margin-right: -1.25rem;
        margin-left: -1.25rem; } }
    @media print, screen and (min-width: 64em) {
      .row .row {
        margin-right: -1.875rem;
        margin-left: -1.875rem; } }
    @media screen and (min-width: 75em) {
      .row .row {
        margin-right: -1.875rem;
        margin-left: -1.875rem; } }
    @media screen and (min-width: 90em) {
      .row .row {
        margin-right: -1.875rem;
        margin-left: -1.875rem; } }
  .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: 1.25rem;
  padding-left: 1.25rem;
  min-width: initial; }
  @media print, screen and (min-width: 40em) {
    .column, .columns {
      padding-right: 1.25rem;
      padding-left: 1.25rem; } }
  @media print, screen and (min-width: 64em) {
    .column, .columns {
      padding-right: 1.875rem;
      padding-left: 1.875rem; } }

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

@media print, screen and (min-width: 40em) {
  .medium-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-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: 40em) and (min-width: 40em) {
  .medium-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

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

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

@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: 1.875rem;
    padding-left: 1.875rem; } }

@media screen and (min-width: 75em) {
  .xlarge-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-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: 75em) and (min-width: 75em) {
  .xlarge-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

@media screen and (min-width: 75em) {
  .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: 75em) {
    .row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

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

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

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

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

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

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

.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: 40em) {
  .medium-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .medium-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .medium-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .medium-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .medium-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .medium-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

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

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

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

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: 2rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility; }

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: TTLakes-Regular;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #cacaca; }

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

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

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

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

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

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

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

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

a {
  line-height: inherit;
  color: #7486E8;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: #4a62e1; }
  a img {
    border: 0; }

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

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

li {
  font-size: inherit; }

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

ol {
  margin-left: 1.25rem; }

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

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

blockquote {
  margin: 0 0 2rem;
  padding: 0.5625rem 2rem 0 2rem;
  border-left: 0; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #000000; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a; }
  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 #cacaca;
  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: #8a8a8a; }

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

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

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

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

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

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

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

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

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

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

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

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

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

[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 #cacaca;
  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 #8a8a8a;
    background-color: #ffffff;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

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

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

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

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: 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 #cacaca;
  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 #cacaca; }
  .fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem;
    background: #000000; }

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #cacaca;
  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%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #ffffff;
    box-shadow: 0 0 5px #cacaca;
    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: #cc4b37;
  background-color: #faedeb; }
  .is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37; }

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

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

.responsive-embed, .flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 56.25%;
  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%; }
  .responsive-embed.square, .flex-video.square {
    padding-bottom: 100%; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 89.9375em) {
  .show-for-xxlarge-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; }

/**
 * @license
 * MyFonts Webfont Build ID 3358699, 2017-03-13T23:03:17-0400
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: TTLakes-BlackItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/black-italic/
 * 
 * Webfont: TTLakes-Black by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/black/
 * 
 * Webfont: TTLakesCompressed-BlackItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-black-italic/
 * 
 * Webfont: TTLakesCompressed-Black by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-black/
 * 
 * Webfont: TTLakes-Bold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/bold/
 * 
 * Webfont: TTLakes-BoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/bold-italic/
 * 
 * Webfont: TTLakesCompressed-BoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-bold-italic/
 * 
 * Webfont: TTLakesCompressed-Bold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-bold/
 * 
 * Webfont: TTLakesCompressed-ExtraBold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-extra-bold/
 * 
 * Webfont: TTLakesCompressed-DemiBoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-demi-bold-italic/
 * 
 * Webfont: TTLakesCompressed-DemiBold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-demi-bold/
 * 
 * Webfont: TTLakesCompressed-ExtraBoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-extra-bold-italic/
 * 
 * Webfont: TTLakesCompressed-ExtraLightItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-extra-light-italic/
 * 
 * Webfont: TTLakesCompressed-Italic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-italic/
 * 
 * Webfont: TTLakesCompressed-ExtraLight by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-extra-light/
 * 
 * Webfont: TTLakesCompressed-LightItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-light-italic/
 * 
 * Webfont: TTLakesCompressed-Light by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-light/
 * 
 * Webfont: TTLakesCompressed-Medium by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-medium/
 * 
 * Webfont: TTLakesCompressed-ThinItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-thin-italic/
 * 
 * Webfont: TTLakesCompressed-Regular by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-regular/
 * 
 * Webfont: TTLakesCompressed-MediumItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-medium-italic/
 * 
 * Webfont: TTLakesCompressed-Thin by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/compressed-thin/
 * 
 * Webfont: TTLakesCondensed-BlackItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-black-italic/
 * 
 * Webfont: TTLakesCondensed-Black by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-black/
 * 
 * Webfont: TTLakesCondensed-BoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-bold-italic/
 * 
 * Webfont: TTLakesCondensed-Bold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-bold/
 * 
 * Webfont: TTLakesCondensed-DemiBoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-demi-bold-italic/
 * 
 * Webfont: TTLakesCondensed-DemiBold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-demi-bold/
 * 
 * Webfont: TTLakesCondensed-ExtraBoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-extra-bold-italic/
 * 
 * Webfont: TTLakesCondensed-ExtraBold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-extra-bold/
 * 
 * Webfont: TTLakesCondensed-ExtraLight by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-extra-light/
 * 
 * Webfont: TTLakesCondensed-ExtraLightItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-extra-light-italic/
 * 
 * Webfont: TTLakesCondensed-Italic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-italic/
 * 
 * Webfont: TTLakesCondensed-Light by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-light/
 * 
 * Webfont: TTLakesCondensed-MediumItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-medium-italic/
 * 
 * Webfont: TTLakesCondensed-LightItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-light-italic/
 * 
 * Webfont: TTLakesCondensed-Regular by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-regular/
 * 
 * Webfont: TTLakesCondensed-Medium by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-medium/
 * 
 * Webfont: TTLakesCondensed-ThinItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-thin-italic/
 * 
 * Webfont: TTLakesCondensed-Thin by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/condensed-thin/
 * 
 * Webfont: TTLakes-DemiBoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/demi-bold-italic/
 * 
 * Webfont: TTLakes-DemiBold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/demi-bold/
 * 
 * Webfont: TTLakes-ExtraBoldItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/extra-bold-italic/
 * 
 * Webfont: TTLakes-ExtraBold by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/extra-bold/
 * 
 * Webfont: TTLakes-ExtraLightItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/extra-light-italic/
 * 
 * Webfont: TTLakes-ExtraLight by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/extra-light/
 * 
 * Webfont: TTLakes-Italic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/italic/
 * 
 * Webfont: TTLakes-LightItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/light-italic/
 * 
 * Webfont: TTLakes-MediumItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/medium-italic/
 * 
 * Webfont: TTLakes-Light by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/light/
 * 
 * Webfont: TTLakes-Medium by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/medium/
 * 
 * Webfont: TTLakes-ThinItalic by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/thin-italic/
 * 
 * Webfont: TTLakes-Regular by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/regular/
 * 
 * Webfont: TTLakes-Thin by TypeType
 * URL: http://www.myfonts.com/fonts/type-type/tt-lakes/thin/
 * 
 * 
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3358699
 * Licensed pageviews: 20,000
 * Webfonts copyright: Copyright (c) 2016 by Typetype. Designer Ivan Gladkikh, technical designers Olga Yumartova, Olexa Volochay. All rights reserved.
 * 
 * © 2017 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
@font-face {
  font-family: 'TTLakes-BlackItalic';
  src: url("../webfonts/333FEB_0_0.eot");
  src: url("../webfonts/333FEB_0_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_0_0.woff2") format("woff2"), url("../webfonts/333FEB_0_0.woff") format("woff"), url("../webfonts/333FEB_0_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-Black';
  src: url("../webfonts/333FEB_1_0.eot");
  src: url("../webfonts/333FEB_1_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_1_0.woff2") format("woff2"), url("../webfonts/333FEB_1_0.woff") format("woff"), url("../webfonts/333FEB_1_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-BlackItalic';
  src: url("../webfonts/333FEB_2_0.eot");
  src: url("../webfonts/333FEB_2_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_2_0.woff2") format("woff2"), url("../webfonts/333FEB_2_0.woff") format("woff"), url("../webfonts/333FEB_2_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-Black';
  src: url("../webfonts/333FEB_3_0.eot");
  src: url("../webfonts/333FEB_3_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_3_0.woff2") format("woff2"), url("../webfonts/333FEB_3_0.woff") format("woff"), url("../webfonts/333FEB_3_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-Bold';
  src: url("../webfonts/333FEB_4_0.eot");
  src: url("../webfonts/333FEB_4_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_4_0.woff2") format("woff2"), url("../webfonts/333FEB_4_0.woff") format("woff"), url("../webfonts/333FEB_4_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-BoldItalic';
  src: url("../webfonts/333FEB_5_0.eot");
  src: url("../webfonts/333FEB_5_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_5_0.woff2") format("woff2"), url("../webfonts/333FEB_5_0.woff") format("woff"), url("../webfonts/333FEB_5_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-BoldItalic';
  src: url("../webfonts/333FEB_6_0.eot");
  src: url("../webfonts/333FEB_6_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_6_0.woff2") format("woff2"), url("../webfonts/333FEB_6_0.woff") format("woff"), url("../webfonts/333FEB_6_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-Bold';
  src: url("../webfonts/333FEB_7_0.eot");
  src: url("../webfonts/333FEB_7_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_7_0.woff2") format("woff2"), url("../webfonts/333FEB_7_0.woff") format("woff"), url("../webfonts/333FEB_7_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-ExtraBold';
  src: url("../webfonts/333FEB_8_0.eot");
  src: url("../webfonts/333FEB_8_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_8_0.woff2") format("woff2"), url("../webfonts/333FEB_8_0.woff") format("woff"), url("../webfonts/333FEB_8_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-DemiBoldItalic';
  src: url("../webfonts/333FEB_9_0.eot");
  src: url("../webfonts/333FEB_9_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_9_0.woff2") format("woff2"), url("../webfonts/333FEB_9_0.woff") format("woff"), url("../webfonts/333FEB_9_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-DemiBold';
  src: url("../webfonts/333FEB_A_0.eot");
  src: url("../webfonts/333FEB_A_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_A_0.woff2") format("woff2"), url("../webfonts/333FEB_A_0.woff") format("woff"), url("../webfonts/333FEB_A_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-ExtraBoldItalic';
  src: url("../webfonts/333FEB_B_0.eot");
  src: url("../webfonts/333FEB_B_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_B_0.woff2") format("woff2"), url("../webfonts/333FEB_B_0.woff") format("woff"), url("../webfonts/333FEB_B_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-ExtraLightItalic';
  src: url("../webfonts/333FEB_C_0.eot");
  src: url("../webfonts/333FEB_C_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_C_0.woff2") format("woff2"), url("../webfonts/333FEB_C_0.woff") format("woff"), url("../webfonts/333FEB_C_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-Italic';
  src: url("../webfonts/333FEB_D_0.eot");
  src: url("../webfonts/333FEB_D_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_D_0.woff2") format("woff2"), url("../webfonts/333FEB_D_0.woff") format("woff"), url("../webfonts/333FEB_D_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-ExtraLight';
  src: url("../webfonts/333FEB_E_0.eot");
  src: url("../webfonts/333FEB_E_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_E_0.woff2") format("woff2"), url("../webfonts/333FEB_E_0.woff") format("woff"), url("../webfonts/333FEB_E_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-LightItalic';
  src: url("../webfonts/333FEB_F_0.eot");
  src: url("../webfonts/333FEB_F_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_F_0.woff2") format("woff2"), url("../webfonts/333FEB_F_0.woff") format("woff"), url("../webfonts/333FEB_F_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-Light';
  src: url("../webfonts/333FEB_10_0.eot");
  src: url("../webfonts/333FEB_10_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_10_0.woff2") format("woff2"), url("../webfonts/333FEB_10_0.woff") format("woff"), url("../webfonts/333FEB_10_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-Medium';
  src: url("../webfonts/333FEB_11_0.eot");
  src: url("../webfonts/333FEB_11_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_11_0.woff2") format("woff2"), url("../webfonts/333FEB_11_0.woff") format("woff"), url("../webfonts/333FEB_11_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-ThinItalic';
  src: url("../webfonts/333FEB_12_0.eot");
  src: url("../webfonts/333FEB_12_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_12_0.woff2") format("woff2"), url("../webfonts/333FEB_12_0.woff") format("woff"), url("../webfonts/333FEB_12_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-Regular';
  src: url("../webfonts/333FEB_13_0.eot");
  src: url("../webfonts/333FEB_13_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_13_0.woff2") format("woff2"), url("../webfonts/333FEB_13_0.woff") format("woff"), url("../webfonts/333FEB_13_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-MediumItalic';
  src: url("../webfonts/333FEB_14_0.eot");
  src: url("../webfonts/333FEB_14_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_14_0.woff2") format("woff2"), url("../webfonts/333FEB_14_0.woff") format("woff"), url("../webfonts/333FEB_14_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCompressed-Thin';
  src: url("../webfonts/333FEB_15_0.eot");
  src: url("../webfonts/333FEB_15_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_15_0.woff2") format("woff2"), url("../webfonts/333FEB_15_0.woff") format("woff"), url("../webfonts/333FEB_15_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-BlackItalic';
  src: url("../webfonts/333FEB_16_0.eot");
  src: url("../webfonts/333FEB_16_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_16_0.woff2") format("woff2"), url("../webfonts/333FEB_16_0.woff") format("woff"), url("../webfonts/333FEB_16_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-Black';
  src: url("../webfonts/333FEB_17_0.eot");
  src: url("../webfonts/333FEB_17_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_17_0.woff2") format("woff2"), url("../webfonts/333FEB_17_0.woff") format("woff"), url("../webfonts/333FEB_17_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-BoldItalic';
  src: url("../webfonts/333FEB_18_0.eot");
  src: url("../webfonts/333FEB_18_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_18_0.woff2") format("woff2"), url("../webfonts/333FEB_18_0.woff") format("woff"), url("../webfonts/333FEB_18_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-Bold';
  src: url("../webfonts/333FEB_19_0.eot");
  src: url("../webfonts/333FEB_19_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_19_0.woff2") format("woff2"), url("../webfonts/333FEB_19_0.woff") format("woff"), url("../webfonts/333FEB_19_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-DemiBoldItalic';
  src: url("../webfonts/333FEB_1A_0.eot");
  src: url("../webfonts/333FEB_1A_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_1A_0.woff2") format("woff2"), url("../webfonts/333FEB_1A_0.woff") format("woff"), url("../webfonts/333FEB_1A_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-DemiBold';
  src: url("../webfonts/333FEB_1B_0.eot");
  src: url("../webfonts/333FEB_1B_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_1B_0.woff2") format("woff2"), url("../webfonts/333FEB_1B_0.woff") format("woff"), url("../webfonts/333FEB_1B_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-ExtraBoldItalic';
  src: url("../webfonts/333FEB_1C_0.eot");
  src: url("../webfonts/333FEB_1C_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_1C_0.woff2") format("woff2"), url("../webfonts/333FEB_1C_0.woff") format("woff"), url("../webfonts/333FEB_1C_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-ExtraBold';
  src: url("../webfonts/333FEB_1D_0.eot");
  src: url("../webfonts/333FEB_1D_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_1D_0.woff2") format("woff2"), url("../webfonts/333FEB_1D_0.woff") format("woff"), url("../webfonts/333FEB_1D_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-ExtraLight';
  src: url("../webfonts/333FEB_1E_0.eot");
  src: url("../webfonts/333FEB_1E_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_1E_0.woff2") format("woff2"), url("../webfonts/333FEB_1E_0.woff") format("woff"), url("../webfonts/333FEB_1E_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-ExtraLightItalic';
  src: url("../webfonts/333FEB_1F_0.eot");
  src: url("../webfonts/333FEB_1F_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_1F_0.woff2") format("woff2"), url("../webfonts/333FEB_1F_0.woff") format("woff"), url("../webfonts/333FEB_1F_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-Italic';
  src: url("../webfonts/333FEB_20_0.eot");
  src: url("../webfonts/333FEB_20_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_20_0.woff2") format("woff2"), url("../webfonts/333FEB_20_0.woff") format("woff"), url("../webfonts/333FEB_20_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-Light';
  src: url("../webfonts/333FEB_21_0.eot");
  src: url("../webfonts/333FEB_21_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_21_0.woff2") format("woff2"), url("../webfonts/333FEB_21_0.woff") format("woff"), url("../webfonts/333FEB_21_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-MediumItalic';
  src: url("../webfonts/333FEB_22_0.eot");
  src: url("../webfonts/333FEB_22_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_22_0.woff2") format("woff2"), url("../webfonts/333FEB_22_0.woff") format("woff"), url("../webfonts/333FEB_22_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-LightItalic';
  src: url("../webfonts/333FEB_23_0.eot");
  src: url("../webfonts/333FEB_23_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_23_0.woff2") format("woff2"), url("../webfonts/333FEB_23_0.woff") format("woff"), url("../webfonts/333FEB_23_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-Regular';
  src: url("../webfonts/333FEB_24_0.eot");
  src: url("../webfonts/333FEB_24_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_24_0.woff2") format("woff2"), url("../webfonts/333FEB_24_0.woff") format("woff"), url("../webfonts/333FEB_24_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-Medium';
  src: url("../webfonts/333FEB_25_0.eot");
  src: url("../webfonts/333FEB_25_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_25_0.woff2") format("woff2"), url("../webfonts/333FEB_25_0.woff") format("woff"), url("../webfonts/333FEB_25_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-ThinItalic';
  src: url("../webfonts/333FEB_26_0.eot");
  src: url("../webfonts/333FEB_26_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_26_0.woff2") format("woff2"), url("../webfonts/333FEB_26_0.woff") format("woff"), url("../webfonts/333FEB_26_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakesCondensed-Thin';
  src: url("../webfonts/333FEB_27_0.eot");
  src: url("../webfonts/333FEB_27_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_27_0.woff2") format("woff2"), url("../webfonts/333FEB_27_0.woff") format("woff"), url("../webfonts/333FEB_27_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-DemiBoldItalic';
  src: url("../webfonts/333FEB_28_0.eot");
  src: url("../webfonts/333FEB_28_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_28_0.woff2") format("woff2"), url("../webfonts/333FEB_28_0.woff") format("woff"), url("../webfonts/333FEB_28_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-DemiBold';
  src: url("../webfonts/333FEB_29_0.eot");
  src: url("../webfonts/333FEB_29_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_29_0.woff2") format("woff2"), url("../webfonts/333FEB_29_0.woff") format("woff"), url("../webfonts/333FEB_29_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-ExtraBoldItalic';
  src: url("../webfonts/333FEB_2A_0.eot");
  src: url("../webfonts/333FEB_2A_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_2A_0.woff2") format("woff2"), url("../webfonts/333FEB_2A_0.woff") format("woff"), url("../webfonts/333FEB_2A_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-ExtraBold';
  src: url("../webfonts/333FEB_2B_0.eot");
  src: url("../webfonts/333FEB_2B_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_2B_0.woff2") format("woff2"), url("../webfonts/333FEB_2B_0.woff") format("woff"), url("../webfonts/333FEB_2B_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-ExtraLightItalic';
  src: url("../webfonts/333FEB_2C_0.eot");
  src: url("../webfonts/333FEB_2C_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_2C_0.woff2") format("woff2"), url("../webfonts/333FEB_2C_0.woff") format("woff"), url("../webfonts/333FEB_2C_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-ExtraLight';
  src: url("../webfonts/333FEB_2D_0.eot");
  src: url("../webfonts/333FEB_2D_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_2D_0.woff2") format("woff2"), url("../webfonts/333FEB_2D_0.woff") format("woff"), url("../webfonts/333FEB_2D_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-Italic';
  src: url("../webfonts/333FEB_2E_0.eot");
  src: url("../webfonts/333FEB_2E_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_2E_0.woff2") format("woff2"), url("../webfonts/333FEB_2E_0.woff") format("woff"), url("../webfonts/333FEB_2E_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-LightItalic';
  src: url("../webfonts/333FEB_2F_0.eot");
  src: url("../webfonts/333FEB_2F_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_2F_0.woff2") format("woff2"), url("../webfonts/333FEB_2F_0.woff") format("woff"), url("../webfonts/333FEB_2F_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-MediumItalic';
  src: url("../webfonts/333FEB_30_0.eot");
  src: url("../webfonts/333FEB_30_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_30_0.woff2") format("woff2"), url("../webfonts/333FEB_30_0.woff") format("woff"), url("../webfonts/333FEB_30_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-Light';
  src: url("../webfonts/333FEB_31_0.eot");
  src: url("../webfonts/333FEB_31_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_31_0.woff2") format("woff2"), url("../webfonts/333FEB_31_0.woff") format("woff"), url("../webfonts/333FEB_31_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-Medium';
  src: url("../webfonts/333FEB_32_0.eot");
  src: url("../webfonts/333FEB_32_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_32_0.woff2") format("woff2"), url("../webfonts/333FEB_32_0.woff") format("woff"), url("../webfonts/333FEB_32_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-ThinItalic';
  src: url("../webfonts/333FEB_33_0.eot");
  src: url("../webfonts/333FEB_33_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_33_0.woff2") format("woff2"), url("../webfonts/333FEB_33_0.woff") format("woff"), url("../webfonts/333FEB_33_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-Regular';
  src: url("../webfonts/333FEB_34_0.eot");
  src: url("../webfonts/333FEB_34_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_34_0.woff2") format("woff2"), url("../webfonts/333FEB_34_0.woff") format("woff"), url("../webfonts/333FEB_34_0.ttf") format("truetype"); }

@font-face {
  font-family: 'TTLakes-Thin';
  src: url("../webfonts/333FEB_35_0.eot");
  src: url("../webfonts/333FEB_35_0.eot?#iefix") format("embedded-opentype"), url("../webfonts/333FEB_35_0.woff2") format("woff2"), url("../webfonts/333FEB_35_0.woff") format("woff"), url("../webfonts/333FEB_35_0.ttf") format("truetype"); }

.TTLakes-BlackItalic {
  font-family: TTLakes-BlackItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-Black {
  font-family: TTLakes-Black;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-BlackItalic {
  font-family: TTLakesCompressed-BlackItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-Black {
  font-family: TTLakesCompressed-Black;
  font-weight: normal;
  font-style: normal; }

.TTLakes-Bold {
  font-family: TTLakes-Bold;
  font-weight: normal;
  font-style: normal; }

.TTLakes-BoldItalic {
  font-family: TTLakes-BoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-BoldItalic {
  font-family: TTLakesCompressed-BoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-Bold {
  font-family: TTLakesCompressed-Bold;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-ExtraBold {
  font-family: TTLakesCompressed-ExtraBold;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-DemiBoldItalic {
  font-family: TTLakesCompressed-DemiBoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-DemiBold, .title-bar h1, .post-thumbnails h2, .type-post .follow h2, .type-page h2, .type-project .article-details h2, .type-project .article-details .credits li strong, .type-project .strands span, .related-posts a, .related-posts h2, .recent-projects h3, .recent-projects .thumbnails h2, .content-cards ul.categories,
.content-cards ul.subcategories, .content-cards .categories-dropdown .current-category, .content-cards .card h2, .content-cards .cards-text h2, .content-goods h2, .content-goods .product h2, .top-image h2, .timeline-container .categories, .timeline-container .dot-info h3 {
  font-family: TTLakesCompressed-DemiBold;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-ExtraBoldItalic {
  font-family: TTLakesCompressed-ExtraBoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-ExtraLightItalic {
  font-family: TTLakesCompressed-ExtraLightItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-Italic {
  font-family: TTLakesCompressed-Italic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-ExtraLight, .title-bar h1 em {
  font-family: TTLakesCompressed-ExtraLight;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-LightItalic {
  font-family: TTLakesCompressed-LightItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-Light, .main-menu a {
  font-family: TTLakesCompressed-Light;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-Medium, nav h3, .top-image h4 {
  font-family: TTLakesCompressed-Medium;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-ThinItalic {
  font-family: TTLakesCompressed-ThinItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-Regular, .type-project .article-details h3, .type-project .article-details .credits li, .recent-projects .thumbnails h2 .project-date, .content-cards .card h2 .project-date, .timeline-container .dot-info h4 {
  font-family: TTLakesCompressed-Regular;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-MediumItalic {
  font-family: TTLakesCompressed-MediumItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCompressed-Thin {
  font-family: TTLakesCompressed-Thin;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-BlackItalic {
  font-family: TTLakesCondensed-BlackItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-Black {
  font-family: TTLakesCondensed-Black;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-BoldItalic {
  font-family: TTLakesCondensed-BoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-Bold {
  font-family: TTLakesCondensed-Bold;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-DemiBoldItalic {
  font-family: TTLakesCondensed-DemiBoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-DemiBold, .type-project .etc strong, .next-previous, #comments h2.comments-title,
#comments h3#reply-title, .search-results-items h2, .search-results-items .search-result h3, .share span {
  font-family: TTLakesCondensed-DemiBold;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-ExtraBoldItalic {
  font-family: TTLakesCondensed-ExtraBoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-ExtraBold {
  font-family: TTLakesCondensed-ExtraBold;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-ExtraLight {
  font-family: TTLakesCondensed-ExtraLight;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-ExtraLightItalic {
  font-family: TTLakesCondensed-ExtraLightItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-Italic {
  font-family: TTLakesCondensed-Italic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-Light {
  font-family: TTLakesCondensed-Light;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-MediumItalic {
  font-family: TTLakesCondensed-MediumItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-LightItalic {
  font-family: TTLakesCondensed-LightItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-Regular, blockquote, .icon-links a em, .type-project .etc ul, .albums .album-large h3 {
  font-family: TTLakesCondensed-Regular;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-Medium, blockquote strong, .albums .album-large h2 {
  font-family: TTLakesCondensed-Medium;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-ThinItalic {
  font-family: TTLakesCondensed-ThinItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakesCondensed-Thin {
  font-family: TTLakesCondensed-Thin;
  font-weight: normal;
  font-style: normal; }

.TTLakes-DemiBoldItalic {
  font-family: TTLakes-DemiBoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-DemiBold, p.caption strong, .type-project .cta p strong, .button, .jetpack_subscription_widget input[type="submit"], .icon-links a, .type-project .etc h3 {
  font-family: TTLakes-DemiBold;
  font-weight: normal;
  font-style: normal; }

.TTLakes-ExtraBoldItalic {
  font-family: TTLakes-ExtraBoldItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-ExtraBold {
  font-family: TTLakes-ExtraBold;
  font-weight: normal;
  font-style: normal; }

.TTLakes-ExtraLightItalic {
  font-family: TTLakes-ExtraLightItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-ExtraLight {
  font-family: TTLakes-ExtraLight;
  font-weight: normal;
  font-style: normal; }

.TTLakes-Italic {
  font-family: TTLakes-Italic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-LightItalic {
  font-family: TTLakes-LightItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-MediumItalic {
  font-family: TTLakes-MediumItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-Light {
  font-family: TTLakes-Light;
  font-weight: normal;
  font-style: normal; }

.TTLakes-Medium, .top-image h3 {
  font-family: TTLakes-Medium;
  font-weight: normal;
  font-style: normal; }

.TTLakes-ThinItalic {
  font-family: TTLakes-ThinItalic;
  font-weight: normal;
  font-style: normal; }

.TTLakes-Regular {
  font-family: TTLakes-Regular;
  font-weight: normal;
  font-style: normal; }

.TTLakes-Thin {
  font-family: TTLakes-Thin;
  font-weight: normal;
  font-style: normal; }

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

html {
  font-size: 16px;
  background-color: #000000; }

p {
  font-size: 1.125rem; }

article {
  width: 100%; }

blockquote {
  color: #676767; }
  blockquote p {
    font-size: 1.375rem;
    color: #676767;
    line-height: 1.3; }
  blockquote strong {
    color: #000000;
    font-size: 1.125rem; }

iframe {
  margin-bottom: 2rem; }

#content {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  position: relative; }
  #content main {
    width: 100%; }
    @media print, screen and (min-width: 40em) {
      #content main {
        width: calc(100% - 70px); } }

iframe {
  max-width: 100%; }

body {
  overflow-x: hidden; }

main {
  background-color: #ffffff;
  background-image: url(../images/paper.png);
  background-attachment: fixed; }

nav {
  background-color: #061045;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-top: 10px;
  margin-right: 10px; }
  @media print, screen and (min-width: 40em) {
    nav {
      margin-top: 0;
      margin-right: 0;
      height: 100%;
      width: 70px;
      border-radius: 0; } }
  nav .toggler {
    cursor: pointer;
    position: fixed;
    z-index: 110;
    width: 70px; }
  nav h3 {
    font-size: 0.75rem;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 1;
    transition: opacity 500ms;
    display: none; }
    @media print, screen and (min-width: 40em) {
      nav h3 {
        display: block; } }
  nav .hamburger {
    z-index: 400; }
  nav form {
    width: 250px;
    position: relative;
    float: right; }
    nav form input[type="text"],
    nav form input[type="text"]:focus {
      -webkit-appearance: none;
      box-shadow: none;
      border: 0;
      color: #000000;
      background-color: transparent;
      border-bottom: 1px solid #000000;
      padding: 0; }
    nav form input[type="submit"] {
      cursor: pointer;
      position: absolute;
      right: 0;
      top: 0;
      z-index: 1;
      height: 36px;
      width: 40px;
      opacity: 0; }
    nav form .fa {
      position: absolute;
      right: 0;
      top: 6px;
      color: #000000;
      font-size: 1.5rem; }
  nav .icons {
    position: absolute;
    bottom: 0.5rem;
    width: 100%;
    text-align: center; }
    @media screen and (max-width: 39.9375em) {
      nav .icons {
        display: none; } }
    nav .icons a {
      opacity: 0.5;
      color: #ffffff;
      font-size: 1.25rem;
      display: block;
      text-align: center; }

p.caption, .type-project .cta p {
  font-size: 0.6875rem;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0.5rem 0; }

.button, .jetpack_subscription_widget input[type="submit"] {
  letter-spacing: 1px;
  font-size: 0.875rem;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 2rem;
  height: 42px;
  line-height: 42px;
  color: #4A4A4A;
  background: linear-gradient(180deg, #F2F2F2 0%, #D4D4D4 100%);
  box-shadow: inset 0 2px 0 0 #FFFFFF, 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid #979797;
  text-align: center; }
  .button.button-rectangular, .jetpack_subscription_widget input.button-rectangular[type="submit"] {
    background: none;
    color: #ffffff;
    background-color: #8A91B5;
    box-shadow: none;
    border: 0;
    padding: 0 1rem; }
  .button.button-narrow, .jetpack_subscription_widget input.button-narrow[type="submit"] {
    padding: 0 1rem; }

.main-menu {
  position: fixed;
  top: 0;
  width: 0;
  overflow: hidden;
  height: 100%;
  background-color: #ffffff;
  z-index: 100;
  transition: right 500ms;
  right: -100%;
  width: 100%; }
  .main-menu .wrapper {
    height: 100vh;
    position: relative;
    width: 100%; }
  .main-menu .links {
    padding: 2rem 0 2rem 0;
    position: absolute;
    right: 1rem;
    bottom: 0;
    width: 300px;
    z-index: 5; }
    @media print, screen and (min-width: 40em) {
      .main-menu .links {
        width: 320px;
        padding: 2rem 0 3rem 0; } }
    @media print, screen and (min-width: 64em) {
      .main-menu .links {
        width: 380px; } }
  .main-menu a {
    text-transform: uppercase;
    color: #000000;
    display: block;
    text-align: right;
    line-height: 1;
    margin: 1rem 0;
    font-size: 1.75rem; }
    @media print, screen and (min-width: 40em) {
      .main-menu a {
        margin: 1rem 0;
        font-size: 2.5rem; } }
    @media print, screen and (min-width: 64em) {
      .main-menu a {
        margin: 2rem 0;
        font-size: 3.75rem; } }
    @media screen and (max-height: 920px) {
      .main-menu a {
        margin: 1rem 0;
        font-size: 2.75rem; } }
    @media screen and (max-height: 600px) {
      .main-menu a {
        margin: 1rem 0;
        font-size: 2rem; } }
  .main-menu a.goodies {
    font-size: 1.25rem; }
    @media print, screen and (min-width: 40em) {
      .main-menu a.goodies {
        font-size: 1.75rem; } }
    @media print, screen and (min-width: 64em) {
      .main-menu a.goodies {
        font-size: 2rem; } }
    @media screen and (max-height: 920px) {
      .main-menu a.goodies {
        font-size: 1.75rem; } }
    @media screen and (max-height: 600px) {
      .main-menu a.goodies {
        font-size: 1.375rem; } }
    .main-menu a.goodies .fa {
      margin-right: 4px; }
  .main-menu a.logout {
    font-size: 1.25rem !important;
    display: block; }
  .main-menu a.active {
    color: #7486E8; }

@media print, screen and (min-width: 40em) {
  body.home .title-bar {
    margin-bottom: 0; } }

body.page-is-loading .title-bar h1 em {
  opacity: 0; }

body.page-is-loading .content-area {
  opacity: 0; }

body.page-is-loading .image-video-sound .wrapper {
  filter: blur(60px);
  transform: scale(1.3); }

body.page-is-loading .top-image .background {
  filter: blur(40px);
  transform: scale(1.3); }

body.main-menu-is-open .hamburger {
  margin-left: 0; }

body.main-menu-is-open .hamburger span {
  background-color: #000000; }

body.main-menu-is-open .hamburger span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%; }

body.main-menu-is-open .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  width: 40px; }
  @media print, screen and (min-width: 40em) {
    body.main-menu-is-open .hamburger span:nth-child(2) {
      width: 60px; } }

body.main-menu-is-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  width: 40px; }
  @media print, screen and (min-width: 40em) {
    body.main-menu-is-open .hamburger span:nth-child(3) {
      width: 60px; } }

body.main-menu-is-open .hamburger span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%; }

body.main-menu-is-open .main-menu {
  right: 0; }

body.main-menu-is-open nav {
  background-color: #000000; }
  body.main-menu-is-open nav h3 {
    opacity: 0; }

.content-padding {
  padding: 0 1.5rem;
  padding: 0; }

.content-area {
  overflow-x: hidden;
  min-height: 80vh; }

.title-bar {
  height: auto; }
  @media screen and (max-width: 39.9375em) {
    .title-bar {
      margin-bottom: 0.5rem;
      width: calc(100% - 40px); } }
  @media print, screen and (min-width: 40em) {
    .title-bar {
      margin-bottom: 1rem; } }
  @media print, screen and (min-width: 64em) {
    .title-bar {
      height: 7.5rem; } }
  .title-bar h1 {
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    color: #061045;
    padding: 1rem 0; }
    @media print, screen and (min-width: 64em) {
      .title-bar h1 {
        padding: 2rem 0; } }
    .title-bar h1 a {
      color: #061045; }
  .title-bar .column-icons {
    padding-top: 0.75rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start; }
    @media print, screen and (min-width: 40em) {
      .title-bar .column-icons {
        padding-top: 0.75rem; } }
    @media print, screen and (min-width: 64em) {
      .title-bar .column-icons {
        padding-top: 1rem; } }
    .title-bar .column-icons a.circle {
      display: inline-block;
      border-radius: 50%; }
    .title-bar .column-icons a,
    .title-bar .column-icons .button-container {
      margin-left: 0.5rem; }
    .title-bar .column-icons a:first-child {
      margin-left: 0; }
    .title-bar .column-icons a.circle.active {
      background-color: #ddfffc; }
    .title-bar .column-icons img {
      max-width: none;
      height: 60px;
      width: 60px; }
      @media print, screen and (min-width: 40em) {
        .title-bar .column-icons img {
          height: 50px;
          width: 50px; } }
      @media print, screen and (min-width: 64em) {
        .title-bar .column-icons img {
          height: 86px;
          width: 86px; } }
    .title-bar .column-icons a.button-rectangular {
      margin-top: 0.25rem; }
      @media print, screen and (min-width: 40em) {
        .title-bar .column-icons a.button-rectangular {
          margin-top: 0.25rem; } }
      @media print, screen and (min-width: 64em) {
        .title-bar .column-icons a.button-rectangular {
          margin-top: 1.25rem; } }
    .title-bar .column-icons p {
      font-size: 0.6875rem;
      text-align: center;
      margin-top: 4px; }
    .title-bar .column-icons .button-container {
      display: inline-block;
      width: 128px; }
      .title-bar .column-icons .button-container a {
        margin-left: 0; }
      .title-bar .column-icons .button-container p {
        margin-bottom: 0; }

.icon-links a {
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  color: #000000;
  text-transform: uppercase;
  margin: 1rem 0;
  position: relative;
  transition: left 250ms;
  left: 0;
  letter-spacing: 1px;
  -ms-flex-align: center;
  align-items: center; }
  .icon-links a img {
    width: 44px;
    height: 44px;
    margin-right: 10px; }
  .icon-links a em {
    letter-spacing: 0px;
    display: block;
    text-transform: none; }

.post-thumbnails {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  background-color: #000000;
  padding-bottom: 3rem; }
  .post-thumbnails .post-thumbnail {
    overflow: hidden;
    display: block;
    height: 460px;
    position: relative;
    cursor: pointer;
    width: 100%; }
    @media print, screen and (min-width: 40em) {
      .post-thumbnails .post-thumbnail {
        width: 50%; } }
    @media print, screen and (min-width: 64em) {
      .post-thumbnails .post-thumbnail {
        width: 33.333333%; } }
  .post-thumbnails .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform-origin: 50% 50%;
    transition: transform 500ms, filter 500ms;
    z-index: 1;
    filter: blur(50px); }
  .post-thumbnails .background.background--is-loaded {
    filter: blur(0); }
  .post-thumbnails .info {
    color: #ffffff;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 2;
    padding: 1rem;
    background: linear-gradient(to bottom, rgba(76, 76, 76, 0) 0%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 500ms; }
  .post-thumbnails h2 {
    font-size: 2rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 0.25rem; }
  .post-thumbnails h3 {
    font-size: 0.6875rem;
    margin-bottom: 0; }
  .post-thumbnails span {
    padding: 0 5px; }

.type-post {
  margin-bottom: 4rem; }
  .type-post .follow h2 {
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.1; }

.type-page h2 {
  font-size: 2rem;
  line-height: 1.1; }

.type-page .tweets {
  margin: 0 0 2rem 0; }

.type-page .instagram {
  margin-left: -0.5rem;
  margin-right: -0.5rem; }
  .type-page .instagram .column, .type-page .instagram .columns {
    padding-left: 0.5rem;
    padding-right: 0.5rem; }
  .type-page .instagram a {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: block;
    margin-bottom: 1rem; }

.type-project {
  margin-bottom: 10rem; }
  .type-project .article-content {
    position: relative;
    z-index: 1; }
  .type-project .article-details {
    margin-bottom: 2rem; }
    .type-project .article-details h2, .type-project .article-details h3 {
      margin: 0;
      line-height: 1;
      text-transform: uppercase; }
    .type-project .article-details h2 {
      font-size: 2rem;
      margin-bottom: 0.25rem; }
    .type-project .article-details h3 {
      font-size: 1.25rem; }
    .type-project .article-details .credits {
      font-size: 0.875rem;
      line-height: 1.3;
      margin: 2rem 0;
      padding: 0;
      list-style: none;
      text-transform: uppercase; }
      .type-project .article-details .credits li {
        margin: 0.35rem 0; }
        .type-project .article-details .credits li strong {
          margin-right: 10px;
          letter-spacing: 1px; }
  .type-project .related-posts {
    padding-top: 2rem;
    border-top: 1px solid #000000;
    margin-top: 2rem; }
  .type-project .strands {
    position: absolute;
    margin-top: -5rem;
    width: 100%;
    z-index: 0;
    display: none; }
    @media print, screen and (min-width: 40em) {
      .type-project .strands {
        display: block;
        overflow: hidden;
        height: 400px;
        overflow: hidden;
        width: calc(100% - 100px); } }
    .type-project .strands img {
      width: 1440px;
      max-width: 1440px; }
    .type-project .strands .strand {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%; }
      .type-project .strands .strand.strand-0 {
        top: 0; }
      .type-project .strands .strand.strand-1 {
        top: 3rem; }
      .type-project .strands .strand.strand-2 {
        top: 6rem; }
      .type-project .strands .strand.strand-3 {
        top: 9rem; }
      .type-project .strands .strand.strand-4 {
        top: 12rem; }
      .type-project .strands .strand.strand-5 {
        top: 15rem; }
    .type-project .strands span {
      font-size: 1rem;
      text-transform: uppercase;
      position: absolute;
      display: block;
      top: 10.5rem; }
      .type-project .strands span.music-to-picture {
        color: #87a3cb; }
      .type-project .strands span.keynote-speaking {
        color: #a6aebd; }
      .type-project .strands span.recordings {
        color: #9899a0; }
      .type-project .strands span.live-event-production {
        color: #7eb8b6; }
      .type-project .strands span.invention {
        color: #70bdd5; }
      .type-project .strands span.philanthrophy {
        color: #cfad6c; }
  .type-project .ctas {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    margin-bottom: 2rem; }
  .type-project .cta {
    margin-top: 1.5rem; }
    .type-project .cta a {
      min-width: 190px; }
  .type-project .row-icons-etc {
    margin-top: 4rem; }
  .type-project .etc h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin: 1rem 0 0 0;
    letter-spacing: 1px; }
  .type-project .etc ul {
    font-size: 0.875rem;
    margin: 0 0 2rem 0;
    padding: 0;
    list-style: none; }
  .type-project .etc li {
    margin: 0 0 1rem 0;
    line-height: 1.4; }
  .type-project .etc li:last-child {
    margin: 0; }
  .type-project .etc strong {
    display: block;
    letter-spacing: 1px; }
  .type-project .etc span {
    display: block; }

.related-posts .row {
  padding-right: 0.5rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }
  .related-posts .row .column, .related-posts .row .columns {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-bottom: 2rem; }

.related-posts a {
  font-size: 1rem;
  color: #000000;
  display: block; }

.related-posts h2 {
  font-size: 0.875rem;
  text-transform: uppercase; }

.related-posts span {
  display: block;
  line-height: 1.2; }

.related-posts .thumbnail {
  margin-bottom: 0.5rem; }

.related-posts .background {
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform-origin: 50% 50%;
  transition: 500ms transform; }

.related-posts .background:hover {
  transform: scale(1.1); }

.activate {
  display: none; }

.recent-projects {
  display: block; }
  @media screen and (min-width: 48em) {
    .recent-projects {
      display: none; } }
  .recent-projects h3 {
    font-size: 1.5rem;
    text-transform: uppercase; }
    .recent-projects h3 a {
      display: block;
      margin: 1rem auto;
      text-align: center; }
  .recent-projects .thumbnails .column, .recent-projects .thumbnails .columns {
    margin-bottom: 1.5rem; }
  .recent-projects .thumbnails h2 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: top;
    align-items: top; }
    .recent-projects .thumbnails h2 .project-title {
      overflow: hidden;
      -ms-flex-positive: 1;
      flex-grow: 1;
      line-height: 1.2; }
    .recent-projects .thumbnails h2 .project-date {
      -ms-flex-positive: 2;
      flex-grow: 2;
      font-size: 0.75rem;
      text-align: right;
      white-space: nowrap;
      padding-top: 0.1rem; }
  .recent-projects .thumbnails .background {
    background-color: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform-origin: 50% 50%;
    transition: 500ms transform; }
  .recent-projects .card .flex-video {
    margin-bottom: 0.5rem; }

.image-video-sound {
  background-color: #000000;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem; }
  .image-video-sound .wrapper {
    height: 100%;
    filter: blur(0);
    transition: filter 1s, transform 1s;
    transform-origin: 50% 50%;
    transform: scale(1); }
    @media print, screen and (min-width: 40em) {
      .image-video-sound .wrapper {
        display: -ms-flexbox;
        display: flex; } }
  .image-video-sound .carousel {
    height: 100%;
    width: 100%;
    /*
			Fade CSS 
			http://codepen.io/eikeco/pen/MwGRKr
		*/ }
    .image-video-sound .carousel .carousel-cell {
      height: 100%;
      width: 100%;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover; }
    .image-video-sound .carousel .flickity-slider {
      transform: none !important; }
    .image-video-sound .carousel .carousel-cell {
      left: 0 !important;
      opacity: 0;
      transition: opacity 1s ease;
      z-index: -1; }
    .image-video-sound .carousel .carousel-cell.is-selected {
      opacity: 1;
      z-index: 0; }
  .image-video-sound .embed {
    width: 100%;
    height: 100%; }
    .image-video-sound .embed iframe {
      width: 100%;
      height: 100%;
      margin: 0; }
    .image-video-sound .embed .responsive-embed.widescreen,
    .image-video-sound .embed .flex-video.widescreen,
    .image-video-sound .embed .flex-video,
    .image-video-sound .embed p {
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0; }
  .image-video-sound.with-images:not(.with-embed) {
    height: 320px; }
    @media print, screen and (min-width: 64em) {
      .image-video-sound.with-images:not(.with-embed) {
        height: 524px; } }
    .image-video-sound.with-images:not(.with-embed) .carousel {
      width: 100%; }
  .image-video-sound.with-embed:not(.with-images) {
    height: 320px; }
    @media print, screen and (min-width: 64em) {
      .image-video-sound.with-embed:not(.with-images) {
        height: 524px; } }
    .image-video-sound.with-embed:not(.with-images) .embed {
      width: 100%; }
  .image-video-sound.with-images.with-embed {
    height: 640px; }
    @media print, screen and (min-width: 40em) {
      .image-video-sound.with-images.with-embed {
        height: 320px; } }
    @media print, screen and (min-width: 64em) {
      .image-video-sound.with-images.with-embed {
        height: 524px; } }
    .image-video-sound.with-images.with-embed .carousel {
      height: 50%; }
      @media print, screen and (min-width: 40em) {
        .image-video-sound.with-images.with-embed .carousel {
          width: 40%;
          height: 100%; } }
    .image-video-sound.with-images.with-embed .embed {
      height: 50%; }
      @media print, screen and (min-width: 40em) {
        .image-video-sound.with-images.with-embed .embed {
          width: 60%;
          height: 100%; } }

@media print, screen and (min-width: 40em) {
  .content-cards .sticky-categories {
    padding-bottom: 5rem; } }

.content-cards ul.categories,
.content-cards ul.subcategories {
  font-size: 1.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  transition: margin 2s; }
  .content-cards ul.categories li,
  .content-cards ul.subcategories li {
    margin-bottom: 1rem;
    line-height: 1.3; }
  .content-cards ul.categories li.child,
  .content-cards ul.subcategories li.child {
    margin-left: 1.5rem;
    margin-bottom: 0.7rem; }
    .content-cards ul.categories li.child.child-last,
    .content-cards ul.subcategories li.child.child-last {
      margin-bottom: 1.5rem; }
    .content-cards ul.categories li.child a.active,
    .content-cards ul.subcategories li.child a.active {
      color: #7486E8; }
  .content-cards ul.categories a,
  .content-cards ul.subcategories a {
    color: #999999;
    display: block; }
  .content-cards ul.categories a.active,
  .content-cards ul.subcategories a.active {
    color: #061045; }

.content-cards ul.subcategories {
  display: none;
  margin-top: 1.25rem; }

.content-cards li.active ul.subcategories {
  display: block; }

.content-cards .is-stuck ul.categories {
  margin-top: 2rem; }

.content-cards .categories-dropdown .current-category {
  font-size: 1.25rem;
  display: none;
  line-height: 1.3;
  cursor: pointer; }
  .content-cards .categories-dropdown .current-category .fa {
    margin-left: 5px;
    float: right; }

@media screen and (max-width: 39.9375em) {
  .content-cards .categories-dropdown {
    color: #ffffff;
    text-transform: uppercase;
    background-color: #061045;
    padding: 1rem;
    margin-bottom: 1rem; }
    .content-cards .categories-dropdown ul.categories {
      display: none;
      margin-top: 1rem; }
      .content-cards .categories-dropdown ul.categories a {
        color: #ffffff; }
      .content-cards .categories-dropdown ul.categories a.active {
        color: #7486E8; }
    .content-cards .categories-dropdown ul.categories.categories--is-showing {
      display: block; }
    .content-cards .categories-dropdown .current-category {
      display: block; } }

.content-cards .card {
  display: block;
  text-decoration: none;
  margin: 0 0 1.5rem 0; }
  .content-cards .card.card.state--is-playing video {
    opacity: 1;
    transition: 0s opacity; }
  .content-cards .card .flex-video {
    margin-bottom: 0.5rem; }
  .content-cards .card .video {
    width: 100%;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; }
  .content-cards .card video {
    transition: 0s opacity;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 100; }
  .content-cards .card .background {
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform-origin: 50% 50%;
    transition: 500ms transform; }
  .content-cards .card .background:hover {
    transform: scale(1.1); }
  .content-cards .card h2 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: top;
    align-items: top; }
    .content-cards .card h2 .project-title {
      overflow: hidden;
      -ms-flex-positive: 1;
      flex-grow: 1;
      line-height: 1.2; }
    .content-cards .card h2 .project-date {
      -ms-flex-positive: 2;
      flex-grow: 2;
      font-size: 0.75rem;
      text-align: right;
      white-space: nowrap;
      padding-top: 0.1rem; }

.content-cards .thumbnails {
  padding-right: 0;
  margin-left: -0.75rem;
  margin-right: -0.75rem; }
  @media print, screen and (min-width: 40em) {
    .content-cards .thumbnails {
      margin-left: 0;
      margin-right: 0; } }
  .content-cards .thumbnails .column, .content-cards .thumbnails .columns {
    padding-left: 0.75rem;
    padding-right: 0.75rem; }

@media print, screen and (min-width: 40em) {
  .content-cards .cards-text {
    padding-left: 0.75rem;
    padding-right: 0.75rem; } }

.content-cards .cards-text h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #000000; }

.content-goods h2 {
  text-transform: uppercase;
  color: #061045;
  font-size: 2rem;
  margin-bottom: 1rem; }

.content-goods .products {
  margin-left: -1rem;
  margin-right: -1rem; }
  .content-goods .products .column, .content-goods .products .columns {
    padding-left: 1rem;
    padding-right: 1rem; }

.content-goods .product {
  margin-bottom: 3rem; }
  .content-goods .product a.responsive-embed {
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; }
  .content-goods .product h2 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
    letter-spacing: 1px; }
  .content-goods .product p {
    font-size: 0.875rem;
    margin: 0.25rem 0; }

.content-contact .agents {
  margin-left: -1rem;
  margin-right: -1rem; }
  .content-contact .agents .column, .content-contact .agents .columns {
    padding-left: 1rem;
    padding-right: 1rem; }
  .content-contact .agents p {
    font-size: 0.9375rem;
    margin-bottom: 1rem; }
  .content-contact .agents img {
    width: 100%; }

.content-contact .panel {
  margin: 1rem 0 3.5rem 0; }
  .content-contact .panel p {
    margin-bottom: 0.25rem; }

.follow-icons {
  display: -ms-flexbox;
  display: flex; }
  .follow-icons a {
    margin: 0 4px 0 0; }

.next-previous {
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7486E8;
  border-top: 1px solid #000000;
  margin: 2rem 0;
  padding: 2rem 0; }
  .next-previous .fa {
    position: relative;
    top: 1px; }
  .next-previous .fa-chevron-left {
    margin-right: 1rem; }
  .next-previous .fa-chevron-right {
    margin-left: 1rem; }

#comments h2.comments-title,
#comments h3#reply-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px; }

#comments .commentlist {
  list-style: none;
  margin: 0;
  padding: 0; }

#comments .children {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 88px; }

#comments .comment {
  margin-bottom: 3rem; }

#comments .media-object {
  display: -ms-flexbox;
  display: flex; }
  #comments .media-object .media-object-section {
    margin: 0 1.5rem 0 0; }

form .gform_body ul {
  list-style: none;
  margin: 0;
  padding: 0; }

form .gform_body input[type="text"],
form .gform_body input[type="email"],
form .gform_body textarea,
form .gform_body select {
  padding-left: 0;
  padding-right: 0;
  -webkit-appearance: none;
  box-shadow: none;
  border: 0;
  border-bottom: 1px solid #0d0347;
  background-color: transparent; }

form .gform_footer {
  margin-bottom: 2rem; }

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

form .validation_error {
  color: #cc4b37;
  margin-bottom: 1rem; }

form .gfield_error input[type="text"],
form .gfield_error input[type="email"],
form .gfield_error textarea,
form .gfield_error select {
  border-bottom: 1px solid #cc4b37; }

form #field_1_10 {
  margin: 2rem 0 1.5rem 0; }

form #input_1_12_6_label {
  display: none; }

.search-results-items {
  margin-top: 1rem; }
  .search-results-items h2 {
    font-size: 1.75rem;
    text-transform: uppercase;
    margin-bottom: 2rem; }
  .search-results-items .search-result {
    margin-bottom: 0; }
    .search-results-items .search-result h3 {
      font-size: 1.375rem;
      line-height: 1; }

@keyframes album_floating {
  0% {
    left: -200px; }
  100% {
    left: 120%; } }

/*@keyframes album_paused {
  100% {
    left: calc(50% - 100px); 
  }
}*/
.albums {
  min-height: 100vh;
  position: relative; }
  .albums.albums--large-is-showing .album {
    opacity: 0.2; }
  .albums .row,
  .albums .columns,
  .albums .album-thumbnails {
    height: 100%; }
  .albums .tracks {
    display: none; }
  .albums .album {
    margin-bottom: 2rem;
    color: #000000;
    cursor: pointer;
    opacity: 0.8; }
    @media screen and (max-width: 39.9375em) {
      .albums .album {
        width: 80px !important;
        height: 80px !important; } }
    .albums .album img {
      width: 100%; }
  .albums .album {
    height: 200px;
    width: 200px;
    position: absolute;
    left: -200px;
    transform-origin: 50% 50%;
    transition: transform .25s; }
  .albums .album:nth-child(1) {
    animation: album_floating 39s linear 2s infinite;
    height: 160px;
    width: 160px;
    top: 0; }
  .albums .album:nth-child(2) {
    animation: album_floating 49s linear 1s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(3) {
    animation: album_floating 49s linear 2s infinite;
    height: 200px;
    width: 200px;
    top: 0; }
  .albums .album:nth-child(4) {
    animation: album_floating 40s linear 2s infinite;
    height: 200px;
    width: 200px;
    top: 0; }
  .albums .album:nth-child(5) {
    animation: album_floating 43s linear 3s infinite;
    height: 100px;
    width: 100px;
    top: 0; }
  .albums .album:nth-child(6) {
    animation: album_floating 25s linear 2s infinite;
    height: 200px;
    width: 200px;
    top: 0; }
  .albums .album:nth-child(7) {
    animation: album_floating 41s linear 1s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(8) {
    animation: album_floating 18s linear 2s infinite;
    height: 160px;
    width: 160px;
    top: 0; }
  .albums .album:nth-child(9) {
    animation: album_floating 55s linear 1s infinite;
    height: 120px;
    width: 120px;
    top: 0; }
  .albums .album:nth-child(10) {
    animation: album_floating 53s linear 3s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(11) {
    animation: album_floating 55s linear 3s infinite;
    height: 200px;
    width: 200px;
    top: 0; }
  .albums .album:nth-child(12) {
    animation: album_floating 51s linear 2s infinite;
    height: 100px;
    width: 100px;
    top: 0; }
  .albums .album:nth-child(13) {
    animation: album_floating 48s linear 1s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(14) {
    animation: album_floating 17s linear 3s infinite;
    height: 180px;
    width: 180px;
    top: 0; }
  .albums .album:nth-child(15) {
    animation: album_floating 27s linear 1s infinite;
    height: 100px;
    width: 100px;
    top: 0; }
  .albums .album:nth-child(16) {
    animation: album_floating 45s linear 2s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(17) {
    animation: album_floating 32s linear 3s infinite;
    height: 180px;
    width: 180px;
    top: 0; }
  .albums .album:nth-child(18) {
    animation: album_floating 23s linear 2s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(19) {
    animation: album_floating 20s linear 1s infinite;
    height: 180px;
    width: 180px;
    top: 0; }
  .albums .album:nth-child(20) {
    animation: album_floating 56s linear 1s infinite;
    height: 180px;
    width: 180px;
    top: 0; }
  .albums .album:nth-child(21) {
    animation: album_floating 34s linear 3s infinite;
    height: 180px;
    width: 180px;
    top: 0; }
  .albums .album:nth-child(22) {
    animation: album_floating 39s linear 1s infinite;
    height: 120px;
    width: 120px;
    top: 0; }
  .albums .album:nth-child(23) {
    animation: album_floating 45s linear 2s infinite;
    height: 120px;
    width: 120px;
    top: 0; }
  .albums .album:nth-child(24) {
    animation: album_floating 26s linear 3s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(25) {
    animation: album_floating 24s linear 3s infinite;
    height: 160px;
    width: 160px;
    top: 0; }
  .albums .album:nth-child(26) {
    animation: album_floating 54s linear 1s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(27) {
    animation: album_floating 17s linear 2s infinite;
    height: 120px;
    width: 120px;
    top: 0; }
  .albums .album:nth-child(28) {
    animation: album_floating 18s linear 3s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(29) {
    animation: album_floating 28s linear 2s infinite;
    height: 140px;
    width: 140px;
    top: 0; }
  .albums .album:nth-child(30) {
    animation: album_floating 46s linear 3s infinite;
    height: 120px;
    width: 120px;
    top: 0; }
  .albums .album--is-paused {
    z-index: 0;
    animation-play-state: paused !important;
    opacity: 0 !important; }
  .albums .album-large {
    position: absolute;
    opacity: 0;
    z-index: 0;
    left: -999em;
    width: 180px;
    height: 180px; }
    @media print, screen and (min-width: 40em) {
      .albums .album-large {
        width: 300px;
        height: 300px; } }
    .albums .album-large .actions {
      text-align: center; }
    .albums .album-large span {
      color: #000000;
      font-size: 0.875rem;
      cursor: pointer;
      margin: 4px 0; }
    .albums .album-large audio {
      width: 100%; }
    .albums .album-large h2, .albums .album-large h3 {
      color: #000000;
      text-transform: uppercase;
      text-align: center;
      display: block; }
    .albums .album-large h2 {
      font-size: 1rem;
      margin-top: 0.5rem; }
    .albums .album-large h3 {
      font-size: 0.875rem; }
  .albums .album-large--is-active {
    left: calc(50% - 90px);
    top: 60px;
    opacity: 1;
    z-index: 22; }
    @media print, screen and (min-width: 40em) {
      .albums .album-large--is-active {
        left: calc(50% - 150px);
        top: 120px; } }

footer {
  padding: 2rem 0 1rem 0;
  font-size: 0.75rem; }
  footer .credit {
    text-align: left; }
    @media print, screen and (min-width: 40em) {
      footer .credit {
        text-align: right; } }

.back-to-top {
  display: none; }
  @media print, screen and (min-width: 40em) {
    .back-to-top {
      display: block;
      cursor: pointer;
      position: fixed;
      right: -70px;
      z-index: 40;
      transition: right 200ms linear, opacity 200ms linear;
      opacity: 0.8;
      bottom: 50px; } }
  .back-to-top img {
    width: 30px;
    height: 30px; }
    @media print, screen and (min-width: 40em) {
      .back-to-top img {
        width: 40px;
        height: 40px; } }
  .back-to-top.state--is-showing {
    right: 80px; }

.top-image {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  margin-bottom: 4rem;
  height: 280px; }
  @media print, screen and (min-width: 40em) {
    .top-image {
      height: 420px; } }
  @media print, screen and (min-width: 64em) {
    .top-image {
      height: 524px; } }
  .top-image .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    transition: filter 1s;
    transform-origin: 50% 50%;
    transform: scale(1); }
    @media print, screen and (min-width: 40em) {
      .top-image .background {
        height: 420px; } }
    @media print, screen and (min-width: 64em) {
      .top-image .background {
        height: 524px; } }
  .top-image .info {
    position: relative;
    z-index: 2;
    padding: 0 1rem 2rem 1rem; }
    @media print, screen and (min-width: 64em) {
      .top-image .info {
        padding: 0 2rem 2rem 2rem; } }
  .top-image h2, .top-image h3, .top-image h4 {
    text-transform: uppercase; }
  .top-image h3 {
    padding: 0 1rem;
    height: 42px;
    line-height: 42px;
    margin-bottom: 4rem;
    background-color: #061045;
    color: #ffffff;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 0.75rem; }
    @media print, screen and (min-width: 40em) {
      .top-image h3 {
        font-size: 0.875rem; } }
  .top-image h2 {
    line-height: 1;
    width: 50%; }
    @media print, screen and (min-width: 40em) {
      .top-image h2 {
        font-size: 2rem; } }
    @media print, screen and (min-width: 64em) {
      .top-image h2 {
        font-size: 3.4375rem; } }
  .top-image h4 {
    font-size: 1.25rem; }

.top-image.top-image-no-background {
  color: #000000;
  height: auto; }
  .top-image.top-image-no-background h3 {
    margin-bottom: 2rem; }

.main-menu a:hover {
  color: #7486E8; }

.post-thumbnail:hover .background {
  transform: scale(1); }

.title-bar h1 a:hover {
  color: #7486E8; }

.title-bar .column-icons a.circle:hover {
  background-color: #ffffff; }

.button-rectangular:hover {
  background-color: #061045; }

@media print, screen and (min-width: 40em) {
  nav:hover {
    background-color: #7486E8; } }

nav .icons a:hover {
  opacity: 1; }

ul.categories a:hover {
  color: #7486E8; }

.follow-icons a:hover {
  color: #061045; }

.icon-links a:hover {
  color: #061045;
  left: -5px; }

.content-cards .card:hover h2 {
  color: #7486E8; }

.content-cards li.child a:hover {
  color: #333333; }

.post-thumbnails .post-thumbnail:hover .background {
  transform: scale(1.05); }

.post-thumbnails .post-thumbnail:hover .info {
  background: linear-gradient(to bottom, rgba(76, 76, 76, 0) 0%, rgba(0, 0, 0, 0.2) 10%, black 100%); }

.album:hover {
  opacity: 1;
  z-index: 20;
  transform: scale(1.15); }

.album-large span:hover {
  color: #7486E8; }

.type-page .instagram a:hover {
  opacity: 0.8; }

.hamburger {
  display: inline-block;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  margin-top: 10px; }
  @media print, screen and (min-width: 40em) {
    .hamburger {
      width: 30px;
      height: 30px;
      margin-left: 20px;
      margin-top: 1.5rem;
      margin-top: 2rem; } }
  @media print, screen and (min-width: 64em) {
    .hamburger {
      margin-top: 2.5rem; } }

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

.site-agreement {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background-color: #7486E8;
  color: #ffffff;
  z-index: 400; }
  .site-agreement a {
    color: #ffffff;
    text-decoration: underline; }
  .site-agreement p {
    text-align: center;
    text-transform: none;
    margin: 0;
    font-size: 15px; }
  .site-agreement span {
    cursor: pointer;
    margin-left: 0.5rem;
    padding: 0.25rem 0.5rem;
    color: #000000;
    background-color: #e6e6e6;
    text-transform: uppercase; }
    .site-agreement span:hover {
      color: #ffffff;
      background-color: #000000; }

.jetpack_subscription_widget p {
  font-size: 0.9375rem;
  margin-bottom: 0; }

.jetpack_subscription_widget p.error {
  color: #cc4b37; }

.page-subscribe .panel {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  margin-bottom: 1.5rem; }
  @media print, screen and (min-width: 40em) {
    .page-subscribe .panel {
      margin-bottom: 3rem; } }
  .page-subscribe .panel textarea {
    height: 100px; }
  .page-subscribe .panel p {
    font-size: 0.9375rem;
    margin-bottom: 8px; }
  .page-subscribe .panel p#subscribe-submit {
    margin-bottom: 0; }
  .page-subscribe .panel #field_1_10,
  .page-subscribe .panel #field_1_3,
  .page-subscribe .panel #field_1_5 {
    display: none; }
  .page-subscribe .panel .gform_footer {
    margin-bottom: 0;
    margin-top: 2rem; }

.share {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1; }
  .share.share-post {
    margin: 2rem 0; }
  .share span {
    text-transform: uppercase;
    padding-right: 0.5rem;
    letter-spacing: 1px; }
  .share .fa {
    margin-right: 4px; }

#commentform {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }
  #commentform p.comment-subscription-form {
    margin-bottom: 0; }
  #commentform .nm-wrap-comments {
    -ms-flex-order: 10;
    order: 10; }
  #commentform p.comment-form-cookies-consent {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start; }
    #commentform p.comment-form-cookies-consent #wp-comment-cookies-consent {
      position: relative;
      margin: 0;
      height: 20px; }
  #commentform p.comment-subscribe_newsletter {
    margin-bottom: 0;
    position: relative; }
    #commentform p.comment-subscribe_newsletter input {
      position: absolute;
      top: 0;
      left: 0; }
    #commentform p.comment-subscribe_newsletter label {
      font-weight: normal;
      margin-left: 1.6rem; }
    #commentform p.comment-subscribe_newsletter label:last-child {
      display: none !important; }
  #commentform p.comment-country {
    display: none; }
    #commentform p.comment-country label {
      font-weight: normal; }
  #commentform .col-lg-12 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important; }
    @media print, screen and (min-width: 40em) {
      #commentform .col-lg-12 {
        padding-left: 1.875rem !important;
        padding-right: 1.875rem !important; } }

p.akismet_comment_form_privacy_notice {
  display: none; }

.timeline-wrapper {
  transition: opacity 2s;
  opacity: 0;
  display: none; }
  @media screen and (min-width: 48em) {
    .timeline-wrapper {
      display: block; } }
  .timeline-wrapper.timeline-wrapper--is-showing {
    opacity: 1; }

.timeline-container {
  transform: perspective(600px) rotateY(-10deg) translateX(-195px);
  transition-duration: 840ms;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  overflow: hidden; }
  .timeline-container.moveBack {
    transform: perspective(0px) rotateY(0deg) translateX(0px); }
  .timeline-container.timeline-container--is-moved-back {
    transition-duration: 0;
    transform: perspective(0px) rotateY(0deg) translateX(0px); }
  .timeline-container .activate {
    display: none; }
  .timeline-container .timeline {
    height: 640px;
    position: relative;
    overflow-y: hidden; }
  .timeline-container .timeline::-webkit-scrollbar {
    display: none; }
  .timeline-container .timeline .white-box {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 420px;
    z-index: 6;
    background-image: -webkit-gradient(linear, 100% 100%, 0% 100%, color-stop(0, rgba(255, 255, 255, 0)), color-stop(0.2, white), color-stop(0.2, white));
    display: none; }
  .timeline-container .strands {
    width: 28000px; }
  .timeline-container .strand {
    position: absolute;
    top: 0;
    left: 0;
    height: 800px;
    z-index: 3;
    transition: opacity 1s;
    opacity: 1; }
    .timeline-container .strand.strand--is-inactive {
      opacity: 0.2; }
    .timeline-container .strand img {
      max-width: none; }
  .timeline-container .categories {
    font-size: 1.125rem;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    list-style: none;
    margin-top: 138px;
    z-index: 5;
    margin-left: 34px; }
    .timeline-container .categories li {
      margin: 0 0 30px 0;
      width: 220px;
      transition: opacity 500ms, color 300ms;
      cursor: pointer; }
    .timeline-container .categories .category--is-inactive {
      opacity: 0.2; }
    .timeline-container .categories .music-to-picture {
      color: #87a3cb; }
    .timeline-container .categories .keynote-speaking {
      color: #a6aebd; }
    .timeline-container .categories .recordings {
      color: #9899a0; }
    .timeline-container .categories .live-event-production {
      color: #7eb8b6; }
    .timeline-container .categories .invention {
      color: #70bdd5; }
    .timeline-container .categories .philanthrophy {
      color: #cfad6c; }
    .timeline-container .categories.categories--at-bottom {
      position: fixed;
      margin-top: 596px;
      margin-bottom: 0; }
      .timeline-container .categories.categories--at-bottom li {
        font-size: 0.875rem;
        display: inline-block;
        margin: 0 0.7rem 0 0;
        width: auto;
        line-height: 1.2; }
      .timeline-container .categories.categories--at-bottom .music-to-picture {
        border-bottom: 5px solid #87a3cb; }
      .timeline-container .categories.categories--at-bottom .keynote-speaking {
        border-bottom: 5px solid #a6aebd; }
      .timeline-container .categories.categories--at-bottom .recordings {
        border-bottom: 5px solid #9899a0; }
      .timeline-container .categories.categories--at-bottom .live-event-production {
        border-bottom: 5px solid #7eb8b6; }
      .timeline-container .categories.categories--at-bottom .invention {
        border-bottom: 5px solid #70bdd5; }
      .timeline-container .categories.categories--at-bottom .philanthrophy {
        border-bottom: 5px solid #cfad6c; }
  .timeline-container .dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    z-index: 4; }
    .timeline-container .dots .dot {
      cursor: pointer;
      width: 12px;
      height: 12px;
      border: 2px solid #000000;
      border-radius: 50%;
      position: absolute;
      display: inline-block;
      background-color: #ffffff;
      z-index: 3;
      transform-origin: 50% 50%;
      opacity: 1;
      transition: transform 200ms; }
    .timeline-container .dots .dot.inactive,
    .timeline-container .dots .dot.is-not-active {
      display: none; }
    .timeline-container .dots .dot:hover {
      animation: dot-pulse 500ms infinite; }
    .timeline-container .dots .dot.is-enlarged {
      border: 1px solid #000000;
      transform: scale(4);
      background-image: url(http://localhost.philipsheppard/wp-content/uploads/2017/05/Screenshot-157.png);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      z-index: 500; }
    .timeline-container .dots .dot.is-enlarged.is-music-to-picture {
      border: 1px solid #84a1cd; }
    .timeline-container .dots .dot.is-enlarged.is-keynote-speaking {
      border: 1px solid #a5adbe; }
    .timeline-container .dots .dot.is-enlarged.is-recordings {
      border: 1px solid #9899a0; }
    .timeline-container .dots .dot.is-enlarged.is-live-event-production {
      border: 1px solid #6ebcb8; }
    .timeline-container .dots .dot.is-enlarged.is-invention {
      border: 1px solid #5bc0d8; }
    .timeline-container .dots .dot.is-enlarged.is-philanthrophy {
      border: 1px solid #d3ae66; }
  .timeline-container .big-dot {
    cursor: pointer;
    position: absolute;
    display: block;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #ffffff;
    background-color: #000000;
    transform-origin: 50% 50%;
    transition: transform 250ms;
    transform: scale(0);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; }
    .timeline-container .big-dot.music-to-picture {
      border: 6px solid #84a1cd; }
    .timeline-container .big-dot.keynote-speaking {
      border: 6px solid #a5adbe; }
    .timeline-container .big-dot.recordings {
      border: 6px solid #9899a0; }
    .timeline-container .big-dot.live-event-production {
      border: 6px solid #6ebcb8; }
    .timeline-container .big-dot.invention {
      border: 6px solid #5bc0d8; }
    .timeline-container .big-dot.philanthrophy {
      border: 6px solid #d3ae66; }
    .timeline-container .big-dot.multiple {
      border: 6px solid #061045; }
    .timeline-container .big-dot.is-music-to-picture {
      border: 6px solid #84a1cd; }
    .timeline-container .big-dot.is-keynote-speaking {
      border: 6px solid #a5adbe; }
    .timeline-container .big-dot.is-recordings {
      border: 6px solid #9899a0; }
    .timeline-container .big-dot.is-live-event-production {
      border: 6px solid #6ebcb8; }
    .timeline-container .big-dot.is-invention {
      border: 6px solid #5bc0d8; }
    .timeline-container .big-dot.is-philanthrophy {
      border: 6px solid #d3ae66; }
  .timeline-container .big-dot.big-dot--is-showing {
    transform: scale(1); }
  .timeline-container .dot-info {
    position: absolute;
    width: 200px;
    text-align: center;
    text-transform: uppercase;
    z-index: 0;
    opacity: 0;
    left: -999em;
    transition: opacity 250ms; }
    .timeline-container .dot-info.dot-info--is-showing {
      opacity: 1;
      z-index: 5; }
    .timeline-container .dot-info.dot-info--is-showing .line-top {
      height: 18px;
      margin-top: 65px;
      margin-bottom: 115px; }
    .timeline-container .dot-info.dot-info--is-showing .line-bottom {
      height: 18px; }
    .timeline-container .dot-info h3 {
      font-size: 1rem;
      text-transform: uppercase;
      color: #000000;
      margin: 4px 0 0 0; }
    .timeline-container .dot-info a {
      color: #000000; }
    .timeline-container .dot-info h4 {
      font-size: 0.75rem;
      text-transform: uppercase;
      margin: 0; }
    .timeline-container .dot-info .line {
      margin-left: 99px;
      height: 0;
      width: 3px;
      background-color: #ffffff;
      transition: height 400ms; }
    .timeline-container .dot-info .line.line-tall {
      margin-left: 99px;
      margin-top: 10px;
      width: 3px;
      background-color: #ffffff;
      transition: height 400ms; }
    .timeline-container .dot-info .previous-dot,
    .timeline-container .dot-info .next-dot {
      position: absolute;
      top: 124px;
      font-size: 1rem;
      color: #ffffff;
      cursor: pointer; }
      .timeline-container .dot-info .previous-dot .fa-stack-1x,
      .timeline-container .dot-info .next-dot .fa-stack-1x {
        color: #061045;
        font-size: 0.875rem;
        padding-top: 1px; }
      .timeline-container .dot-info .previous-dot:hover,
      .timeline-container .dot-info .next-dot:hover {
        color: #000000; }
        .timeline-container .dot-info .previous-dot:hover .fa-stack-1x,
        .timeline-container .dot-info .next-dot:hover .fa-stack-1x {
          color: #ffffff; }
    .timeline-container .dot-info .previous-dot {
      left: 5px;
      right: auto; }
      .timeline-container .dot-info .previous-dot .fa-stack-1x {
        padding-right: 3px; }
    .timeline-container .dot-info .next-dot {
      left: auto;
      right: 4px; }
      .timeline-container .dot-info .next-dot .fa-stack-1x {
        padding-left: 3px; }
    .timeline-container .dot-info.music-to-picture .line,
    .timeline-container .dot-info.music-to-picture .line-tall {
      background-color: #84a1cd; }
    .timeline-container .dot-info.keynote-speaking .line,
    .timeline-container .dot-info.keynote-speaking .line-tall {
      background-color: #a5adbe; }
    .timeline-container .dot-info.recordings .line,
    .timeline-container .dot-info.recordings .line-tall {
      background-color: #9899a0; }
    .timeline-container .dot-info.live-event-production .line,
    .timeline-container .dot-info.live-event-production .line-tall {
      background-color: #6ebcb8; }
    .timeline-container .dot-info.invention .line,
    .timeline-container .dot-info.invention .line-tall {
      background-color: #5bc0d8; }
    .timeline-container .dot-info.philanthrophy .line,
    .timeline-container .dot-info.philanthrophy .line-tall {
      background-color: #d3ae66; }
    .timeline-container .dot-info.multiple .line,
    .timeline-container .dot-info.multiple .line-tall {
      background-color: #061045; }
  .timeline-container .years {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 640px;
    z-index: 1; }
    .timeline-container .years .year {
      position: absolute;
      top: 0;
      left: 0;
      height: 640px;
      width: 1px;
      transition: opacity 200ms cubic-biezer(0.1, 0.86, 0.14, 1.05);
      background-color: #bcbece;
      opacity: 0; }
      .timeline-container .years .year span {
        color: #9B9B9B;
        position: absolute;
        bottom: 40px;
        left: 6px; }
    .timeline-container .years .year-start {
      width: 2px; }
    .timeline-container .years .year-start.bounceInDown {
      opacity: 0.8;
      height: 640px;
      top: 0; }
    .timeline-container .years .year:not(.year-start).slideInDown {
      height: 640px;
      top: 0;
      opacity: 0.5; }

@keyframes dot-pulse {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(1.7); }
  
  50% {
    transform: scale(1); }
  
  75% {
    transform: scale(1.7); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0); }
  to {
    opacity: 1;
    transform: none; } }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -10%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -700px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 10px, 0); }
  to {
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-3.5%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.timeline-container.timeline-container--is-moving .categories.categories--at-bottom {
  left: -999em; }

.timeline-container .categories li:hover {
  color: #000000 !important; }

.parallax-layer {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*  @include dimension(300px);
  @include breakpoint(medium) {
    @include dimension(768px);
  }
  @include breakpoint(large) {
    @include dimension(1000px);
  }
  @include breakpoint(xlarge) {
    @include dimension(1400px);
  }
  @include breakpoint(xxlarge) {
    @include dimension(1500px);
  }*/ }

#parallax-layer-1 {
  background-image: url("../images/posterized-1.png");
  z-index: 1; }

#parallax-layer-2 {
  background-image: url("../images/posterized-2.png");
  z-index: 1; }

#parallax-layer-3 {
  background-image: url("../images/posterized-3.png");
  z-index: 1; }

.no-touchevents .parallax-container {
  display: none; }

.no-touchevents .main-menu {
  background-image: url(../images/posterized-mobile.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }
  @media print, screen and (min-width: 40em) {
    .no-touchevents .main-menu {
      background-image: url(../images/xwing.jpg); } }

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

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