@charset "UTF-8";
/* -------------------------------------------------------------- */
/*    Variables
/* -------------------------------------------------------------- */
/* Colors
/* remember to turn off any unused swatches in atoms>global>colors.mustache
/* _______________________________________________________________ */
.bg-dark {
  background-color: #000;
  color: #fff; }

.bg-white {
  background-color: #fff; }

.bg-transparent {
  background-color: transparent;
  color: #fff; }

.bg-light {
  background-color: #ffffff; }

.bg-brand {
  background-color: #8A1538;
  color: #fff; }

.bg-gray {
  background-color: #5d524d;
  color: #000; }

.bg-complement {
  background-color: #281a35;
  color: #fff; }

.bg-alpha.bg-dark {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff; }

.bg-alpha.bg-white {
  background-color: rgba(255, 255, 255, 0.8); }

.bg-alpha.bg-light {
  background-color: rgba(255, 255, 255, 0.8); }

.bg-alpha.bg-brand {
  background-color: rgba(151, 35, 55, 0.8);
  color: #fff; }

.bg-alpha.bg-gray {
  background-color: rgba(93, 82, 77, 0.8);
  color: #000; }

.bg-alpha.bg-complement {
  background-color: rgba(40, 26, 53, 0.8);
  color: #fff; }

/* Typography
/* _______________________________________________________________ */
/* Paths
/* _______________________________________________________________ */
/*------------------------------------*    $MIXINS
\*------------------------------------*/
@-webkit-keyframes crossfadeToTransparent {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; } }
@keyframes crossfadeToTransparent {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; } }

/*
* Foundation
*/
/**
 * Foundation for Sites by ZURB
 * Version 6.1.2
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS and IE text size adjust after device orientation change,
   *    without disabling user zoom.
   */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
   */
[hidden],
template {
  display: none; }

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0; }

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

html {
  font-size: 16px;
  box-sizing: border-box; }

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

body {
  padding: 0;
  margin: 0;
  font-family: "Lato", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  line-height: 1.375;
  color: #5d524d;
  background: #fefefe;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

select {
  width: 100%;
  border-radius: 3rem; }

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 3rem;
  line-height: 1; }

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

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

.row {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    margin-left: -2.5rem;
    margin-right: -2.5rem; }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-left: auto;
      margin-right: auto; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 2.5rem;
  padding-right: 2.5rem; }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

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

.small-1 {
  width: 4.16667%; }

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

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

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

.small-2 {
  width: 8.33333%; }

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

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

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

.small-3 {
  width: 12.5%; }

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

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

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

.small-4 {
  width: 16.66667%; }

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

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

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

.small-5 {
  width: 20.83333%; }

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

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

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

.small-6 {
  width: 25%; }

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

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

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

.small-7 {
  width: 29.16667%; }

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

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

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

.small-8 {
  width: 33.33333%; }

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

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

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

.small-9 {
  width: 37.5%; }

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

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

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

.small-10 {
  width: 41.66667%; }

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

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

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

.small-11 {
  width: 45.83333%; }

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

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

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

.small-12 {
  width: 50%; }

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

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

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

.small-13 {
  width: 54.16667%; }

.small-push-13 {
  position: relative;
  left: 54.16667%; }

.small-pull-13 {
  position: relative;
  left: -54.16667%; }

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

.small-14 {
  width: 58.33333%; }

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

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

.small-offset-13 {
  margin-left: 54.16667%; }

.small-15 {
  width: 62.5%; }

.small-push-15 {
  position: relative;
  left: 62.5%; }

.small-pull-15 {
  position: relative;
  left: -62.5%; }

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

.small-16 {
  width: 66.66667%; }

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

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

.small-offset-15 {
  margin-left: 62.5%; }

.small-17 {
  width: 70.83333%; }

.small-push-17 {
  position: relative;
  left: 70.83333%; }

.small-pull-17 {
  position: relative;
  left: -70.83333%; }

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

.small-18 {
  width: 75%; }

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

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

.small-offset-17 {
  margin-left: 70.83333%; }

.small-19 {
  width: 79.16667%; }

.small-push-19 {
  position: relative;
  left: 79.16667%; }

.small-pull-19 {
  position: relative;
  left: -79.16667%; }

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

.small-20 {
  width: 83.33333%; }

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

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

.small-offset-19 {
  margin-left: 79.16667%; }

.small-21 {
  width: 87.5%; }

.small-push-21 {
  position: relative;
  left: 87.5%; }

.small-pull-21 {
  position: relative;
  left: -87.5%; }

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

.small-22 {
  width: 91.66667%; }

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

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

.small-offset-21 {
  margin-left: 87.5%; }

.small-23 {
  width: 95.83333%; }

.small-push-23 {
  position: relative;
  left: 95.83333%; }

.small-pull-23 {
  position: relative;
  left: -95.83333%; }

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

.small-24 {
  width: 100%; }

.small-offset-23 {
  margin-left: 95.83333%; }

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

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

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

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

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

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

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

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

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

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

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

.small-centered {
  float: none;
  margin-left: auto;
  margin-right: auto; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left; }

@media screen and (min-width: 40em) {
  .medium-1 {
    width: 4.16667%; }
  .medium-push-1 {
    position: relative;
    left: 4.16667%; }
  .medium-pull-1 {
    position: relative;
    left: -4.16667%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 8.33333%; }
  .medium-push-2 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-2 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-1 {
    margin-left: 4.16667%; }
  .medium-3 {
    width: 12.5%; }
  .medium-push-3 {
    position: relative;
    left: 12.5%; }
  .medium-pull-3 {
    position: relative;
    left: -12.5%; }
  .medium-offset-2 {
    margin-left: 8.33333%; }
  .medium-4 {
    width: 16.66667%; }
  .medium-push-4 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-4 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-3 {
    margin-left: 12.5%; }
  .medium-5 {
    width: 20.83333%; }
  .medium-push-5 {
    position: relative;
    left: 20.83333%; }
  .medium-pull-5 {
    position: relative;
    left: -20.83333%; }
  .medium-offset-4 {
    margin-left: 16.66667%; }
  .medium-6 {
    width: 25%; }
  .medium-push-6 {
    position: relative;
    left: 25%; }
  .medium-pull-6 {
    position: relative;
    left: -25%; }
  .medium-offset-5 {
    margin-left: 20.83333%; }
  .medium-7 {
    width: 29.16667%; }
  .medium-push-7 {
    position: relative;
    left: 29.16667%; }
  .medium-pull-7 {
    position: relative;
    left: -29.16667%; }
  .medium-offset-6 {
    margin-left: 25%; }
  .medium-8 {
    width: 33.33333%; }
  .medium-push-8 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-8 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-7 {
    margin-left: 29.16667%; }
  .medium-9 {
    width: 37.5%; }
  .medium-push-9 {
    position: relative;
    left: 37.5%; }
  .medium-pull-9 {
    position: relative;
    left: -37.5%; }
  .medium-offset-8 {
    margin-left: 33.33333%; }
  .medium-10 {
    width: 41.66667%; }
  .medium-push-10 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-10 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-9 {
    margin-left: 37.5%; }
  .medium-11 {
    width: 45.83333%; }
  .medium-push-11 {
    position: relative;
    left: 45.83333%; }
  .medium-pull-11 {
    position: relative;
    left: -45.83333%; }
  .medium-offset-10 {
    margin-left: 41.66667%; }
  .medium-push-12 {
    position: relative;
    left: 50%; }
  .medium-pull-12 {
    position: relative;
    left: -50%; }
  .medium-offset-11 {
    margin-left: 45.83333%; }
  .medium-13 {
    width: 54.16667%; }
  .medium-push-13 {
    position: relative;
    left: 54.16667%; }
  .medium-pull-13 {
    position: relative;
    left: -54.16667%; }
  .medium-offset-12 {
    margin-left: 50%; }
  .medium-14 {
    width: 58.33333%; }
  .medium-push-14 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-14 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-13 {
    margin-left: 54.16667%; }
  .medium-15 {
    width: 62.5%; }
  .medium-push-15 {
    position: relative;
    left: 62.5%; }
  .medium-pull-15 {
    position: relative;
    left: -62.5%; }
  .medium-offset-14 {
    margin-left: 58.33333%; }
  .medium-16 {
    width: 66.66667%; }
  .medium-push-16 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-16 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-15 {
    margin-left: 62.5%; }
  .medium-17 {
    width: 70.83333%; }
  .medium-push-17 {
    position: relative;
    left: 70.83333%; }
  .medium-pull-17 {
    position: relative;
    left: -70.83333%; }
  .medium-offset-16 {
    margin-left: 66.66667%; }
  .medium-18 {
    width: 75%; }
  .medium-push-18 {
    position: relative;
    left: 75%; }
  .medium-pull-18 {
    position: relative;
    left: -75%; }
  .medium-offset-17 {
    margin-left: 70.83333%; }
  .medium-19 {
    width: 79.16667%; }
  .medium-push-19 {
    position: relative;
    left: 79.16667%; }
  .medium-pull-19 {
    position: relative;
    left: -79.16667%; }
  .medium-offset-18 {
    margin-left: 75%; }
  .medium-20 {
    width: 83.33333%; }
  .medium-push-20 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-20 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-19 {
    margin-left: 79.16667%; }
  .medium-21 {
    width: 87.5%; }
  .medium-push-21 {
    position: relative;
    left: 87.5%; }
  .medium-pull-21 {
    position: relative;
    left: -87.5%; }
  .medium-offset-20 {
    margin-left: 83.33333%; }
  .medium-22 {
    width: 91.66667%; }
  .medium-push-22 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-22 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-21 {
    margin-left: 87.5%; }
  .medium-23 {
    width: 95.83333%; }
  .medium-push-23 {
    position: relative;
    left: 95.83333%; }
  .medium-pull-23 {
    position: relative;
    left: -95.83333%; }
  .medium-offset-22 {
    margin-left: 91.66667%; }
  .medium-24 {
    width: 100%; }
  .medium-offset-23 {
    margin-left: 95.83333%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 61.25em) {
  .large-1 {
    width: 4.16667%; }
  .large-push-1 {
    position: relative;
    left: 4.16667%; }
  .large-pull-1 {
    position: relative;
    left: -4.16667%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 8.33333%; }
  .large-push-2 {
    position: relative;
    left: 8.33333%; }
  .large-pull-2 {
    position: relative;
    left: -8.33333%; }
  .large-offset-1 {
    margin-left: 4.16667%; }
  .large-3 {
    width: 12.5%; }
  .large-push-3 {
    position: relative;
    left: 12.5%; }
  .large-pull-3 {
    position: relative;
    left: -12.5%; }
  .large-offset-2 {
    margin-left: 8.33333%; }
  .large-4 {
    width: 16.66667%; }
  .large-push-4 {
    position: relative;
    left: 16.66667%; }
  .large-pull-4 {
    position: relative;
    left: -16.66667%; }
  .large-offset-3 {
    margin-left: 12.5%; }
  .large-5 {
    width: 20.83333%; }
  .large-push-5 {
    position: relative;
    left: 20.83333%; }
  .large-pull-5 {
    position: relative;
    left: -20.83333%; }
  .large-offset-4 {
    margin-left: 16.66667%; }
  .large-6 {
    width: 25%; }
  .large-push-6 {
    position: relative;
    left: 25%; }
  .large-pull-6 {
    position: relative;
    left: -25%; }
  .large-offset-5 {
    margin-left: 20.83333%; }
  .large-7 {
    width: 29.16667%; }
  .large-push-7 {
    position: relative;
    left: 29.16667%; }
  .large-pull-7 {
    position: relative;
    left: -29.16667%; }
  .large-offset-6 {
    margin-left: 25%; }
  .large-8 {
    width: 33.33333%; }
  .large-push-8 {
    position: relative;
    left: 33.33333%; }
  .large-pull-8 {
    position: relative;
    left: -33.33333%; }
  .large-offset-7 {
    margin-left: 29.16667%; }
  .large-9 {
    width: 37.5%; }
  .large-push-9 {
    position: relative;
    left: 37.5%; }
  .large-pull-9 {
    position: relative;
    left: -37.5%; }
  .large-offset-8 {
    margin-left: 33.33333%; }
  .large-10 {
    width: 41.66667%; }
  .large-push-10 {
    position: relative;
    left: 41.66667%; }
  .large-pull-10 {
    position: relative;
    left: -41.66667%; }
  .large-offset-9 {
    margin-left: 37.5%; }
  .large-11 {
    width: 45.83333%; }
  .large-push-11 {
    position: relative;
    left: 45.83333%; }
  .large-pull-11 {
    position: relative;
    left: -45.83333%; }
  .large-offset-10 {
    margin-left: 41.66667%; }
  .large-12 {
    width: 50%; }
  .large-push-12 {
    position: relative;
    left: 50%; }
  .large-pull-12 {
    position: relative;
    left: -50%; }
  .large-offset-11 {
    margin-left: 45.83333%; }
  .large-13 {
    width: 54.16667%; }
  .large-push-13 {
    position: relative;
    left: 54.16667%; }
  .large-pull-13 {
    position: relative;
    left: -54.16667%; }
  .large-offset-12 {
    margin-left: 50%; }
  .large-14 {
    width: 58.33333%; }
  .large-push-14 {
    position: relative;
    left: 58.33333%; }
  .large-pull-14 {
    position: relative;
    left: -58.33333%; }
  .large-offset-13 {
    margin-left: 54.16667%; }
  .large-15 {
    width: 62.5%; }
  .large-push-15 {
    position: relative;
    left: 62.5%; }
  .large-pull-15 {
    position: relative;
    left: -62.5%; }
  .large-offset-14 {
    margin-left: 58.33333%; }
  .large-16 {
    width: 66.66667%; }
  .large-push-16 {
    position: relative;
    left: 66.66667%; }
  .large-pull-16 {
    position: relative;
    left: -66.66667%; }
  .large-offset-15 {
    margin-left: 62.5%; }
  .large-17 {
    width: 70.83333%; }
  .large-push-17 {
    position: relative;
    left: 70.83333%; }
  .large-pull-17 {
    position: relative;
    left: -70.83333%; }
  .large-offset-16 {
    margin-left: 66.66667%; }
  .large-18 {
    width: 75%; }
  .large-push-18 {
    position: relative;
    left: 75%; }
  .large-pull-18 {
    position: relative;
    left: -75%; }
  .large-offset-17 {
    margin-left: 70.83333%; }
  .large-19 {
    width: 79.16667%; }
  .large-push-19 {
    position: relative;
    left: 79.16667%; }
  .large-pull-19 {
    position: relative;
    left: -79.16667%; }
  .large-offset-18 {
    margin-left: 75%; }
  .large-20 {
    width: 83.33333%; }
  .large-push-20 {
    position: relative;
    left: 83.33333%; }
  .large-pull-20 {
    position: relative;
    left: -83.33333%; }
  .large-offset-19 {
    margin-left: 79.16667%; }
  .large-21 {
    width: 87.5%; }
  .large-push-21 {
    position: relative;
    left: 87.5%; }
  .large-pull-21 {
    position: relative;
    left: -87.5%; }
  .large-offset-20 {
    margin-left: 83.33333%; }
  .large-22 {
    width: 91.66667%; }
  .large-push-22 {
    position: relative;
    left: 91.66667%; }
  .large-pull-22 {
    position: relative;
    left: -91.66667%; }
  .large-offset-21 {
    margin-left: 87.5%; }
  .large-23 {
    width: 95.83333%; }
  .large-push-23 {
    position: relative;
    left: 95.83333%; }
  .large-pull-23 {
    position: relative;
    left: -95.83333%; }
  .large-offset-22 {
    margin-left: 91.66667%; }
  .large-24 {
    width: 100%; }
  .large-offset-23 {
    margin-left: 95.83333%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

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

p {
  font-size: inherit;
  line-height: 1.375;
  margin-bottom: 1.375em;
  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: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    color: #cacaca;
    line-height: 0; }

pageHeader {
  font-size: 3rem; }

h1 {
  font-size: 1.5rem; }

h2 {
  font-size: 1.25rem; }

h3 {
  font-size: 1.1875rem; }

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 1.0625rem; }

h6 {
  font-size: 1rem; }

@media screen and (min-width: 40em) {
  pageHeader {
    font-size: 4.5rem; }
  h1 {
    font-size: 3rem; }
  h2 {
    font-size: 2rem; }
  h3 {
    font-size: 1.125rem; }
  h4 {
    font-size: 1.5rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

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

hr {
  max-width: 75rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: solid 2px rgba(93, 82, 77, 0.125);
  border-left: 0;
  margin: 1.25rem auto;
  clear: both; }

ul,
ol,
dl {
  line-height: 1.375em;
  margin-bottom: 0.75em;
  list-style-position: outside; }

li {
  font-size: inherit; }

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

ol {
  margin-left: 1.25rem; }

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

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

blockquote {
  margin: 0 0 1.375em;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: solid 2px rgba(93, 82, 77, 0.125); }
  blockquote, blockquote p {
    line-height: 1.375;
    color: #8a8a8a; }

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

abbr {
  color: #5d524d;
  cursor: help;
  border-bottom: 1px dotted #0a0a0a; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  background-color: #e6e6e6;
  border: solid 1px rgba(93, 82, 77, 0.125);
  padding: 0.125rem 0.3125rem 0.0625rem; }

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

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

.lead {
  font-size: 20px;
  line-height: 1.6; }

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

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

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

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

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

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

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

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

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

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #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; } }

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 3rem;
  padding: 1em 1.5em;
  margin: 0 1rem 1rem 0;
  font-size: inherit;
  background-color: #ff0000;
  color: #fff; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #d90000;
    color: #fff; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary {
    background-color: #ff0000;
    color: #fff; }
    .button.primary:hover, .button.primary:focus {
      background-color: #cc0000;
      color: #fff; }
  .button.secondary {
    background-color: #8A1538;
    color: #fff; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #791c2c;
      color: #fff; }
  .button.success {
    background-color: #3adb76;
    color: #fff; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #fff; }
  .button.alert {
    background-color: #ec5840;
    color: #fff; }
    .button.alert:hover, .button.alert:focus {
      background-color: #da3116;
      color: #fff; }
  .button.warning {
    background-color: #ffae00;
    color: #fff; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #fff; }
  .button.hollow {
    border: 1px solid #ff0000;
    color: #ff0000; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: maroon;
      color: maroon; }
    .button.hollow.primary {
      border: 1px solid #ff0000;
      color: #ff0000; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: maroon;
        color: maroon; }
    .button.hollow.secondary {
      border: 1px solid #8A1538;
      color: #8A1538; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #4c121c;
        color: #4c121c; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.alert {
      border: 1px solid #ec5840;
      color: #ec5840; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #881f0e;
        color: #881f0e; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none; }
  .button.dropdown::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    border-color: #fefefe transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: relative;
    top: 0.4em;
    float: right;
    margin-left: 1.5em;
    display: inline-block; }
  .button.arrow-only::after {
    margin-left: 0;
    float: none;
    top: 0.2em; }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: solid 1px transparent;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  background-color: #e1e1e1;
  box-shadow: none;
  border-radius: 0;
  -webkit-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    border: solid 1px rgba(93, 82, 77, 0.125);
    background-color: #fefefe;
    outline: none;
    box-shadow: none;
    -webkit-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

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

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

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

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

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

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

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

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

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

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

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

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

.input-group-label {
  text-align: center;
  width: 1%;
  height: 100%;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #0a0a0a;
  border: solid 1px rgba(93, 82, 77, 0.125);
  white-space: nowrap; }
  .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 {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
    margin: 0; }

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

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

.fieldset {
  border: solid 1px rgba(93, 82, 77, 0.125);
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
    background: #fefefe;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: solid 1px transparent;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #0a0a0a;
  background-color: #fafafa;
  border-radius: 3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%2851, 51, 51%29"></polygon></svg>');
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
    background-color: #e6e6e6;
    cursor: default; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto; }

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840; }

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

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

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix::after {
  clear: both; }

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

.callout {
  margin: 0;
  padding: 2rem;
  border: solid 6px rgba(93, 82, 77, 0.125);
  border-radius: 0;
  position: relative;
  color: inherit;
  background-color: rgba(217, 217, 217, 0); }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #ffd9d9; }
  .callout.secondary {
    background-color: #f6d8dd; }
  .callout.success {
    background-color: #e1faea; }
  .callout.alert {
    background-color: #fce6e2; }
  .callout.warning {
    background-color: #fff3d9; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

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

.dropdown-pane {
  background-color: #fefefe;
  border: solid 1px rgba(93, 82, 77, 0.125);
  border-radius: 3rem;
  display: block;
  font-size: 16rem;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10; }
  .dropdown-pane.is-open {
    visibility: visible; }

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

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

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

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

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

.dropdown.menu:not(.vertical) .is-dropdown-submenu.first-sub {
  top: 100%;
  left: 0;
  right: auto; }

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

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }
  .is-dropdown-menu.vertical > li .is-dropdown-submenu {
    top: 0;
    left: 100%; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    float: right;
    margin-top: 3px;
    margin-left: 10px; }
  .is-dropdown-submenu-parent.is-down-arrow a {
    padding-right: 1.5rem;
    position: relative; }
  .is-dropdown-submenu-parent.is-down-arrow > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #ff0000 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: absolute;
    top: 0.825rem;
    right: 5px; }
  .is-dropdown-submenu-parent.is-left-arrow > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #ff0000 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    float: left;
    margin-left: 0;
    margin-right: 10px; }
  .is-dropdown-submenu-parent.is-right-arrow > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #ff0000;
    border-left-style: solid;
    border-right-width: 0; }
  .is-dropdown-submenu-parent.is-left-arrow.opens-inner .is-dropdown-submenu {
    right: 0;
    left: auto; }
  .is-dropdown-submenu-parent.is-right-arrow.opens-inner .is-dropdown-submenu {
    left: 0;
    right: auto; }
  .is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
    top: 100%; }
  .is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #fefefe;
  border: solid 1px rgba(93, 82, 77, 0.125); }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
    display: block; }

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

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

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

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

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

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

html,
body {
  height: 100%; }

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-overflow-scrolling: auto; }

.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease; }
  .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
    content: ' ';
    display: table; }
  .off-canvas-wrapper-inner::after {
    clear: both; }

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: #fefefe;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1; }

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

.off-canvas {
  position: absolute;
  background: #e6e6e6;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  -webkit-transform: translateX(0);
          transform: translateX(0); }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.position-left {
    left: -275px;
    top: 0;
    width: 275px; }
    .is-open-left {
      -webkit-transform: translateX(275px);
              transform: translateX(275px); }
  .off-canvas.position-right {
    right: -275px;
    top: 0;
    width: 275px; }
    .is-open-right {
      -webkit-transform: translateX(-275px);
              transform: translateX(-275px); }

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

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

.pagination {
  margin-left: 0;
  margin-bottom: 1.375em; }
  .pagination::before, .pagination::after {
    content: ' ';
    display: table; }
  .pagination::after {
    clear: both; }
  .pagination li {
    font-size: 1rem;
    margin-right: 0.0625rem;
    border-radius: 0.125rem;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media screen and (min-width: 40em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    color: #ff0000;
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 3rem; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e1e1e1; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #e1e1e1;
    color: #0a0a0a;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #e1e1e1;
    cursor: default; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    content: '…';
    padding: 0.1875rem 0.625rem;
    color: #0a0a0a; }

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 3rem; }
  thead, tbody, tfoot {
    border: none;
    background-color: #fefefe; }
  caption {
    font-weight: bold;
    padding: 1.375rem; }
  thead, tfoot {
    background: #281a35;
    color: #fefefe; }
    thead tr, tfoot tr {
      background: transparent; }
    thead th, thead td, tfoot th, tfoot td {
      padding: 1.375rem;
      font-weight: bold;
      text-align: left; }
  tbody tr:nth-child(even) {
    background-color: #f1f1f1; }
  tbody th, tbody td {
    padding: 1.375rem; }

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

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

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

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

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

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

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

.tabs.primary {
  background: #ff0000; }
  .tabs.primary > li > a {
    color: #fefefe; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #f20000; }

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

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

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

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

/* Font awesome icons */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.4.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.4.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.4.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.4.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa, .button--prev::before, .button--next::before, .button--up::before, .button--down::before, .search-submit:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Mixin Overrides*/
/* 
* Icons
* don't directly reference bower-supplied iconsets in your objects, instead put
* includes and mapping in the below icon settings file 
*/
/*
 * Any imports having to do with icons should go here, and then set relevant generic variables 
 * to reference them
 */
/* Font awesome */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?v=4.4.0");
  src: url("//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.4.0") format("embedded-opentype"), url("//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff2?v=4.4.0") format("woff2"), url("//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.woff?v=4.4.0") format("woff"), url("//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.ttf?v=4.4.0") format("truetype"), url("//netdna.bootstrapcdn.com/font-awesome/4.3.0/fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa, .button--prev::before, .button--next::before, .button--up::before, .button--down::before, .search-submit:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: ""; }

.fa-music:before {
  content: ""; }

.fa-search:before {
  content: ""; }

.fa-envelope-o:before {
  content: ""; }

.fa-heart:before {
  content: ""; }

.fa-star:before {
  content: ""; }

.fa-star-o:before {
  content: ""; }

.fa-user:before {
  content: ""; }

.fa-film:before {
  content: ""; }

.fa-th-large:before {
  content: ""; }

.fa-th:before {
  content: ""; }

.fa-th-list:before {
  content: ""; }

.fa-check:before {
  content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: ""; }

.fa-search-plus:before {
  content: ""; }

.fa-search-minus:before {
  content: ""; }

.fa-power-off:before {
  content: ""; }

.fa-signal:before {
  content: ""; }

.fa-gear:before,
.fa-cog:before {
  content: ""; }

.fa-trash-o:before {
  content: ""; }

.fa-home:before {
  content: ""; }

.fa-file-o:before {
  content: ""; }

.fa-clock-o:before {
  content: ""; }

.fa-road:before {
  content: ""; }

.fa-download:before {
  content: ""; }

.fa-arrow-circle-o-down:before {
  content: ""; }

.fa-arrow-circle-o-up:before {
  content: ""; }

.fa-inbox:before {
  content: ""; }

.fa-play-circle-o:before {
  content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: ""; }

.fa-refresh:before {
  content: ""; }

.fa-list-alt:before {
  content: ""; }

.fa-lock:before {
  content: ""; }

.fa-flag:before {
  content: ""; }

.fa-headphones:before {
  content: ""; }

.fa-volume-off:before {
  content: ""; }

.fa-volume-down:before {
  content: ""; }

.fa-volume-up:before {
  content: ""; }

.fa-qrcode:before {
  content: ""; }

.fa-barcode:before {
  content: ""; }

.fa-tag:before {
  content: ""; }

.fa-tags:before {
  content: ""; }

.fa-book:before {
  content: ""; }

.fa-bookmark:before {
  content: ""; }

.fa-print:before {
  content: ""; }

.fa-camera:before {
  content: ""; }

.fa-font:before {
  content: ""; }

.fa-bold:before {
  content: ""; }

.fa-italic:before {
  content: ""; }

.fa-text-height:before {
  content: ""; }

.fa-text-width:before {
  content: ""; }

.fa-align-left:before {
  content: ""; }

.fa-align-center:before {
  content: ""; }

.fa-align-right:before {
  content: ""; }

.fa-align-justify:before {
  content: ""; }

.fa-list:before {
  content: ""; }

.fa-dedent:before,
.fa-outdent:before {
  content: ""; }

.fa-indent:before {
  content: ""; }

.fa-video-camera:before {
  content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: ""; }

.fa-pencil:before {
  content: ""; }

.fa-map-marker:before {
  content: ""; }

.fa-adjust:before {
  content: ""; }

.fa-tint:before {
  content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: ""; }

.fa-share-square-o:before {
  content: ""; }

.fa-check-square-o:before {
  content: ""; }

.fa-arrows:before {
  content: ""; }

.fa-step-backward:before {
  content: ""; }

.fa-fast-backward:before {
  content: ""; }

.fa-backward:before {
  content: ""; }

.fa-play:before {
  content: ""; }

.fa-pause:before {
  content: ""; }

.fa-stop:before {
  content: ""; }

.fa-forward:before {
  content: ""; }

.fa-fast-forward:before {
  content: ""; }

.fa-step-forward:before {
  content: ""; }

.fa-eject:before {
  content: ""; }

.fa-chevron-left:before {
  content: ""; }

.fa-chevron-right:before {
  content: ""; }

.fa-plus-circle:before {
  content: ""; }

.fa-minus-circle:before {
  content: ""; }

.fa-times-circle:before {
  content: ""; }

.fa-check-circle:before {
  content: ""; }

.fa-question-circle:before {
  content: ""; }

.fa-info-circle:before {
  content: ""; }

.fa-crosshairs:before {
  content: ""; }

.fa-times-circle-o:before {
  content: ""; }

.fa-check-circle-o:before {
  content: ""; }

.fa-ban:before {
  content: ""; }

.fa-arrow-left:before {
  content: ""; }

.fa-arrow-right:before {
  content: ""; }

.fa-arrow-up:before {
  content: ""; }

.fa-arrow-down:before {
  content: ""; }

.fa-mail-forward:before,
.fa-share:before {
  content: ""; }

.fa-expand:before {
  content: ""; }

.fa-compress:before {
  content: ""; }

.fa-plus:before {
  content: ""; }

.fa-minus:before {
  content: ""; }

.fa-asterisk:before {
  content: ""; }

.fa-exclamation-circle:before {
  content: ""; }

.fa-gift:before {
  content: ""; }

.fa-leaf:before {
  content: ""; }

.fa-fire:before {
  content: ""; }

.fa-eye:before {
  content: ""; }

.fa-eye-slash:before {
  content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: ""; }

.fa-plane:before {
  content: ""; }

.fa-calendar:before {
  content: ""; }

.fa-random:before {
  content: ""; }

.fa-comment:before {
  content: ""; }

.fa-magnet:before {
  content: ""; }

.fa-chevron-up:before {
  content: ""; }

.fa-chevron-down:before {
  content: ""; }

.fa-retweet:before {
  content: ""; }

.fa-shopping-cart:before {
  content: ""; }

.fa-folder:before {
  content: ""; }

.fa-folder-open:before {
  content: ""; }

.fa-arrows-v:before {
  content: ""; }

.fa-arrows-h:before {
  content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: ""; }

.fa-twitter-square:before {
  content: ""; }

.fa-facebook-square:before {
  content: ""; }

.fa-camera-retro:before {
  content: ""; }

.fa-key:before {
  content: ""; }

.fa-gears:before,
.fa-cogs:before {
  content: ""; }

.fa-comments:before {
  content: ""; }

.fa-thumbs-o-up:before {
  content: ""; }

.fa-thumbs-o-down:before {
  content: ""; }

.fa-star-half:before {
  content: ""; }

.fa-heart-o:before {
  content: ""; }

.fa-sign-out:before {
  content: ""; }

.fa-linkedin-square:before {
  content: ""; }

.fa-thumb-tack:before {
  content: ""; }

.fa-external-link:before {
  content: ""; }

.fa-sign-in:before {
  content: ""; }

.fa-trophy:before {
  content: ""; }

.fa-github-square:before {
  content: ""; }

.fa-upload:before {
  content: ""; }

.fa-lemon-o:before {
  content: ""; }

.fa-phone:before {
  content: ""; }

.fa-square-o:before {
  content: ""; }

.fa-bookmark-o:before {
  content: ""; }

.fa-phone-square:before {
  content: ""; }

.fa-twitter:before {
  content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: ""; }

.fa-github:before {
  content: ""; }

.fa-unlock:before {
  content: ""; }

.fa-credit-card:before {
  content: ""; }

.fa-feed:before,
.fa-rss:before {
  content: ""; }

.fa-hdd-o:before {
  content: ""; }

.fa-bullhorn:before {
  content: ""; }

.fa-bell:before {
  content: ""; }

.fa-certificate:before {
  content: ""; }

.fa-hand-o-right:before {
  content: ""; }

.fa-hand-o-left:before {
  content: ""; }

.fa-hand-o-up:before {
  content: ""; }

.fa-hand-o-down:before {
  content: ""; }

.fa-arrow-circle-left:before {
  content: ""; }

.fa-arrow-circle-right:before {
  content: ""; }

.fa-arrow-circle-up:before {
  content: ""; }

.fa-arrow-circle-down:before {
  content: ""; }

.fa-globe:before {
  content: ""; }

.fa-wrench:before {
  content: ""; }

.fa-tasks:before {
  content: ""; }

.fa-filter:before {
  content: ""; }

.fa-briefcase:before {
  content: ""; }

.fa-arrows-alt:before {
  content: ""; }

.fa-group:before,
.fa-users:before {
  content: ""; }

.fa-chain:before,
.fa-link:before {
  content: ""; }

.fa-cloud:before {
  content: ""; }

.fa-flask:before {
  content: ""; }

.fa-cut:before,
.fa-scissors:before {
  content: ""; }

.fa-copy:before,
.fa-files-o:before {
  content: ""; }

.fa-paperclip:before {
  content: ""; }

.fa-save:before,
.fa-floppy-o:before {
  content: ""; }

.fa-square:before {
  content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: ""; }

.fa-list-ul:before {
  content: ""; }

.fa-list-ol:before {
  content: ""; }

.fa-strikethrough:before {
  content: ""; }

.fa-underline:before {
  content: ""; }

.fa-table:before {
  content: ""; }

.fa-magic:before {
  content: ""; }

.fa-truck:before {
  content: ""; }

.fa-pinterest:before {
  content: ""; }

.fa-pinterest-square:before {
  content: ""; }

.fa-google-plus-square:before {
  content: ""; }

.fa-google-plus:before {
  content: ""; }

.fa-money:before {
  content: ""; }

.fa-caret-down:before {
  content: ""; }

.fa-caret-up:before {
  content: ""; }

.fa-caret-left:before {
  content: ""; }

.fa-caret-right:before {
  content: ""; }

.fa-columns:before {
  content: ""; }

.fa-unsorted:before,
.fa-sort:before {
  content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: ""; }

.fa-envelope:before {
  content: ""; }

.fa-linkedin:before {
  content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
  content: ""; }

.fa-legal:before,
.fa-gavel:before {
  content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: ""; }

.fa-comment-o:before {
  content: ""; }

.fa-comments-o:before {
  content: ""; }

.fa-flash:before,
.fa-bolt:before {
  content: ""; }

.fa-sitemap:before {
  content: ""; }

.fa-umbrella:before {
  content: ""; }

.fa-paste:before,
.fa-clipboard:before {
  content: ""; }

.fa-lightbulb-o:before {
  content: ""; }

.fa-exchange:before {
  content: ""; }

.fa-cloud-download:before {
  content: ""; }

.fa-cloud-upload:before {
  content: ""; }

.fa-user-md:before {
  content: ""; }

.fa-stethoscope:before {
  content: ""; }

.fa-suitcase:before {
  content: ""; }

.fa-bell-o:before {
  content: ""; }

.fa-coffee:before {
  content: ""; }

.fa-cutlery:before {
  content: ""; }

.fa-file-text-o:before {
  content: ""; }

.fa-building-o:before {
  content: ""; }

.fa-hospital-o:before {
  content: ""; }

.fa-ambulance:before {
  content: ""; }

.fa-medkit:before {
  content: ""; }

.fa-fighter-jet:before {
  content: ""; }

.fa-beer:before {
  content: ""; }

.fa-h-square:before {
  content: ""; }

.fa-plus-square:before {
  content: ""; }

.fa-angle-double-left:before {
  content: ""; }

.fa-angle-double-right:before {
  content: ""; }

.fa-angle-double-up:before {
  content: ""; }

.fa-angle-double-down:before {
  content: ""; }

.fa-angle-left:before {
  content: ""; }

.fa-angle-right:before {
  content: ""; }

.fa-angle-up:before {
  content: ""; }

.fa-angle-down:before {
  content: ""; }

.fa-desktop:before {
  content: ""; }

.fa-laptop:before {
  content: ""; }

.fa-tablet:before {
  content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: ""; }

.fa-circle-o:before {
  content: ""; }

.fa-quote-left:before {
  content: ""; }

.fa-quote-right:before {
  content: ""; }

.fa-spinner:before {
  content: ""; }

.fa-circle:before {
  content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
  content: ""; }

.fa-github-alt:before {
  content: ""; }

.fa-folder-o:before {
  content: ""; }

.fa-folder-open-o:before {
  content: ""; }

.fa-smile-o:before {
  content: ""; }

.fa-frown-o:before {
  content: ""; }

.fa-meh-o:before {
  content: ""; }

.fa-gamepad:before {
  content: ""; }

.fa-keyboard-o:before {
  content: ""; }

.fa-flag-o:before {
  content: ""; }

.fa-flag-checkered:before {
  content: ""; }

.fa-terminal:before {
  content: ""; }

.fa-code:before {
  content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: ""; }

.fa-location-arrow:before {
  content: ""; }

.fa-crop:before {
  content: ""; }

.fa-code-fork:before {
  content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: ""; }

.fa-question:before {
  content: ""; }

.fa-info:before {
  content: ""; }

.fa-exclamation:before {
  content: ""; }

.fa-superscript:before {
  content: ""; }

.fa-subscript:before {
  content: ""; }

.fa-eraser:before {
  content: ""; }

.fa-puzzle-piece:before {
  content: ""; }

.fa-microphone:before {
  content: ""; }

.fa-microphone-slash:before {
  content: ""; }

.fa-shield:before {
  content: ""; }

.fa-calendar-o:before {
  content: ""; }

.fa-fire-extinguisher:before {
  content: ""; }

.fa-rocket:before {
  content: ""; }

.fa-maxcdn:before {
  content: ""; }

.fa-chevron-circle-left:before {
  content: ""; }

.fa-chevron-circle-right:before {
  content: ""; }

.fa-chevron-circle-up:before {
  content: ""; }

.fa-chevron-circle-down:before {
  content: ""; }

.fa-html5:before {
  content: ""; }

.fa-css3:before {
  content: ""; }

.fa-anchor:before {
  content: ""; }

.fa-unlock-alt:before {
  content: ""; }

.fa-bullseye:before {
  content: ""; }

.fa-ellipsis-h:before {
  content: ""; }

.fa-ellipsis-v:before {
  content: ""; }

.fa-rss-square:before {
  content: ""; }

.fa-play-circle:before {
  content: ""; }

.fa-ticket:before {
  content: ""; }

.fa-minus-square:before {
  content: ""; }

.fa-minus-square-o:before {
  content: ""; }

.fa-level-up:before {
  content: ""; }

.fa-level-down:before {
  content: ""; }

.fa-check-square:before {
  content: ""; }

.fa-pencil-square:before {
  content: ""; }

.fa-external-link-square:before {
  content: ""; }

.fa-share-square:before {
  content: ""; }

.fa-compass:before {
  content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: ""; }

.fa-euro:before,
.fa-eur:before {
  content: ""; }

.fa-gbp:before {
  content: ""; }

.fa-dollar:before,
.fa-usd:before {
  content: ""; }

.fa-rupee:before,
.fa-inr:before {
  content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: ""; }

.fa-won:before,
.fa-krw:before {
  content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
  content: ""; }

.fa-file:before {
  content: ""; }

.fa-file-text:before {
  content: ""; }

.fa-sort-alpha-asc:before {
  content: ""; }

.fa-sort-alpha-desc:before {
  content: ""; }

.fa-sort-amount-asc:before {
  content: ""; }

.fa-sort-amount-desc:before {
  content: ""; }

.fa-sort-numeric-asc:before {
  content: ""; }

.fa-sort-numeric-desc:before {
  content: ""; }

.fa-thumbs-up:before {
  content: ""; }

.fa-thumbs-down:before {
  content: ""; }

.fa-youtube-square:before {
  content: ""; }

.fa-youtube:before {
  content: ""; }

.fa-xing:before {
  content: ""; }

.fa-xing-square:before {
  content: ""; }

.fa-youtube-play:before {
  content: ""; }

.fa-dropbox:before {
  content: ""; }

.fa-stack-overflow:before {
  content: ""; }

.fa-instagram:before {
  content: ""; }

.fa-flickr:before {
  content: ""; }

.fa-adn:before {
  content: ""; }

.fa-bitbucket:before {
  content: ""; }

.fa-bitbucket-square:before {
  content: ""; }

.fa-tumblr:before {
  content: ""; }

.fa-tumblr-square:before {
  content: ""; }

.fa-long-arrow-down:before {
  content: ""; }

.fa-long-arrow-up:before {
  content: ""; }

.fa-long-arrow-left:before {
  content: ""; }

.fa-long-arrow-right:before {
  content: ""; }

.fa-apple:before {
  content: ""; }

.fa-windows:before {
  content: ""; }

.fa-android:before {
  content: ""; }

.fa-linux:before {
  content: ""; }

.fa-dribbble:before {
  content: ""; }

.fa-skype:before {
  content: ""; }

.fa-foursquare:before {
  content: ""; }

.fa-trello:before {
  content: ""; }

.fa-female:before {
  content: ""; }

.fa-male:before {
  content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
  content: ""; }

.fa-sun-o:before {
  content: ""; }

.fa-moon-o:before {
  content: ""; }

.fa-archive:before {
  content: ""; }

.fa-bug:before {
  content: ""; }

.fa-vk:before {
  content: ""; }

.fa-weibo:before {
  content: ""; }

.fa-renren:before {
  content: ""; }

.fa-pagelines:before {
  content: ""; }

.fa-stack-exchange:before {
  content: ""; }

.fa-arrow-circle-o-right:before {
  content: ""; }

.fa-arrow-circle-o-left:before {
  content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: ""; }

.fa-dot-circle-o:before {
  content: ""; }

.fa-wheelchair:before {
  content: ""; }

.fa-vimeo-square:before {
  content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
  content: ""; }

.fa-plus-square-o:before {
  content: ""; }

.fa-space-shuttle:before {
  content: ""; }

.fa-slack:before {
  content: ""; }

.fa-envelope-square:before {
  content: ""; }

.fa-wordpress:before {
  content: ""; }

.fa-openid:before {
  content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: ""; }

.fa-yahoo:before {
  content: ""; }

.fa-google:before {
  content: ""; }

.fa-reddit:before {
  content: ""; }

.fa-reddit-square:before {
  content: ""; }

.fa-stumbleupon-circle:before {
  content: ""; }

.fa-stumbleupon:before {
  content: ""; }

.fa-delicious:before {
  content: ""; }

.fa-digg:before {
  content: ""; }

.fa-pied-piper:before {
  content: ""; }

.fa-pied-piper-alt:before {
  content: ""; }

.fa-drupal:before {
  content: ""; }

.fa-joomla:before {
  content: ""; }

.fa-language:before {
  content: ""; }

.fa-fax:before {
  content: ""; }

.fa-building:before {
  content: ""; }

.fa-child:before {
  content: ""; }

.fa-paw:before {
  content: ""; }

.fa-spoon:before {
  content: ""; }

.fa-cube:before {
  content: ""; }

.fa-cubes:before {
  content: ""; }

.fa-behance:before {
  content: ""; }

.fa-behance-square:before {
  content: ""; }

.fa-steam:before {
  content: ""; }

.fa-steam-square:before {
  content: ""; }

.fa-recycle:before {
  content: ""; }

.fa-automobile:before,
.fa-car:before {
  content: ""; }

.fa-cab:before,
.fa-taxi:before {
  content: ""; }

.fa-tree:before {
  content: ""; }

.fa-spotify:before {
  content: ""; }

.fa-deviantart:before {
  content: ""; }

.fa-soundcloud:before {
  content: ""; }

.fa-database:before {
  content: ""; }

.fa-file-pdf-o:before {
  content: ""; }

.fa-file-word-o:before {
  content: ""; }

.fa-file-excel-o:before {
  content: ""; }

.fa-file-powerpoint-o:before {
  content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: ""; }

.fa-file-code-o:before {
  content: ""; }

.fa-vine:before {
  content: ""; }

.fa-codepen:before {
  content: ""; }

.fa-jsfiddle:before {
  content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: ""; }

.fa-circle-o-notch:before {
  content: ""; }

.fa-ra:before,
.fa-rebel:before {
  content: ""; }

.fa-ge:before,
.fa-empire:before {
  content: ""; }

.fa-git-square:before {
  content: ""; }

.fa-git:before {
  content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: ""; }

.fa-tencent-weibo:before {
  content: ""; }

.fa-qq:before {
  content: ""; }

.fa-wechat:before,
.fa-weixin:before {
  content: ""; }

.fa-send:before,
.fa-paper-plane:before {
  content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: ""; }

.fa-history:before {
  content: ""; }

.fa-circle-thin:before {
  content: ""; }

.fa-header:before {
  content: ""; }

.fa-paragraph:before {
  content: ""; }

.fa-sliders:before {
  content: ""; }

.fa-share-alt:before {
  content: ""; }

.fa-share-alt-square:before {
  content: ""; }

.fa-bomb:before {
  content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: ""; }

.fa-tty:before {
  content: ""; }

.fa-binoculars:before {
  content: ""; }

.fa-plug:before {
  content: ""; }

.fa-slideshare:before {
  content: ""; }

.fa-twitch:before {
  content: ""; }

.fa-yelp:before {
  content: ""; }

.fa-newspaper-o:before {
  content: ""; }

.fa-wifi:before {
  content: ""; }

.fa-calculator:before {
  content: ""; }

.fa-paypal:before {
  content: ""; }

.fa-google-wallet:before {
  content: ""; }

.fa-cc-visa:before {
  content: ""; }

.fa-cc-mastercard:before {
  content: ""; }

.fa-cc-discover:before {
  content: ""; }

.fa-cc-amex:before {
  content: ""; }

.fa-cc-paypal:before {
  content: ""; }

.fa-cc-stripe:before {
  content: ""; }

.fa-bell-slash:before {
  content: ""; }

.fa-bell-slash-o:before {
  content: ""; }

.fa-trash:before {
  content: ""; }

.fa-copyright:before {
  content: ""; }

.fa-at:before {
  content: ""; }

.fa-eyedropper:before {
  content: ""; }

.fa-paint-brush:before {
  content: ""; }

.fa-birthday-cake:before {
  content: ""; }

.fa-area-chart:before {
  content: ""; }

.fa-pie-chart:before {
  content: ""; }

.fa-line-chart:before {
  content: ""; }

.fa-lastfm:before {
  content: ""; }

.fa-lastfm-square:before {
  content: ""; }

.fa-toggle-off:before {
  content: ""; }

.fa-toggle-on:before {
  content: ""; }

.fa-bicycle:before {
  content: ""; }

.fa-bus:before {
  content: ""; }

.fa-ioxhost:before {
  content: ""; }

.fa-angellist:before {
  content: ""; }

.fa-cc:before {
  content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: ""; }

.fa-meanpath:before {
  content: ""; }

.fa-buysellads:before {
  content: ""; }

.fa-connectdevelop:before {
  content: ""; }

.fa-dashcube:before {
  content: ""; }

.fa-forumbee:before {
  content: ""; }

.fa-leanpub:before {
  content: ""; }

.fa-sellsy:before {
  content: ""; }

.fa-shirtsinbulk:before {
  content: ""; }

.fa-simplybuilt:before {
  content: ""; }

.fa-skyatlas:before {
  content: ""; }

.fa-cart-plus:before {
  content: ""; }

.fa-cart-arrow-down:before {
  content: ""; }

.fa-diamond:before {
  content: ""; }

.fa-ship:before {
  content: ""; }

.fa-user-secret:before {
  content: ""; }

.fa-motorcycle:before {
  content: ""; }

.fa-street-view:before {
  content: ""; }

.fa-heartbeat:before {
  content: ""; }

.fa-venus:before {
  content: ""; }

.fa-mars:before {
  content: ""; }

.fa-mercury:before {
  content: ""; }

.fa-intersex:before,
.fa-transgender:before {
  content: ""; }

.fa-transgender-alt:before {
  content: ""; }

.fa-venus-double:before {
  content: ""; }

.fa-mars-double:before {
  content: ""; }

.fa-venus-mars:before {
  content: ""; }

.fa-mars-stroke:before {
  content: ""; }

.fa-mars-stroke-v:before {
  content: ""; }

.fa-mars-stroke-h:before {
  content: ""; }

.fa-neuter:before {
  content: ""; }

.fa-genderless:before {
  content: ""; }

.fa-facebook-official:before {
  content: ""; }

.fa-pinterest-p:before {
  content: ""; }

.fa-whatsapp:before {
  content: ""; }

.fa-server:before {
  content: ""; }

.fa-user-plus:before {
  content: ""; }

.fa-user-times:before {
  content: ""; }

.fa-hotel:before,
.fa-bed:before {
  content: ""; }

.fa-viacoin:before {
  content: ""; }

.fa-train:before {
  content: ""; }

.fa-subway:before {
  content: ""; }

.fa-medium:before {
  content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
  content: ""; }

.fa-optin-monster:before {
  content: ""; }

.fa-opencart:before {
  content: ""; }

.fa-expeditedssl:before {
  content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
  content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
  content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
  content: ""; }

.fa-mouse-pointer:before {
  content: ""; }

.fa-i-cursor:before {
  content: ""; }

.fa-object-group:before {
  content: ""; }

.fa-object-ungroup:before {
  content: ""; }

.fa-sticky-note:before {
  content: ""; }

.fa-sticky-note-o:before {
  content: ""; }

.fa-cc-jcb:before {
  content: ""; }

.fa-cc-diners-club:before {
  content: ""; }

.fa-clone:before {
  content: ""; }

.fa-balance-scale:before {
  content: ""; }

.fa-hourglass-o:before {
  content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: ""; }

.fa-hourglass:before {
  content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: ""; }

.fa-hand-scissors-o:before {
  content: ""; }

.fa-hand-lizard-o:before {
  content: ""; }

.fa-hand-spock-o:before {
  content: ""; }

.fa-hand-pointer-o:before {
  content: ""; }

.fa-hand-peace-o:before {
  content: ""; }

.fa-trademark:before {
  content: ""; }

.fa-registered:before {
  content: ""; }

.fa-creative-commons:before {
  content: ""; }

.fa-gg:before {
  content: ""; }

.fa-gg-circle:before {
  content: ""; }

.fa-tripadvisor:before {
  content: ""; }

.fa-odnoklassniki:before {
  content: ""; }

.fa-odnoklassniki-square:before {
  content: ""; }

.fa-get-pocket:before {
  content: ""; }

.fa-wikipedia-w:before {
  content: ""; }

.fa-safari:before {
  content: ""; }

.fa-chrome:before {
  content: ""; }

.fa-firefox:before {
  content: ""; }

.fa-opera:before {
  content: ""; }

.fa-internet-explorer:before {
  content: ""; }

.fa-tv:before,
.fa-television:before {
  content: ""; }

.fa-contao:before {
  content: ""; }

.fa-500px:before {
  content: ""; }

.fa-amazon:before {
  content: ""; }

.fa-calendar-plus-o:before {
  content: ""; }

.fa-calendar-minus-o:before {
  content: ""; }

.fa-calendar-times-o:before {
  content: ""; }

.fa-calendar-check-o:before {
  content: ""; }

.fa-industry:before {
  content: ""; }

.fa-map-pin:before {
  content: ""; }

.fa-map-signs:before {
  content: ""; }

.fa-map-o:before {
  content: ""; }

.fa-map:before {
  content: ""; }

.fa-commenting:before {
  content: ""; }

.fa-commenting-o:before {
  content: ""; }

.fa-houzz:before {
  content: ""; }

.fa-vimeo:before {
  content: ""; }

.fa-black-tie:before {
  content: ""; }

.fa-fonticons:before {
  content: ""; }

/* Helper variables */
/* Define commonly used icons */
span.icon-wrapper {
  display: inline-block; }

/* Slick */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/fonts/slick.eot");
  src: url("//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/fonts/slick.eot?#iefix") format("embedded-opentype"), url("//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/fonts/slick.woff") format("woff"), url("//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/fonts/slick.ttf") format("truetype"), url("//cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.5.9/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px\9;
  /*lte IE 8*/
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: black;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 0.5rem;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/*
 * Patterlab styles
 */
/* Colors
/* set color values in the vars file
/* ideally, none of these swatch classes should need to be touched
/* _______________________________________________________________ */
* {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

ul.sg-colors li {
  background-color: #fff; }

.bg-primary {
  color: #fefefe;
  background-color: #ff0000; }
  .bg-primary .heading--alpha {
    color: #fefefe; }
  .bg-primary h1 {
    color: #fefefe; }
  .bg-primary .heading--beta {
    color: #fefefe; }
  .bg-primary h2 {
    color: #fefefe; }
  .bg-primary .heading--gamma {
    color: #fefefe; }
  .bg-primary h3 {
    color: #fefefe; }
  .bg-primary .heading--delta {
    color: #fefefe; }
  .bg-primary h4 {
    color: #fefefe; }
  .bg-primary .heading--epsilon {
    color: #fefefe; }
  .bg-primary h5 {
    color: #fefefe; }
  .bg-primary h6 {
    color: #fefefe; }
  .bg-primary a:link, .bg-primary a:visited {
    color: #fbe8d7; }
  .bg-primary a:hover, .bg-primary a:focus, .bg-primary a:active {
    color: #fff; }
  .bg-primary a:link, .bg-primary a:visited {
    color: #fbe8d7; }
  .bg-primary a:hover, .bg-primary a:focus, .bg-primary a:active {
    color: #fff; }

.bg-secondary {
  color: #fefefe;
  background-color: #8A1538; }
  .bg-secondary .heading--alpha {
    color: #fefefe; }
  .bg-secondary h1 {
    color: #fefefe; }
  .bg-secondary .heading--beta {
    color: #fefefe; }
  .bg-secondary h2 {
    color: #fefefe; }
  .bg-secondary .heading--gamma {
    color: #fefefe; }
  .bg-secondary h3 {
    color: #fefefe; }
  .bg-secondary .heading--delta {
    color: #fefefe; }
  .bg-secondary h4 {
    color: #fefefe; }
  .bg-secondary .heading--epsilon {
    color: #fefefe; }
  .bg-secondary h5 {
    color: #fefefe; }
  .bg-secondary h6 {
    color: #fefefe; }
  .bg-secondary a:link, .bg-secondary a:visited {
    color: #fbe8d7; }
  .bg-secondary a:hover, .bg-secondary a:focus, .bg-secondary a:active {
    color: #fff; }
  .bg-secondary a:link, .bg-secondary a:visited {
    color: #fbe8d7; }
  .bg-secondary a:hover, .bg-secondary a:focus, .bg-secondary a:active {
    color: #fff; }

.bg-tertiary {
  color: #fefefe;
  background-color: #281a35; }
  .bg-tertiary .heading--alpha {
    color: #fefefe; }
  .bg-tertiary h1 {
    color: #fefefe; }
  .bg-tertiary .heading--beta {
    color: #fefefe; }
  .bg-tertiary h2 {
    color: #fefefe; }
  .bg-tertiary .heading--gamma {
    color: #fefefe; }
  .bg-tertiary h3 {
    color: #fefefe; }
  .bg-tertiary .heading--delta {
    color: #fefefe; }
  .bg-tertiary h4 {
    color: #fefefe; }
  .bg-tertiary .heading--epsilon {
    color: #fefefe; }
  .bg-tertiary h5 {
    color: #fefefe; }
  .bg-tertiary h6 {
    color: #fefefe; }
  .bg-tertiary a:link, .bg-tertiary a:visited {
    color: #fbe8d7; }
  .bg-tertiary a:hover, .bg-tertiary a:focus, .bg-tertiary a:active {
    color: #fff; }
  .bg-tertiary a:link, .bg-tertiary a:visited {
    color: #fbe8d7; }
  .bg-tertiary a:hover, .bg-tertiary a:focus, .bg-tertiary a:active {
    color: #fff; }

.bg-quaternary {
  color: #5d524d;
  background-color: #94e6d8; }

.bg-quinary {
  color: #5d524d;
  background-color: #fbe8d7; }

.bg-senary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-senary .heading--alpha {
    color: #fefefe; }
  .bg-senary h1 {
    color: #fefefe; }
  .bg-senary .heading--beta {
    color: #fefefe; }
  .bg-senary h2 {
    color: #fefefe; }
  .bg-senary .heading--gamma {
    color: #fefefe; }
  .bg-senary h3 {
    color: #fefefe; }
  .bg-senary .heading--delta {
    color: #fefefe; }
  .bg-senary h4 {
    color: #fefefe; }
  .bg-senary .heading--epsilon {
    color: #fefefe; }
  .bg-senary h5 {
    color: #fefefe; }
  .bg-senary h6 {
    color: #fefefe; }
  .bg-senary a:link, .bg-senary a:visited {
    color: #fbe8d7; }
  .bg-senary a:hover, .bg-senary a:focus, .bg-senary a:active {
    color: #fff; }
  .bg-senary a:link, .bg-senary a:visited {
    color: #fbe8d7; }
  .bg-senary a:hover, .bg-senary a:focus, .bg-senary a:active {
    color: #fff; }

.bg-septenary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-septenary .heading--alpha {
    color: #fefefe; }
  .bg-septenary h1 {
    color: #fefefe; }
  .bg-septenary .heading--beta {
    color: #fefefe; }
  .bg-septenary h2 {
    color: #fefefe; }
  .bg-septenary .heading--gamma {
    color: #fefefe; }
  .bg-septenary h3 {
    color: #fefefe; }
  .bg-septenary .heading--delta {
    color: #fefefe; }
  .bg-septenary h4 {
    color: #fefefe; }
  .bg-septenary .heading--epsilon {
    color: #fefefe; }
  .bg-septenary h5 {
    color: #fefefe; }
  .bg-septenary h6 {
    color: #fefefe; }
  .bg-septenary a:link, .bg-septenary a:visited {
    color: #fbe8d7; }
  .bg-septenary a:hover, .bg-septenary a:focus, .bg-septenary a:active {
    color: #fff; }
  .bg-septenary a:link, .bg-septenary a:visited {
    color: #fbe8d7; }
  .bg-septenary a:hover, .bg-septenary a:focus, .bg-septenary a:active {
    color: #fff; }

.bg-octonary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-octonary .heading--alpha {
    color: #fefefe; }
  .bg-octonary h1 {
    color: #fefefe; }
  .bg-octonary .heading--beta {
    color: #fefefe; }
  .bg-octonary h2 {
    color: #fefefe; }
  .bg-octonary .heading--gamma {
    color: #fefefe; }
  .bg-octonary h3 {
    color: #fefefe; }
  .bg-octonary .heading--delta {
    color: #fefefe; }
  .bg-octonary h4 {
    color: #fefefe; }
  .bg-octonary .heading--epsilon {
    color: #fefefe; }
  .bg-octonary h5 {
    color: #fefefe; }
  .bg-octonary h6 {
    color: #fefefe; }
  .bg-octonary a:link, .bg-octonary a:visited {
    color: #fbe8d7; }
  .bg-octonary a:hover, .bg-octonary a:focus, .bg-octonary a:active {
    color: #fff; }
  .bg-octonary a:link, .bg-octonary a:visited {
    color: #fbe8d7; }
  .bg-octonary a:hover, .bg-octonary a:focus, .bg-octonary a:active {
    color: #fff; }

.bg-nonary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-nonary .heading--alpha {
    color: #fefefe; }
  .bg-nonary h1 {
    color: #fefefe; }
  .bg-nonary .heading--beta {
    color: #fefefe; }
  .bg-nonary h2 {
    color: #fefefe; }
  .bg-nonary .heading--gamma {
    color: #fefefe; }
  .bg-nonary h3 {
    color: #fefefe; }
  .bg-nonary .heading--delta {
    color: #fefefe; }
  .bg-nonary h4 {
    color: #fefefe; }
  .bg-nonary .heading--epsilon {
    color: #fefefe; }
  .bg-nonary h5 {
    color: #fefefe; }
  .bg-nonary h6 {
    color: #fefefe; }
  .bg-nonary a:link, .bg-nonary a:visited {
    color: #fbe8d7; }
  .bg-nonary a:hover, .bg-nonary a:focus, .bg-nonary a:active {
    color: #fff; }
  .bg-nonary a:link, .bg-nonary a:visited {
    color: #fbe8d7; }
  .bg-nonary a:hover, .bg-nonary a:focus, .bg-nonary a:active {
    color: #fff; }

.bg-denary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-denary .heading--alpha {
    color: #fefefe; }
  .bg-denary h1 {
    color: #fefefe; }
  .bg-denary .heading--beta {
    color: #fefefe; }
  .bg-denary h2 {
    color: #fefefe; }
  .bg-denary .heading--gamma {
    color: #fefefe; }
  .bg-denary h3 {
    color: #fefefe; }
  .bg-denary .heading--delta {
    color: #fefefe; }
  .bg-denary h4 {
    color: #fefefe; }
  .bg-denary .heading--epsilon {
    color: #fefefe; }
  .bg-denary h5 {
    color: #fefefe; }
  .bg-denary h6 {
    color: #fefefe; }
  .bg-denary a:link, .bg-denary a:visited {
    color: #fbe8d7; }
  .bg-denary a:hover, .bg-denary a:focus, .bg-denary a:active {
    color: #fff; }
  .bg-denary a:link, .bg-denary a:visited {
    color: #fbe8d7; }
  .bg-denary a:hover, .bg-denary a:focus, .bg-denary a:active {
    color: #fff; }

.bg-accent-primary {
  color: #fefefe;
  background-color: #cf0000; }
  .bg-accent-primary .heading--alpha {
    color: #fefefe; }
  .bg-accent-primary h1 {
    color: #fefefe; }
  .bg-accent-primary .heading--beta {
    color: #fefefe; }
  .bg-accent-primary h2 {
    color: #fefefe; }
  .bg-accent-primary .heading--gamma {
    color: #fefefe; }
  .bg-accent-primary h3 {
    color: #fefefe; }
  .bg-accent-primary .heading--delta {
    color: #fefefe; }
  .bg-accent-primary h4 {
    color: #fefefe; }
  .bg-accent-primary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-primary h5 {
    color: #fefefe; }
  .bg-accent-primary h6 {
    color: #fefefe; }
  .bg-accent-primary a:link, .bg-accent-primary a:visited {
    color: #fbe8d7; }
  .bg-accent-primary a:hover, .bg-accent-primary a:focus, .bg-accent-primary a:active {
    color: #fff; }
  .bg-accent-primary a:link, .bg-accent-primary a:visited {
    color: #fbe8d7; }
  .bg-accent-primary a:hover, .bg-accent-primary a:focus, .bg-accent-primary a:active {
    color: #fff; }

.bg-accent-secondary {
  color: #fefefe;
  background-color: #cf0000; }
  .bg-accent-secondary .heading--alpha {
    color: #fefefe; }
  .bg-accent-secondary h1 {
    color: #fefefe; }
  .bg-accent-secondary .heading--beta {
    color: #fefefe; }
  .bg-accent-secondary h2 {
    color: #fefefe; }
  .bg-accent-secondary .heading--gamma {
    color: #fefefe; }
  .bg-accent-secondary h3 {
    color: #fefefe; }
  .bg-accent-secondary .heading--delta {
    color: #fefefe; }
  .bg-accent-secondary h4 {
    color: #fefefe; }
  .bg-accent-secondary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-secondary h5 {
    color: #fefefe; }
  .bg-accent-secondary h6 {
    color: #fefefe; }
  .bg-accent-secondary a:link, .bg-accent-secondary a:visited {
    color: #fbe8d7; }
  .bg-accent-secondary a:hover, .bg-accent-secondary a:focus, .bg-accent-secondary a:active {
    color: #fff; }
  .bg-accent-secondary a:link, .bg-accent-secondary a:visited {
    color: #fbe8d7; }
  .bg-accent-secondary a:hover, .bg-accent-secondary a:focus, .bg-accent-secondary a:active {
    color: #fff; }

.bg-accent-tertiary {
  color: #fefefe;
  background-color: #5b3d76; }
  .bg-accent-tertiary .heading--alpha {
    color: #fefefe; }
  .bg-accent-tertiary h1 {
    color: #fefefe; }
  .bg-accent-tertiary .heading--beta {
    color: #fefefe; }
  .bg-accent-tertiary h2 {
    color: #fefefe; }
  .bg-accent-tertiary .heading--gamma {
    color: #fefefe; }
  .bg-accent-tertiary h3 {
    color: #fefefe; }
  .bg-accent-tertiary .heading--delta {
    color: #fefefe; }
  .bg-accent-tertiary h4 {
    color: #fefefe; }
  .bg-accent-tertiary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-tertiary h5 {
    color: #fefefe; }
  .bg-accent-tertiary h6 {
    color: #fefefe; }
  .bg-accent-tertiary a:link, .bg-accent-tertiary a:visited {
    color: #fbe8d7; }
  .bg-accent-tertiary a:hover, .bg-accent-tertiary a:focus, .bg-accent-tertiary a:active {
    color: #fff; }
  .bg-accent-tertiary a:link, .bg-accent-tertiary a:visited {
    color: #fbe8d7; }
  .bg-accent-tertiary a:hover, .bg-accent-tertiary a:focus, .bg-accent-tertiary a:active {
    color: #fff; }

.bg-accent-quaternary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-accent-quaternary .heading--alpha {
    color: #fefefe; }
  .bg-accent-quaternary h1 {
    color: #fefefe; }
  .bg-accent-quaternary .heading--beta {
    color: #fefefe; }
  .bg-accent-quaternary h2 {
    color: #fefefe; }
  .bg-accent-quaternary .heading--gamma {
    color: #fefefe; }
  .bg-accent-quaternary h3 {
    color: #fefefe; }
  .bg-accent-quaternary .heading--delta {
    color: #fefefe; }
  .bg-accent-quaternary h4 {
    color: #fefefe; }
  .bg-accent-quaternary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-quaternary h5 {
    color: #fefefe; }
  .bg-accent-quaternary h6 {
    color: #fefefe; }
  .bg-accent-quaternary a:link, .bg-accent-quaternary a:visited {
    color: #fbe8d7; }
  .bg-accent-quaternary a:hover, .bg-accent-quaternary a:focus, .bg-accent-quaternary a:active {
    color: #fff; }
  .bg-accent-quaternary a:link, .bg-accent-quaternary a:visited {
    color: #fbe8d7; }
  .bg-accent-quaternary a:hover, .bg-accent-quaternary a:focus, .bg-accent-quaternary a:active {
    color: #fff; }

.bg-accent-quinary {
  color: #5d524d;
  background-color: #fff; }

.bg-accent-senary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-accent-senary .heading--alpha {
    color: #fefefe; }
  .bg-accent-senary h1 {
    color: #fefefe; }
  .bg-accent-senary .heading--beta {
    color: #fefefe; }
  .bg-accent-senary h2 {
    color: #fefefe; }
  .bg-accent-senary .heading--gamma {
    color: #fefefe; }
  .bg-accent-senary h3 {
    color: #fefefe; }
  .bg-accent-senary .heading--delta {
    color: #fefefe; }
  .bg-accent-senary h4 {
    color: #fefefe; }
  .bg-accent-senary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-senary h5 {
    color: #fefefe; }
  .bg-accent-senary h6 {
    color: #fefefe; }
  .bg-accent-senary a:link, .bg-accent-senary a:visited {
    color: #fbe8d7; }
  .bg-accent-senary a:hover, .bg-accent-senary a:focus, .bg-accent-senary a:active {
    color: #fff; }
  .bg-accent-senary a:link, .bg-accent-senary a:visited {
    color: #fbe8d7; }
  .bg-accent-senary a:hover, .bg-accent-senary a:focus, .bg-accent-senary a:active {
    color: #fff; }

.bg-accent-septenary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-accent-septenary .heading--alpha {
    color: #fefefe; }
  .bg-accent-septenary h1 {
    color: #fefefe; }
  .bg-accent-septenary .heading--beta {
    color: #fefefe; }
  .bg-accent-septenary h2 {
    color: #fefefe; }
  .bg-accent-septenary .heading--gamma {
    color: #fefefe; }
  .bg-accent-septenary h3 {
    color: #fefefe; }
  .bg-accent-septenary .heading--delta {
    color: #fefefe; }
  .bg-accent-septenary h4 {
    color: #fefefe; }
  .bg-accent-septenary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-septenary h5 {
    color: #fefefe; }
  .bg-accent-septenary h6 {
    color: #fefefe; }
  .bg-accent-septenary a:link, .bg-accent-septenary a:visited {
    color: #fbe8d7; }
  .bg-accent-septenary a:hover, .bg-accent-septenary a:focus, .bg-accent-septenary a:active {
    color: #fff; }
  .bg-accent-septenary a:link, .bg-accent-septenary a:visited {
    color: #fbe8d7; }
  .bg-accent-septenary a:hover, .bg-accent-septenary a:focus, .bg-accent-septenary a:active {
    color: #fff; }

.bg-accent-octonary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-accent-octonary .heading--alpha {
    color: #fefefe; }
  .bg-accent-octonary h1 {
    color: #fefefe; }
  .bg-accent-octonary .heading--beta {
    color: #fefefe; }
  .bg-accent-octonary h2 {
    color: #fefefe; }
  .bg-accent-octonary .heading--gamma {
    color: #fefefe; }
  .bg-accent-octonary h3 {
    color: #fefefe; }
  .bg-accent-octonary .heading--delta {
    color: #fefefe; }
  .bg-accent-octonary h4 {
    color: #fefefe; }
  .bg-accent-octonary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-octonary h5 {
    color: #fefefe; }
  .bg-accent-octonary h6 {
    color: #fefefe; }
  .bg-accent-octonary a:link, .bg-accent-octonary a:visited {
    color: #fbe8d7; }
  .bg-accent-octonary a:hover, .bg-accent-octonary a:focus, .bg-accent-octonary a:active {
    color: #fff; }
  .bg-accent-octonary a:link, .bg-accent-octonary a:visited {
    color: #fbe8d7; }
  .bg-accent-octonary a:hover, .bg-accent-octonary a:focus, .bg-accent-octonary a:active {
    color: #fff; }

.bg-accent-nonary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-accent-nonary .heading--alpha {
    color: #fefefe; }
  .bg-accent-nonary h1 {
    color: #fefefe; }
  .bg-accent-nonary .heading--beta {
    color: #fefefe; }
  .bg-accent-nonary h2 {
    color: #fefefe; }
  .bg-accent-nonary .heading--gamma {
    color: #fefefe; }
  .bg-accent-nonary h3 {
    color: #fefefe; }
  .bg-accent-nonary .heading--delta {
    color: #fefefe; }
  .bg-accent-nonary h4 {
    color: #fefefe; }
  .bg-accent-nonary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-nonary h5 {
    color: #fefefe; }
  .bg-accent-nonary h6 {
    color: #fefefe; }
  .bg-accent-nonary a:link, .bg-accent-nonary a:visited {
    color: #fbe8d7; }
  .bg-accent-nonary a:hover, .bg-accent-nonary a:focus, .bg-accent-nonary a:active {
    color: #fff; }
  .bg-accent-nonary a:link, .bg-accent-nonary a:visited {
    color: #fbe8d7; }
  .bg-accent-nonary a:hover, .bg-accent-nonary a:focus, .bg-accent-nonary a:active {
    color: #fff; }

.bg-accent-denary {
  color: #fefefe;
  background-color: #e31ace; }
  .bg-accent-denary .heading--alpha {
    color: #fefefe; }
  .bg-accent-denary h1 {
    color: #fefefe; }
  .bg-accent-denary .heading--beta {
    color: #fefefe; }
  .bg-accent-denary h2 {
    color: #fefefe; }
  .bg-accent-denary .heading--gamma {
    color: #fefefe; }
  .bg-accent-denary h3 {
    color: #fefefe; }
  .bg-accent-denary .heading--delta {
    color: #fefefe; }
  .bg-accent-denary h4 {
    color: #fefefe; }
  .bg-accent-denary .heading--epsilon {
    color: #fefefe; }
  .bg-accent-denary h5 {
    color: #fefefe; }
  .bg-accent-denary h6 {
    color: #fefefe; }
  .bg-accent-denary a:link, .bg-accent-denary a:visited {
    color: #fbe8d7; }
  .bg-accent-denary a:hover, .bg-accent-denary a:focus, .bg-accent-denary a:active {
    color: #fff; }
  .bg-accent-denary a:link, .bg-accent-denary a:visited {
    color: #fbe8d7; }
  .bg-accent-denary a:hover, .bg-accent-denary a:focus, .bg-accent-denary a:active {
    color: #fff; }

.bg-shade {
  color: #fefefe;
  background-color: #5d524d; }
  .bg-shade .heading--alpha {
    color: #fefefe; }
  .bg-shade h1 {
    color: #fefefe; }
  .bg-shade .heading--beta {
    color: #fefefe; }
  .bg-shade h2 {
    color: #fefefe; }
  .bg-shade .heading--gamma {
    color: #fefefe; }
  .bg-shade h3 {
    color: #fefefe; }
  .bg-shade .heading--delta {
    color: #fefefe; }
  .bg-shade h4 {
    color: #fefefe; }
  .bg-shade .heading--epsilon {
    color: #fefefe; }
  .bg-shade h5 {
    color: #fefefe; }
  .bg-shade h6 {
    color: #fefefe; }
  .bg-shade a:link, .bg-shade a:visited {
    color: #fbe8d7; }
  .bg-shade a:hover, .bg-shade a:focus, .bg-shade a:active {
    color: #fff; }
  .bg-shade a:link, .bg-shade a:visited {
    color: #fbe8d7; }
  .bg-shade a:hover, .bg-shade a:focus, .bg-shade a:active {
    color: #fff; }

.bg-shade-dark {
  color: #fefefe;
  background-color: #393939; }
  .bg-shade-dark .heading--alpha {
    color: #fefefe; }
  .bg-shade-dark h1 {
    color: #fefefe; }
  .bg-shade-dark .heading--beta {
    color: #fefefe; }
  .bg-shade-dark h2 {
    color: #fefefe; }
  .bg-shade-dark .heading--gamma {
    color: #fefefe; }
  .bg-shade-dark h3 {
    color: #fefefe; }
  .bg-shade-dark .heading--delta {
    color: #fefefe; }
  .bg-shade-dark h4 {
    color: #fefefe; }
  .bg-shade-dark .heading--epsilon {
    color: #fefefe; }
  .bg-shade-dark h5 {
    color: #fefefe; }
  .bg-shade-dark h6 {
    color: #fefefe; }
  .bg-shade-dark a:link, .bg-shade-dark a:visited {
    color: #fbe8d7; }
  .bg-shade-dark a:hover, .bg-shade-dark a:focus, .bg-shade-dark a:active {
    color: #fff; }
  .bg-shade-dark a:link, .bg-shade-dark a:visited {
    color: #fbe8d7; }
  .bg-shade-dark a:hover, .bg-shade-dark a:focus, .bg-shade-dark a:active {
    color: #fff; }

.bg-shade-darker {
  color: #fefefe;
  background-color: #222222; }
  .bg-shade-darker .heading--alpha {
    color: #fefefe; }
  .bg-shade-darker h1 {
    color: #fefefe; }
  .bg-shade-darker .heading--beta {
    color: #fefefe; }
  .bg-shade-darker h2 {
    color: #fefefe; }
  .bg-shade-darker .heading--gamma {
    color: #fefefe; }
  .bg-shade-darker h3 {
    color: #fefefe; }
  .bg-shade-darker .heading--delta {
    color: #fefefe; }
  .bg-shade-darker h4 {
    color: #fefefe; }
  .bg-shade-darker .heading--epsilon {
    color: #fefefe; }
  .bg-shade-darker h5 {
    color: #fefefe; }
  .bg-shade-darker h6 {
    color: #fefefe; }
  .bg-shade-darker a:link, .bg-shade-darker a:visited {
    color: #fbe8d7; }
  .bg-shade-darker a:hover, .bg-shade-darker a:focus, .bg-shade-darker a:active {
    color: #fff; }
  .bg-shade-darker a:link, .bg-shade-darker a:visited {
    color: #fbe8d7; }
  .bg-shade-darker a:hover, .bg-shade-darker a:focus, .bg-shade-darker a:active {
    color: #fff; }

.bg-shade-darkest {
  color: #fefefe;
  background-color: #000000; }
  .bg-shade-darkest .heading--alpha {
    color: #fefefe; }
  .bg-shade-darkest h1 {
    color: #fefefe; }
  .bg-shade-darkest .heading--beta {
    color: #fefefe; }
  .bg-shade-darkest h2 {
    color: #fefefe; }
  .bg-shade-darkest .heading--gamma {
    color: #fefefe; }
  .bg-shade-darkest h3 {
    color: #fefefe; }
  .bg-shade-darkest .heading--delta {
    color: #fefefe; }
  .bg-shade-darkest h4 {
    color: #fefefe; }
  .bg-shade-darkest .heading--epsilon {
    color: #fefefe; }
  .bg-shade-darkest h5 {
    color: #fefefe; }
  .bg-shade-darkest h6 {
    color: #fefefe; }
  .bg-shade-darkest a:link, .bg-shade-darkest a:visited {
    color: #fbe8d7; }
  .bg-shade-darkest a:hover, .bg-shade-darkest a:focus, .bg-shade-darkest a:active {
    color: #fff; }
  .bg-shade-darkest a:link, .bg-shade-darkest a:visited {
    color: #fbe8d7; }
  .bg-shade-darkest a:hover, .bg-shade-darkest a:focus, .bg-shade-darkest a:active {
    color: #fff; }

.bg-shade-light {
  color: #5d524d;
  background-color: #e1e1e1; }

.bg-shade-lighter {
  color: #5d524d;
  background-color: #efefef; }

.bg-shade-lightest {
  color: #5d524d;
  background-color: #ffffff; }

/* Fonts
/* _______________________________________________________________ */
.font-primary {
  font-family: "Lato", "Helvetica", "Arial", sans-serif; }

.font-secondary {
  font-family: "Droid Serif", "Georgia", serif; }

.font-tertiary {
  font-family: "Roboto", "Helvetica", "Arial", sans-serif; }

.font-tertiary-condensed {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif; }

.font-size-smallest {
  font-size: 0.65em; }

.font-size-smaller {
  font-size: 0.75em; }

.font-size-small {
  font-size: 0.875em; }

.font-size-default {
  font-size: 1em; }

.font-size-large {
  font-size: 1.25em; }

.font-size-larger {
  font-size: 1.5em; }

.font-size-largest {
  font-size: 2em; }

.clearfix {
  *zoom: 1; }

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

.clearfix::after {
  clear: both; }

.no-wrap {
  white-space: nowrap; }

.extra-space-after {
  margin-bottom: 5rem; }

.border-top {
  border-top: solid 2px rgba(93, 82, 77, 0.125); }

.border-right {
  border-right: solid 2px rgba(93, 82, 77, 0.125); }

.border-bottom {
  border-bottom: solid 2px rgba(93, 82, 77, 0.125); }

.border-left {
  border-left: solid 2px rgba(93, 82, 77, 0.125); }

.sr {
  position: absolute;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* for Internet Explorer */
  clip: rect(1px, 1px, 1px, 1px); }

.animate-after--slide-up {
  position: relative;
  top: 0;
  opacity: 100%;
  -webkit-transition: top 0.4s ease-out, opacity 0.3s ease-out;
  transition: top 0.4s ease-out, opacity 0.3s ease-out; }

.animate-before--slide-up {
  position: relative;
  top: 50vh;
  opacity: 0; }

.teaser-set--animated .teaser__row-wrapper {
  position: relative; }

.squelch-animation {
  -webkit-transition: all 0s step-start !important;
  transition: all 0s step-start !important; }

/* -------------------------------------------------------------- */
/*	Atoms - Text
/* _______________________________________________________________ */
html {
  font-size: 16px; }

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

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

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

abbr {
  border-bottom: 1px dotted #5d524d;
  cursor: help; }

.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.letter-spaced {
  letter-spacing: 0.125rem; }

.hr--invisible {
  border-bottom: 0; }

.hr--dashed {
  background-color: transparent;
  background-image: -webkit-linear-gradient(left, #ff0000 45%, rgba(255, 0, 0, 0) 0%);
  background-image: linear-gradient(to right, #ff0000 45%, rgba(255, 0, 0, 0) 0%);
  background-position: bottom;
  background-size: 15px 100%;
  background-repeat: repeat-x;
  border: 0;
  height: 3px; }

/* Headings
/* _______________________________________________________________ */
.heading--alpha {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

h1 {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

.heading--beta {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

h2 {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

.heading--gamma {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

h3 {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

.heading--delta {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

h4 {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

.heading--epsilon {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

h5 {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

h6 {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal; }

.heading--alpha {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--alpha {
      font-size: 3rem; } }

h1 {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h1 {
      font-size: 3rem; } }

.heading--beta {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--beta {
      font-size: 3rem; } }

h2 {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h2 {
      font-size: 3rem; } }

.heading--gamma {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--gamma {
      font-size: 3rem; } }

h3 {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h3 {
      font-size: 3rem; } }

.heading--delta {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--delta {
      font-size: 3rem; } }

h4 {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h4 {
      font-size: 3rem; } }

.heading--epsilon {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--epsilon {
      font-size: 3rem; } }

h5 {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h5 {
      font-size: 3rem; } }

h6 {
  font-size: 1.5rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h6 {
      font-size: 3rem; } }

.heading--beta {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--beta {
      font-size: 2rem; } }

h2 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h2 {
      font-size: 2rem; } }

.heading--gamma {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--gamma {
      font-size: 2rem; } }

h3 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h3 {
      font-size: 2rem; } }

.heading--delta {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--delta {
      font-size: 2rem; } }

h4 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h4 {
      font-size: 2rem; } }

.heading--epsilon {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--epsilon {
      font-size: 2rem; } }

h5 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h5 {
      font-size: 2rem; } }

h6 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h6 {
      font-size: 2rem; } }

.heading--gamma {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    .heading--gamma {
      font-size: 1.125rem; } }
  .text-content .heading--gamma {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .text-content .heading--gamma {
        font-size: 1.5rem; } }

h3 {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    h3 {
      font-size: 1.125rem; } }
  .text-content h3 {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .text-content h3 {
        font-size: 1.5rem; } }

.heading--delta {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    .heading--delta {
      font-size: 1.125rem; } }
  .text-content .heading--delta {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .text-content .heading--delta {
        font-size: 1.5rem; } }

h4 {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    h4 {
      font-size: 1.125rem; } }
  .text-content h4 {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .text-content h4 {
        font-size: 1.5rem; } }

.heading--epsilon {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    .heading--epsilon {
      font-size: 1.125rem; } }
  .text-content .heading--epsilon {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .text-content .heading--epsilon {
        font-size: 1.5rem; } }

h5 {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    h5 {
      font-size: 1.125rem; } }
  .text-content h5 {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .text-content h5 {
        font-size: 1.5rem; } }

h6 {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    h6 {
      font-size: 1.125rem; } }
  .text-content h6 {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .text-content h6 {
        font-size: 1.5rem; } }

.heading--delta {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--delta {
      font-size: 1.5rem; } }

h4 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h4 {
      font-size: 1.5rem; } }

.heading--epsilon {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--epsilon {
      font-size: 1.5rem; } }

h5 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h5 {
      font-size: 1.5rem; } }

h6 {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.125rem;
  font-weight: normal;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h6 {
      font-size: 1.5rem; } }

.heading--epsilon {
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.0625rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .heading--epsilon {
      font-size: 1.25rem; } }

h5 {
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.0625rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h5 {
      font-size: 1.25rem; } }

h6 {
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.0625rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    h6 {
      font-size: 1.25rem; } }

.heading {
  line-height: 1.4; }

.heading--page {
  font-size: 3rem;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-weight: bolder;
  color: #0a0a0a;
  line-height: 1.125; }

.subhead,
.superhead {
  font-weight: normal; }

.superhead {
  text-transform: uppercase; }

/* Links
/* _______________________________________________________________ */
a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  outline: 0; }
  p a {
    text-decoration: underline; }

.anchor-dark-bg:link, .anchor-dark-bg:visited {
  color: #fbe8d7; }

.anchor-dark-bg:hover, .anchor-dark-bg:focus, .anchor-dark-bg:active {
  color: #fff; }

.anchor-underlined:link, .anchor-underlined:visited {
  border-bottom: solid 2px rgba(93, 82, 77, 0.125);
  border-bottom-color: "currentColor";
  padding-bottom: 0.75em; }

.anchor-underlined:hover, .anchor-underlined:focus, .anchor-underlined:active {
  border-bottom: solid 2px rgba(93, 82, 77, 0.125);
  border-bottom-color: "currentColor";
  padding-bottom: 0.75em; }

/* -------------------------------------------------------------- */
/*    Atoms - Tables
/* -------------------------------------------------------------- */
/* Table
/* _______________________________________________________________ */
table {
  border-collapse: separate; }
  table tbody,
  table thead,
  table th,
  table tr,
  table td {
    -webkit-backface-visibility: visible;
            backface-visibility: visible; }
  table tbody tr {
    padding: 1.375rem; }
  table tbody td {
    padding: 0; }
  table thead {
    color: #fefefe;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 1.1875rem;
    font-weight: bold;
    text-transform: uppercase; }
    @media screen and (min-width: 40em) {
      table thead {
        font-size: 1.125rem; } }
    table thead td,
    table thead th {
      padding: 0.5rem 1.375rem; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    table thead {
      display: none; }
    table tfoot {
      display: none; }
    table tr,
    table th,
    table td {
      display: block; }
    table td {
      border-top: 0; } }
  @media screen and (min-width: 40em) {
    table tbody td {
      padding: 1.375rem;
      border-bottom: solid 1px rgba(93, 82, 77, 0.125);
      border-color: rgba(10, 10, 10, 0.125); }
    table thead td,
    table thead th {
      border-left: solid 1px rgba(93, 82, 77, 0.125);
      border-left-color: #754c9c; }
      table thead td:first-child,
      table thead th:first-child {
        border-left: none; } }

/*------------------------------------*    $MEDIA ELEMENTS
\*------------------------------------*/
iframe {
  margin-bottom: 1rem; }

.desaturate {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%); }

figure {
  position: relative;
  margin: 0;
  padding: 0; }

/* -------------------------------------------------------------- */
/*    Atoms - Lists
/* -------------------------------------------------------------- */
/* Definition Lists
 /* _______________________________________________________________ */
dl {
  margin: 0; }
  dl dt {
    margin: 0; }
    dl dt.no-definition {
      margin-bottom: 0.75rem; }

dd {
  margin-left: 0; }

/* Unordered, Ordered (set defaults)
 /* _______________________________________________________________ */
ol,
ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none; }
  ol li,
  ul li {
    margin-left: 1.4375rem;
    text-indent: -1rem; }
    ol li::before,
    ul li::before {
      display: inline-block;
      color: #94e6d8; }

ul li {
  margin-left: 1.5rem;
  text-indent: -1.5rem; }
  ul li::before {
    margin-right: 0.25rem;
    margin-left: 0;
    width: 1.25rem;
    vertical-align: 0.25;
    text-indent: 0;
    line-height: inherit;
    font-family: "FontAwesome";
    font-size: 1.25rem;
    content: "■"; }

ul.link-list > a {
  display: block;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem; }

ul.link-list li {
  margin-left: 1.5rem;
  border-bottom: solid 2px rgba(93, 82, 77, 0.125);
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 0;
  font-weight: 400; }
  ul.link-list li > *, ul.link-list li::before, ul.link-list li::after {
    font-size: 1.25rem; }
  ul.link-list li::before {
    display: inline-block;
    color: #5d524d; }

.link-list > a {
  display: block;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem; }

.link-list li {
  margin-left: 1.5rem;
  border-bottom: solid 2px rgba(93, 82, 77, 0.125);
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 0;
  font-weight: 400; }
  .link-list li > *, .link-list li::before, .link-list li::after {
    font-size: 1.25rem; }
  .link-list li::before {
    display: inline-block;
    color: #5d524d; }

ol li {
  counter-increment: brand-counter; }
  ol li::before {
    margin-left: 0.75rem;
    content: counter(brand-counter) ". "; }

li[role="presentation"] {
  margin: 0;
  padding: 0;
  text-indent: 0; }
  li[role="presentation"]::before, li[role="presentation"]::after {
    display: none;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    content: ''; }

#qunit-tests * {
  text-indent: 0; }

ul[class*="block-grid"],
.strip-list {
  margin: 0; }
  ul[class*="block-grid"] > li,
  .strip-list > li {
    margin-left: 0;
    text-indent: 0; }
    ul[class*="block-grid"] > li::before,
    .strip-list > li::before {
      display: none; }

.loose-list li {
  margin-bottom: 1.375em; }
  .loose-list li ul,
  .loose-list li ol {
    margin-top: 1.375em; }

/* Inline UL Lists
 /* _______________________________________________________________ */
.list--inline {
  list-style: none; }
  .list--inline li {
    display: inline-block;
    margin-right: 1.25rem;
    margin-left: 0;
    text-indent: 0; }
    .list--inline li:last-child {
      margin-right: 0; }
    .list--inline li::before {
      display: none; }
  .list--inline--wider li {
    margin-right: 2.5rem; }
    .list--inline--wider li:last-child {
      margin-right: 0; }

.list--condensed {
  margin: 0;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  text-transform: uppercase; }
  .list--condensed > li {
    margin-left: 0;
    text-indent: 0; }
    .list--condensed > li::before {
      display: none; }

/* Columned Lists */
@media screen and (min-width: 40em) {
  .list--columns-2 {
    display: block;
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-2 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-2 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-2--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-2--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-2--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(50% - 1.5rem); }
    .list--columns-2--across > li:nth-child(2n-1) {
      padding-left: 0; }

@media screen and (min-width: 61.25em) {
  .list--columns-3 {
    display: block;
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-3 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-3 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-3--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-3--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-3--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(33.33333% - 1.5rem); }
    .list--columns-3--across > li:nth-child(3n-2) {
      padding-left: 0; }

@media screen and (min-width: 61.25em) {
  .list--columns-4 {
    display: block;
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-4 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-4 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-4--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-4--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-4--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(25% - 1.5rem); }
    .list--columns-4--across > li:nth-child(4n-3) {
      padding-left: 0; }

@media screen and (min-width: 61.25em) {
  .list--columns-5 {
    display: block;
    -webkit-columns: 5;
       -moz-columns: 5;
            columns: 5;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-5 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-5 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-5--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-5--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-5--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(20% - 1.5rem); }
    .list--columns-5--across > li:nth-child(5n-4) {
      padding-left: 0; }

@media screen and (min-width: 61.25em) {
  .list--columns-6 {
    display: block;
    -webkit-columns: 6;
       -moz-columns: 6;
            columns: 6;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-6 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-6 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-6--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-6--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-6--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(16.66667% - 1.5rem); }
    .list--columns-6--across > li:nth-child(6n-5) {
      padding-left: 0; }

@media screen and (min-width: 61.25em) {
  .list--columns-7 {
    display: block;
    -webkit-columns: 7;
       -moz-columns: 7;
            columns: 7;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-7 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-7 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-7--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-7--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-7--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(14.28571% - 1.5rem); }
    .list--columns-7--across > li:nth-child(7n-6) {
      padding-left: 0; }

@media screen and (min-width: 61.25em) {
  .list--columns-8 {
    display: block;
    -webkit-columns: 8;
       -moz-columns: 8;
            columns: 8;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-8 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-8 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-8--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-8--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-8--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(12.5% - 1.5rem); }
    .list--columns-8--across > li:nth-child(8n-7) {
      padding-left: 0; }

@media screen and (min-width: 61.25em) {
  .list--columns-9 {
    display: block;
    -webkit-columns: 9;
       -moz-columns: 9;
            columns: 9;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem; }
    .list--columns-9 > li {
      display: block;
      margin-right: 1.5rem; }
    .list--columns-9 > li {
      -webkit-column-break-inside: avoid;
         page-break-inside: avoid;
              break-inside: avoid; } }

.list--columns-9--across {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }
  .list--columns-9--across > li {
    display: block;
    margin-right: 1.5rem; }
  .list--columns-9--across > li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    width: calc(11.11111% - 1.5rem); }
    .list--columns-9--across > li:nth-child(9n-8) {
      padding-left: 0; }

li > .block-link {
  display: inline-block;
  margin-bottom: 0.5rem; }

/*------------------------------------*    $IMAGE ELEMENTS
\*------------------------------------*/
/*
 * text-fields
 */
input[type="text"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
  color: #222222; }

input[type="text"]:-moz-placeholder,
textarea:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
input[type="email"]:-moz-placeholder {
  color: #222222; }

input[type="text"]::-moz-placeholder,
textarea::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
input[type="email"]::-moz-placeholder {
  color: #222222; }

input[type="text"]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
  color: #222222; }

.label--required::before {
  color: #8A1538;
  content: '*'; }

.label--required.label--hide + input {
  margin-left: 1rem;
  width: 95%; }

.label--hide {
  display: inline;
  float: left;
  font-size: 0; }
  .label--hide::before {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1rem; }

/*
 * checkbox
 */
/*
 * radio-buttons
 */
/*
 * select-menu
 */
/*
  * html5-inputs
  */
/*------------------------------------*    $BUTTONS
\*------------------------------------*/
.button,
.block-link {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.125em;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 0.8125rem;
  font-weight: 900; }

.button {
  background-color: #ff0000;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700; }
  .button:hover, .button:focus {
    background-color: #cf0000;
    color: #fff; }
  .button.button--hollow {
    border: 1px solid #ff0000;
    color: #ff0000;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out; }
    .button.button--hollow, .button.button--hollow:hover, .button.button--hollow:focus {
      background-color: transparent; }
    .button.button--hollow:link, .button.button--hollow:visited {
      color: #ff0000; }
    .button.button--hollow:hover, .button.button--hollow:focus, .button.button--hollow:active {
      color: #fefefe; }
    .button.button--hollow:hover, .button.button--hollow:focus, .button.button--hollow:active {
      border-color: #fefefe;
      background-color: #ff0000; }
  .button--large {
    padding: 1.5em 2.25em; }
    .button--large.button--align-text {
      margin-top: -1em; }
  .button--secondary {
    background-color: #281a35;
    color: #fff; }
    .button--secondary:hover, .button--secondary:focus {
      background-color: #5b3d76;
      color: #fff; }
    .button--secondary.button--hollow {
      border: 1px solid #281a35;
      color: #281a35;
      -webkit-transition: all 0.25s ease-out;
      transition: all 0.25s ease-out; }
      .button--secondary.button--hollow, .button--secondary.button--hollow:hover, .button--secondary.button--hollow:focus {
        background-color: transparent; }
      .button--secondary.button--hollow:link, .button--secondary.button--hollow:visited {
        color: #281a35; }
      .button--secondary.button--hollow:hover, .button--secondary.button--hollow:focus, .button--secondary.button--hollow:active {
        color: #fefefe; }
      .button--secondary.button--hollow:hover, .button--secondary.button--hollow:focus, .button--secondary.button--hollow:active {
        border-color: #fefefe;
        background-color: #281a35; }
  .button--call {
    background-color: #8A1538;
    color: #fff; }
    .button--call:hover, .button--call:focus {
      background-color: #cf0000;
      color: #fff; }
    .button--call.button--hollow {
      border: 1px solid #8A1538;
      color: #8A1538;
      -webkit-transition: all 0.25s ease-out;
      transition: all 0.25s ease-out; }
      .button--call.button--hollow, .button--call.button--hollow:hover, .button--call.button--hollow:focus {
        background-color: transparent; }
      .button--call.button--hollow:link, .button--call.button--hollow:visited {
        color: #8A1538; }
      .button--call.button--hollow:hover, .button--call.button--hollow:focus, .button--call.button--hollow:active {
        color: #cf0000; }
      .button--call.button--hollow:hover, .button--call.button--hollow:focus, .button--call.button--hollow:active {
        border-color: #cf0000;
        background-color: #8A1538; }
  .button--white.button {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 3rem;
    padding: 1em 1.5em;
    margin: 0 1rem 1rem 0;
    font-size: inherit;
    background-color: #fefefe;
    color: #8A1538;
    font-size: 0.8125rem; }
    [data-whatinput='mouse'] .button--white.button {
      outline: 0; }
    .button--white.button:hover, .button--white.button:focus {
      background-color: transparent;
      color: #8A1538; }
    .button--white.button:link, .button--white.button:visited {
      color: #8A1538; }
    .button--white.button:hover, .button--white.button:focus, .button--white.button:active {
      color: #fefefe; }
    .button--white.button.button--hollow {
      border: 1px solid #fefefe;
      color: #fefefe;
      -webkit-transition: all 0.25s ease-out;
      transition: all 0.25s ease-out; }
      .button--white.button.button--hollow, .button--white.button.button--hollow:hover, .button--white.button.button--hollow:focus {
        background-color: transparent; }
      .button--white.button.button--hollow:link, .button--white.button.button--hollow:visited {
        color: #fefefe; }
      .button--white.button.button--hollow:hover, .button--white.button.button--hollow:focus, .button--white.button.button--hollow:active {
        color: #8A1538; }
      .button--white.button.button--hollow:hover, .button--white.button.button--hollow:focus, .button--white.button.button--hollow:active {
        border-color: #8A1538;
        background-color: #fefefe; }
    .button--white.button:hover, .button--white.button:focus, .button--white.button:active {
      border: 1px solid #fefefe; }
  .button--dark {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 3rem;
    padding: 1em 1.5em;
    margin: 0 1rem 1rem 0;
    font-size: inherit;
    background-color: #0a0a0a;
    color: #fefefe;
    font-size: 0.8125rem; }
    [data-whatinput='mouse'] .button--dark {
      outline: 0; }
    .button--dark:hover, .button--dark:focus {
      background-color: #393939;
      color: #fefefe; }
    .button--dark.button--hollow {
      border: 1px solid #0a0a0a;
      color: #0a0a0a;
      -webkit-transition: all 0.25s ease-out;
      transition: all 0.25s ease-out; }
      .button--dark.button--hollow, .button--dark.button--hollow:hover, .button--dark.button--hollow:focus {
        background-color: transparent; }
      .button--dark.button--hollow:link, .button--dark.button--hollow:visited {
        color: #0a0a0a; }
      .button--dark.button--hollow:hover, .button--dark.button--hollow:focus, .button--dark.button--hollow:active {
        color: #ff0000; }
      .button--dark.button--hollow:hover, .button--dark.button--hollow:focus, .button--dark.button--hollow:active {
        border-color: #ff0000;
        background-color: #0a0a0a; }
  .button--arrow {
    position: relative;
    overflow: hidden; }
    .button--arrow.button {
      padding-right: 3.5em;
      padding-left: 3.5em; }
    .button--arrow::before, .button--arrow::after {
      display: block;
      width: 2em;
      font-family: "FontAwesome";
      text-align: right; }
    .button--arrow::before {
      position: absolute;
      line-height: 1;
      content: "";
      speak: none;
      right: 1.5em; }
  .button--animated::before {
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease; }
  .button--animated.button--arrow::before {
    right: -2em; }
  .button--animated.button--arrow:hover::before, .button--animated.button--arrow:focus::before, .button--animated.button--arrow:active::before {
    right: 1.5em; }
  .button--prev, .button--next, .button--up, .button--down {
    margin-bottom: 0;
    padding: 0;
    width: 3rem;
    height: 3rem;
    font-size: 0; }
    .button--prev::before, .button--next::before, .button--up::before, .button--down::before {
      line-height: 3rem;
      font-size: 1rem; }
  .button--prev::before {
    content: ""; }
  .button--next::before {
    content: ""; }
  .button--up::before {
    content: ""; }
  .button--down::before {
    content: ""; }
  li .button {
    margin-bottom: 0.125rem; }

/*------------------------------------*    $BLOCK LINKS (behave like buttons
		with no borders)
\*------------------------------------*/
.block-link:link, .block-link:visited {
  color: #ff0000 !important; }

.block-link:hover, .block-link:focus, .block-link:active {
  color: #cf0000 !important; }

.block-link .icon-wrapper {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 0.625em;
  border-radius: 50%;
  background-color: #ff0000;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -25%;
  color: #fefefe; }
  .block-link .icon-wrapper svg {
    position: absolute;
    top: 20%;
    left: 24%;
    width: 60%;
    height: 60%; }

.block-link:hover .icon-wrapper, .block-link:focus .icon-wrapper, .block-link:active .icon-wrapper {
  background-color: #cf0000;
  color: #fefefe; }

.block-link--secondary:link, .block-link--secondary:visited {
  color: #281a35; }

.block-link--secondary:hover, .block-link--secondary:focus, .block-link--secondary:active {
  color: #5b3d76; }

.block-link--secondary .icon-wrapper {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 0.625em;
  border-radius: 50%;
  background-color: #281a35;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -25%;
  color: #fefefe; }
  .block-link--secondary .icon-wrapper svg {
    position: absolute;
    top: 20%;
    left: 24%;
    width: 60%;
    height: 60%; }

.block-link--secondary:hover .icon-wrapper, .block-link--secondary:focus .icon-wrapper, .block-link--secondary:active .icon-wrapper {
  background-color: #5b3d76;
  color: #fefefe; }

.block-link--call:link, .block-link--call:visited {
  color: #8A1538; }

.block-link--call:hover, .block-link--call:focus, .block-link--call:active {
  color: #cf0000; }

.block-link--call .icon-wrapper {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 0.625em;
  border-radius: 50%;
  background-color: #8A1538;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -25%;
  color: #fefefe; }
  .block-link--call .icon-wrapper svg {
    position: absolute;
    top: 20%;
    left: 24%;
    width: 60%;
    height: 60%; }

.block-link--call:hover .icon-wrapper, .block-link--call:focus .icon-wrapper, .block-link--call:active .icon-wrapper {
  background-color: #cf0000;
  color: #fefefe; }

.block-link--white:link, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:link, .block-link--white:visited, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:visited {
  color: #fbe8d7 !important; }

.block-link--white:hover, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:hover, .block-link--white:focus, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:focus, .block-link--white:active, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:active {
  color: #fefefe !important; }

.block-link--white .icon-wrapper, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link .icon-wrapper {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 0.625em;
  border-radius: 50%;
  background-color: #fbe8d7;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -25%;
  color: #8A1538; }
  .block-link--white .icon-wrapper svg, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link .icon-wrapper svg {
    position: absolute;
    top: 20%;
    left: 24%;
    width: 60%;
    height: 60%; }

.block-link--white:hover .icon-wrapper, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:hover .icon-wrapper, .block-link--white:focus .icon-wrapper, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:focus .icon-wrapper, .block-link--white:active .icon-wrapper, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link:active .icon-wrapper {
  background-color: #fefefe;
  color: #8A1538; }

.block-link--white-text {
  color: #fefefe; }
  .block-link--white-text:hover a:link, .block-link--white-text:hover a:visited, .block-link--white-text:hover a:hover, .block-link--white-text:hover a:focus, .block-link--white-text:hover a:active, .block-link--white-text:focus a:link, .block-link--white-text:focus a:visited, .block-link--white-text:focus a:hover, .block-link--white-text:focus a:focus, .block-link--white-text:focus a:active, .block-link--white-text:active a:link, .block-link--white-text:active a:visited, .block-link--white-text:active a:hover, .block-link--white-text:active a:focus, .block-link--white-text:active a:active {
    color: #fefefe; }

.block-link--dark:link, .block-link--dark:visited {
  color: #5d524d !important; }

.block-link--dark:hover, .block-link--dark:focus, .block-link--dark:active {
  color: #ff0000 !important; }

.block-link--dark .icon-wrapper {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: 0.625em;
  border-radius: 50%;
  background-color: #5d524d;
  width: 1.5em;
  height: 1.5em;
  vertical-align: -25%;
  color: #fefefe; }
  .block-link--dark .icon-wrapper svg {
    position: absolute;
    top: 20%;
    left: 24%;
    width: 60%;
    height: 60%; }

.block-link--dark:hover .icon-wrapper, .block-link--dark:focus .icon-wrapper, .block-link--dark:active .icon-wrapper {
  background-color: #ff0000;
  color: #fefefe; }

.button-group .block-link {
  margin-right: 2em; }

.icons--dark-bg {
  color: #fff; }

.icon-wrapper {
  background-color: transparent;
  width: 2em;
  height: 2em;
  overflow: hidden; }
  .icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: none; }
  .icons--color .icon-wrapper.facebook, .icon-wrapper.facebook.icons--color {
    color: #3b5999; }
  .icons--boxes .icon-wrapper.facebook, .icon-wrapper.facebook.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.facebook svg, .icon-wrapper.facebook.icons--boxes svg {
      fill: #3b5999; }
  .icons--one-color .icon-wrapper.facebook, .icon-wrapper.facebook.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.facebook, .icon-wrapper.facebook.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.facebook svg, .icon-wrapper.facebook.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.facebook, .icon-wrapper.facebook.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.facebook, .icon-wrapper.facebook.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.facebook svg, .icon-wrapper.facebook.icons--dark-bg.icons--boxes svg {
      fill: #3b5999; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.facebook, .icon-wrapper.facebook.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.facebook svg, .icon-wrapper.facebook.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.flickr, .icon-wrapper.flickr.icons--color {
    color: #eaeaea; }
  .icons--boxes .icon-wrapper.flickr, .icon-wrapper.flickr.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.flickr svg, .icon-wrapper.flickr.icons--boxes svg {
      fill: #eaeaea; }
  .icons--one-color .icon-wrapper.flickr, .icon-wrapper.flickr.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.flickr, .icon-wrapper.flickr.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.flickr svg, .icon-wrapper.flickr.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.flickr, .icon-wrapper.flickr.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.flickr, .icon-wrapper.flickr.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.flickr svg, .icon-wrapper.flickr.icons--dark-bg.icons--boxes svg {
      fill: #eaeaea; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.flickr, .icon-wrapper.flickr.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.flickr svg, .icon-wrapper.flickr.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.github, .icon-wrapper.github.icons--color {
    color: #181617; }
  .icons--boxes .icon-wrapper.github, .icon-wrapper.github.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.github svg, .icon-wrapper.github.icons--boxes svg {
      fill: #181617; }
  .icons--one-color .icon-wrapper.github, .icon-wrapper.github.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.github, .icon-wrapper.github.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.github svg, .icon-wrapper.github.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.github, .icon-wrapper.github.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.github, .icon-wrapper.github.icons--dark-bg.icons--boxes {
    color: #181617; }
    .icons--dark-bg.icons--boxes .icon-wrapper.github svg, .icon-wrapper.github.icons--dark-bg.icons--boxes svg {
      fill: #fff; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.github, .icon-wrapper.github.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.github svg, .icon-wrapper.github.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.instagram, .icon-wrapper.instagram.icons--color {
    color: #32669a; }
  .icons--boxes .icon-wrapper.instagram, .icon-wrapper.instagram.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.instagram svg, .icon-wrapper.instagram.icons--boxes svg {
      fill: #32669a; }
  .icons--one-color .icon-wrapper.instagram, .icon-wrapper.instagram.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.instagram, .icon-wrapper.instagram.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.instagram svg, .icon-wrapper.instagram.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.instagram, .icon-wrapper.instagram.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.instagram, .icon-wrapper.instagram.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.instagram svg, .icon-wrapper.instagram.icons--dark-bg.icons--boxes svg {
      fill: #32669a; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.instagram, .icon-wrapper.instagram.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.instagram svg, .icon-wrapper.instagram.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.kickstarter, .icon-wrapper.kickstarter.icons--color {
    color: #7bc143; }
  .icons--boxes .icon-wrapper.kickstarter, .icon-wrapper.kickstarter.icons--boxes {
    color: #161e13; }
    .icons--boxes .icon-wrapper.kickstarter svg, .icon-wrapper.kickstarter.icons--boxes svg {
      fill: #7bc143; }
  .icons--one-color .icon-wrapper.kickstarter, .icon-wrapper.kickstarter.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.kickstarter, .icon-wrapper.kickstarter.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.kickstarter svg, .icon-wrapper.kickstarter.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.kickstarter, .icon-wrapper.kickstarter.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.kickstarter, .icon-wrapper.kickstarter.icons--dark-bg.icons--boxes {
    color: #161e13; }
    .icons--dark-bg.icons--boxes .icon-wrapper.kickstarter svg, .icon-wrapper.kickstarter.icons--dark-bg.icons--boxes svg {
      fill: #7bc143; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.kickstarter, .icon-wrapper.kickstarter.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.kickstarter svg, .icon-wrapper.kickstarter.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.linkedin, .icon-wrapper.linkedin.icons--color {
    color: #017bb6; }
  .icons--boxes .icon-wrapper.linkedin, .icon-wrapper.linkedin.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.linkedin svg, .icon-wrapper.linkedin.icons--boxes svg {
      fill: #017bb6; }
  .icons--one-color .icon-wrapper.linkedin, .icon-wrapper.linkedin.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.linkedin, .icon-wrapper.linkedin.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.linkedin svg, .icon-wrapper.linkedin.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.linkedin, .icon-wrapper.linkedin.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.linkedin, .icon-wrapper.linkedin.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.linkedin svg, .icon-wrapper.linkedin.icons--dark-bg.icons--boxes svg {
      fill: #017bb6; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.linkedin, .icon-wrapper.linkedin.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.linkedin svg, .icon-wrapper.linkedin.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.pinterest, .icon-wrapper.pinterest.icons--color {
    color: #ca2128; }
  .icons--boxes .icon-wrapper.pinterest, .icon-wrapper.pinterest.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.pinterest svg, .icon-wrapper.pinterest.icons--boxes svg {
      fill: #ca2128; }
  .icons--one-color .icon-wrapper.pinterest, .icon-wrapper.pinterest.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.pinterest, .icon-wrapper.pinterest.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.pinterest svg, .icon-wrapper.pinterest.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.pinterest, .icon-wrapper.pinterest.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.pinterest, .icon-wrapper.pinterest.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.pinterest svg, .icon-wrapper.pinterest.icons--dark-bg.icons--boxes svg {
      fill: #ca2128; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.pinterest, .icon-wrapper.pinterest.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.pinterest svg, .icon-wrapper.pinterest.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.reddit, .icon-wrapper.reddit.icons--color {
    color: #f04a23; }
  .icons--boxes .icon-wrapper.reddit, .icon-wrapper.reddit.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.reddit svg, .icon-wrapper.reddit.icons--boxes svg {
      fill: #f04a23; }
  .icons--one-color .icon-wrapper.reddit, .icon-wrapper.reddit.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.reddit, .icon-wrapper.reddit.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.reddit svg, .icon-wrapper.reddit.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.reddit, .icon-wrapper.reddit.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.reddit, .icon-wrapper.reddit.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.reddit svg, .icon-wrapper.reddit.icons--dark-bg.icons--boxes svg {
      fill: #f04a23; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.reddit, .icon-wrapper.reddit.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.reddit svg, .icon-wrapper.reddit.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.rss, .icon-wrapper.rss.icons--color {
    color: #ed802d; }
  .icons--boxes .icon-wrapper.rss, .icon-wrapper.rss.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.rss svg, .icon-wrapper.rss.icons--boxes svg {
      fill: #ed802d; }
  .icons--one-color .icon-wrapper.rss, .icon-wrapper.rss.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.rss, .icon-wrapper.rss.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.rss svg, .icon-wrapper.rss.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.rss, .icon-wrapper.rss.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.rss, .icon-wrapper.rss.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.rss svg, .icon-wrapper.rss.icons--dark-bg.icons--boxes svg {
      fill: #ed802d; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.rss, .icon-wrapper.rss.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.rss svg, .icon-wrapper.rss.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.tumblr, .icon-wrapper.tumblr.icons--color {
    color: #45546b; }
  .icons--boxes .icon-wrapper.tumblr, .icon-wrapper.tumblr.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.tumblr svg, .icon-wrapper.tumblr.icons--boxes svg {
      fill: #45546b; }
  .icons--one-color .icon-wrapper.tumblr, .icon-wrapper.tumblr.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.tumblr, .icon-wrapper.tumblr.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.tumblr svg, .icon-wrapper.tumblr.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.tumblr, .icon-wrapper.tumblr.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.tumblr, .icon-wrapper.tumblr.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.tumblr svg, .icon-wrapper.tumblr.icons--dark-bg.icons--boxes svg {
      fill: #45546b; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.tumblr, .icon-wrapper.tumblr.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.tumblr svg, .icon-wrapper.tumblr.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.twitter, .icon-wrapper.twitter.icons--color {
    color: #32669a; }
  .icons--boxes .icon-wrapper.twitter, .icon-wrapper.twitter.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.twitter svg, .icon-wrapper.twitter.icons--boxes svg {
      fill: #32669a; }
  .icons--one-color .icon-wrapper.twitter, .icon-wrapper.twitter.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.twitter, .icon-wrapper.twitter.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.twitter svg, .icon-wrapper.twitter.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.twitter, .icon-wrapper.twitter.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.twitter, .icon-wrapper.twitter.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.twitter svg, .icon-wrapper.twitter.icons--dark-bg.icons--boxes svg {
      fill: #32669a; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.twitter, .icon-wrapper.twitter.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.twitter svg, .icon-wrapper.twitter.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.vine, .icon-wrapper.vine.icons--color {
    color: #00b386; }
  .icons--boxes .icon-wrapper.vine, .icon-wrapper.vine.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.vine svg, .icon-wrapper.vine.icons--boxes svg {
      fill: #00b386; }
  .icons--one-color .icon-wrapper.vine, .icon-wrapper.vine.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.vine, .icon-wrapper.vine.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.vine svg, .icon-wrapper.vine.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.vine, .icon-wrapper.vine.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.vine, .icon-wrapper.vine.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.vine svg, .icon-wrapper.vine.icons--dark-bg.icons--boxes svg {
      fill: #00b386; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.vine, .icon-wrapper.vine.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.vine svg, .icon-wrapper.vine.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.wordpress, .icon-wrapper.wordpress.icons--color {
    color: #0864a6; }
  .icons--boxes .icon-wrapper.wordpress, .icon-wrapper.wordpress.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.wordpress svg, .icon-wrapper.wordpress.icons--boxes svg {
      fill: #0864a6; }
  .icons--one-color .icon-wrapper.wordpress, .icon-wrapper.wordpress.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.wordpress, .icon-wrapper.wordpress.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.wordpress svg, .icon-wrapper.wordpress.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.wordpress, .icon-wrapper.wordpress.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.wordpress, .icon-wrapper.wordpress.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.wordpress svg, .icon-wrapper.wordpress.icons--dark-bg.icons--boxes svg {
      fill: #0864a6; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.wordpress, .icon-wrapper.wordpress.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.wordpress svg, .icon-wrapper.wordpress.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }
  .icons--color .icon-wrapper.youtube, .icon-wrapper.youtube.icons--color {
    color: #cd332d; }
  .icons--boxes .icon-wrapper.youtube, .icon-wrapper.youtube.icons--boxes {
    color: #fff; }
    .icons--boxes .icon-wrapper.youtube svg, .icon-wrapper.youtube.icons--boxes svg {
      fill: #cd332d; }
  .icons--one-color .icon-wrapper.youtube, .icon-wrapper.youtube.icons--one-color {
    color: currentColor; }
  .icons--one-color.icons--boxes .icon-wrapper.youtube, .icon-wrapper.youtube.icons--one-color.icons--boxes {
    color: #fff; }
    .icons--one-color.icons--boxes .icon-wrapper.youtube svg, .icon-wrapper.youtube.icons--one-color.icons--boxes svg {
      fill: #8A1538; }
  .icons--dark-bg:not(.icons--boxes) .icon-wrapper.youtube, .icon-wrapper.youtube.icons--dark-bg:not(.icons--boxes) {
    color: #fff; }
  .icons--dark-bg.icons--boxes .icon-wrapper.youtube, .icon-wrapper.youtube.icons--dark-bg.icons--boxes {
    color: #fff; }
    .icons--dark-bg.icons--boxes .icon-wrapper.youtube svg, .icon-wrapper.youtube.icons--dark-bg.icons--boxes svg {
      fill: #cd332d; }
  .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.youtube, .icon-wrapper.youtube.icons--dark-bg.icons--boxes.icons--one-color {
    color: transparent; }
    .icons--dark-bg.icons--boxes.icons--one-color .icon-wrapper.youtube svg, .icon-wrapper.youtube.icons--dark-bg.icons--boxes.icons--one-color svg {
      fill: #fff; }

/* Callout blocks */
.callout {
  position: relative;
  padding: 2rem; }
  .callout.call-to-action {
    margin-bottom: 3.75rem; }
  .content--main .callout .column:first-child, .content--main .callout .columns:first-child {
    padding-left: 0; }
  .content--main .callout .column:last-child, .content--main .callout .columns:last-child {
    padding-right: 0; }
  .section--dark .callout {
    border: solid 2px rgba(93, 82, 77, 0.125);
    border-color: #5b3d76; }
    .section--dark .callout a:link, .section--dark .callout a:visited {
      color: #ff0000; }
    .section--dark .callout a:hover, .section--dark .callout a:focus, .section--dark .callout a:active {
      color: #cf0000; }
    .section--dark .callout .heading a:link, .section--dark .callout .heading a:visited {
      color: #fefefe; }
    .section--dark .callout .heading a:hover, .section--dark .callout .heading a:focus, .section--dark .callout .heading a:active {
      color: #ff0000; }
  .callout > .row {
    margin-right: 0;
    margin-left: 0; }
  .callout.row {
    margin-right: auto;
    margin-left: auto; }

section.callout {
  margin-bottom: 3.75rem; }
  section.callout.row {
    margin-top: 2em; }

.callout--title--overlap {
  padding-top: 4rem; }
  .callout--title--overlap > *[class*='__title'] {
    color: #fefefe;
    background-color: #8A1538;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0.5em 2.25em; }
    .callout--title--overlap > *[class*='__title'] .heading--alpha {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] h1 {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] .heading--beta {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] h2 {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] .heading--gamma {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] h3 {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] .heading--delta {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] h4 {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] .heading--epsilon {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] h5 {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] h6 {
      color: #fefefe; }
    .callout--title--overlap > *[class*='__title'] a:link, .callout--title--overlap > *[class*='__title'] a:visited {
      color: #fbe8d7; }
    .callout--title--overlap > *[class*='__title'] a:hover, .callout--title--overlap > *[class*='__title'] a:focus, .callout--title--overlap > *[class*='__title'] a:active {
      color: #fff; }
    .callout--title--overlap > *[class*='__title'] a:link, .callout--title--overlap > *[class*='__title'] a:visited {
      color: #fbe8d7; }
    .callout--title--overlap > *[class*='__title'] a:hover, .callout--title--overlap > *[class*='__title'] a:focus, .callout--title--overlap > *[class*='__title'] a:active {
      color: #fff; }
    .callout--title--overlap > *[class*='__title'] > * {
      margin-bottom: 0;
      text-align: center;
      white-space: nowrap;
      font-family: "Droid Serif", "Georgia", serif;
      font-weight: bold; }

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

.callout-neighbor {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.social-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  .social-block .icon-wrapper {
    margin: 0 0.125rem 0.125rem 0; }
    .social-block .icon-wrapper:first-child {
      margin-left: 0; }

.statistic-block {
  color: #fefefe;
  background-color: #281a35;
  margin-right: auto;
  padding: 1.5625rem 1.375rem;
  width: auto; }
  .statistic-block .heading--alpha {
    color: #fefefe; }
  .statistic-block h1 {
    color: #fefefe; }
  .statistic-block .heading--beta {
    color: #fefefe; }
  .statistic-block h2 {
    color: #fefefe; }
  .statistic-block .heading--gamma {
    color: #fefefe; }
  .statistic-block h3 {
    color: #fefefe; }
  .statistic-block .heading--delta {
    color: #fefefe; }
  .statistic-block h4 {
    color: #fefefe; }
  .statistic-block .heading--epsilon {
    color: #fefefe; }
  .statistic-block h5 {
    color: #fefefe; }
  .statistic-block h6 {
    color: #fefefe; }
  .statistic-block a:link, .statistic-block a:visited {
    color: #fbe8d7; }
  .statistic-block a:hover, .statistic-block a:focus, .statistic-block a:active {
    color: #fff; }
  .statistic-block a:link, .statistic-block a:visited {
    color: #fbe8d7; }
  .statistic-block a:hover, .statistic-block a:focus, .statistic-block a:active {
    color: #fff; }
  .statistic-block::before, .statistic-block::after {
    content: ' ';
    display: table; }
  .statistic-block::after {
    clear: both; }
  .statistic-block .statistic {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .statistic-block .statistic__value,
  .statistic-block .statistic__label {
    display: block;
    float: left; }
  .statistic-block .statistic__value {
    margin-right: 0.75rem;
    line-height: 0.8;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 4.125rem;
    font-weight: bold; }
  .statistic-block .statistic__label {
    max-width: 9.375rem; }
  figure > .statistic-block {
    position: absolute;
    bottom: -2rem;
    left: 0; }

.gray-photo-bottom {
  padding-bottom: 15%;
  background-image: url("/images/bg-campus-bw.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto; }
  section + .gray-photo-bottom.no-content {
    position: relative;
    z-index: -1;
    margin-top: -2.75rem; }

.campus-photo-bg {
  margin-bottom: 0;
  background-image: url("/images/bg-campus-color.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 8.125rem; }
  @media screen and (min-width: 61.25em) {
    .campus-photo-bg {
      padding-bottom: 20.625rem; } }

.feature-blocks {
  padding-right: 0;
  padding-left: 0; }
  .feature-blocks h2 a {
    text-decoration: none; }
    .feature-blocks h2 a:link, .feature-blocks h2 a:visited {
      color: #fefefe; }
    .feature-blocks h2 a:hover, .feature-blocks h2 a:focus, .feature-blocks h2 a:active {
      color: #fbe8d7; }
  .feature-blocks .block-grid {
    margin-right: -0.25rem;
    margin-left: -0.25rem; }
    .feature-blocks .block-grid > * {
      margin-right: 0.25rem;
      margin-bottom: 0.5rem;
      margin-left: 0.25rem;
      width: calc(100% - 0.5rem); }
      @media screen and (min-width: 40em) {
        .feature-blocks .block-grid > * {
          width: calc(50% - 0.5rem); } }
      @media screen and (min-width: 61.25em) {
        .feature-blocks .block-grid > * {
          width: calc(33.33333% - 0.5rem); } }

.feature-block {
  display: block;
  position: relative;
  padding: 3rem 2rem; }
  .feature-block li {
    margin-bottom: 0.6875em; }
  .feature-block--image {
    color: #fefefe;
    background-color: #281a35; }
    .feature-block--image .heading--alpha {
      color: #fefefe; }
    .feature-block--image h1 {
      color: #fefefe; }
    .feature-block--image .heading--beta {
      color: #fefefe; }
    .feature-block--image h2 {
      color: #fefefe; }
    .feature-block--image .heading--gamma {
      color: #fefefe; }
    .feature-block--image h3 {
      color: #fefefe; }
    .feature-block--image .heading--delta {
      color: #fefefe; }
    .feature-block--image h4 {
      color: #fefefe; }
    .feature-block--image .heading--epsilon {
      color: #fefefe; }
    .feature-block--image h5 {
      color: #fefefe; }
    .feature-block--image h6 {
      color: #fefefe; }
    .feature-block--image a:link, .feature-block--image a:visited {
      color: #fbe8d7; }
    .feature-block--image a:hover, .feature-block--image a:focus, .feature-block--image a:active {
      color: #fff; }
    .feature-block--image a:link, .feature-block--image a:visited {
      color: #fbe8d7; }
    .feature-block--image a:hover, .feature-block--image a:focus, .feature-block--image a:active {
      color: #fff; }
  .feature-block--secondary {
    color: #fefefe;
    background-color: #8A1538; }
    .feature-block--secondary .heading--alpha {
      color: #fefefe; }
    .feature-block--secondary h1 {
      color: #fefefe; }
    .feature-block--secondary .heading--beta {
      color: #fefefe; }
    .feature-block--secondary h2 {
      color: #fefefe; }
    .feature-block--secondary .heading--gamma {
      color: #fefefe; }
    .feature-block--secondary h3 {
      color: #fefefe; }
    .feature-block--secondary .heading--delta {
      color: #fefefe; }
    .feature-block--secondary h4 {
      color: #fefefe; }
    .feature-block--secondary .heading--epsilon {
      color: #fefefe; }
    .feature-block--secondary h5 {
      color: #fefefe; }
    .feature-block--secondary h6 {
      color: #fefefe; }
    .feature-block--secondary a:link, .feature-block--secondary a:visited {
      color: #fbe8d7; }
    .feature-block--secondary a:hover, .feature-block--secondary a:focus, .feature-block--secondary a:active {
      color: #fff; }
    .feature-block--secondary a:link, .feature-block--secondary a:visited {
      color: #fbe8d7; }
    .feature-block--secondary a:hover, .feature-block--secondary a:focus, .feature-block--secondary a:active {
      color: #fff; }
  .feature-block--secondary .button, .feature-block--tertiary .button {
    border: 1px solid #fefefe;
    color: #fefefe;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out; }
    .feature-block--secondary .button, .feature-block--secondary .button:hover, .feature-block--secondary .button:focus, .feature-block--tertiary .button, .feature-block--tertiary .button:hover, .feature-block--tertiary .button:focus {
      background-color: transparent; }
    .feature-block--secondary .button:link, .feature-block--secondary .button:visited, .feature-block--tertiary .button:link, .feature-block--tertiary .button:visited {
      color: #fefefe; }
    .feature-block--secondary .button:hover, .feature-block--secondary .button:focus, .feature-block--secondary .button:active, .feature-block--tertiary .button:hover, .feature-block--tertiary .button:focus, .feature-block--tertiary .button:active {
      color: #8A1538; }
    .feature-block--secondary .button:hover, .feature-block--secondary .button:focus, .feature-block--secondary .button:active, .feature-block--tertiary .button:hover, .feature-block--tertiary .button:focus, .feature-block--tertiary .button:active {
      border-color: #8A1538;
      background-color: #fefefe; }
  .feature-block--secondary li::before, .feature-block--tertiary li::before {
    color: inherit; }
  .feature-block--white {
    color: #5d524d;
    background-color: #fefefe; }
  .feature-block > * {
    position: relative;
    z-index: 1; }
  .feature-block .image-bg {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0;
    z-index: 0;
    overflow: hidden; }
    .feature-block .image-bg > img {
      position: absolute;
      max-width: none;
      max-height: none;
      width: auto;
      min-width: 100%;
      height: auto;
      min-height: 100%;
      right: auto;
      left: 0;
      -webkit-transform: none;
              transform: none;
      top: 0;
      bottom: 0; }
    .feature-block .image-bg::after {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      background-color: rgba(0, 0, 0, 0.4);
      content: ''; }
      .feature-block .image-bg::after > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: 0;
        bottom: 0; }
    .feature-block .image-bg img {
      width: 100%; }
  .feature-block--link-list header {
    border-bottom: solid 1px #fefefe;
    margin-bottom: 1rem;
    padding-bottom: 1rem; }
    .feature-block--link-list header h2 {
      margin-bottom: 0; }
  .feature-block--link-list ul {
    margin: 0;
    font-size: 1.125rem; }
    .feature-block--link-list ul > li {
      margin-left: 0;
      text-indent: 0; }
      .feature-block--link-list ul > li::before {
        display: none; }
  .feature-block--link-list a {
    text-decoration: underline; }
  .feature-block.feature-block--icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
    .feature-block.feature-block--icon:link, .feature-block.feature-block--icon:visited {
      color: #fefefe; }
    .feature-block.feature-block--icon:hover, .feature-block.feature-block--icon:focus, .feature-block.feature-block--icon:active {
      color: white; }
    .feature-block.feature-block--icon .icon-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      width: auto;
      height: auto;
      pointer-events: none; }
    .feature-block.feature-block--icon .image-bg::after {
      background-color: rgba(10, 10, 10, 0);
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .feature-block.feature-block--icon .image-bg:hover::after, .feature-block.feature-block--icon .image-bg:focus::after, .feature-block.feature-block--icon .image-bg:active::after {
      background-color: rgba(10, 10, 10, 0.4); }

.block-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }

.block-grid--6 > * {
  width: 33.33333%; }

.news-item,
.event-item {
  padding-bottom: 1.375em; }
  .news-item .hgroup,
  .event-item .hgroup {
    margin-bottom: 0.5rem; }

.full-list.events-list .news-item__blurb, .full-list.news-list .news-item__blurb {
  line-height: 2; }

.full-list.events-list > *, .full-list.news-list > * {
  padding-top: 1.375em;
  padding-bottom: 1.375em;
  border-bottom: solid 2px rgba(93, 82, 77, 0.125); }
  .full-list.events-list > *:last-child, .full-list.news-list > *:last-child {
    border-bottom: none; }

.full-list.events-list .heading a, .full-list.news-list .heading a {
  background-repeat: repeat-x;
  background-size: 2em 2px;
  background-position: 0 1.09em;
  text-decoration: none;
  background-image: -webkit-linear-gradient(bottom, transparent 50%, currentColor 50%);
  background-image: linear-gradient(to top, transparent 50%, currentColor 50%);
  text-shadow: 0 1px #fefefe, 0 -1px #fefefe, 0 1px #fefefe, -1px 0 #fefefe; }

.news-list .news-item__heading-group {
  margin-bottom: 1rem; }

.news-list .news-item__headline {
  margin-bottom: 1rem; }

.news-list .news-item__subhead {
  margin-bottom: 0; }

.news-events-block .event-item {
  margin-bottom: 2rem; }

.news-events-block .event__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; }
  .news-events-block .event__header > * {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .news-events-block .event__header .event__title {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }

.news-events-block .event__date,
.news-events-block .event__time {
  display: inline; }

.news-events-block .event__date::after {
  content: ', '; }

.events-list--date-block .events-list .event__title,
.events-list--date-block .events-list .event__location,
.events-list--date-block .events-list .event__blurb {
  margin-left: 10.375rem; }

.events-list--date-block .events-list .event__header {
  margin-bottom: 1rem;
  padding-bottom: 0; }

.events-list--date-block .events-list .event__title {
  margin-bottom: 1rem; }

.events-list--date-block .events-list .event__subhead {
  margin-bottom: 0; }

.events-list--date-block .events-list .event__blurb {
  line-height: 2; }

.event__title,
.news-item__headline {
  margin-bottom: 0.45833em;
  text-transform: none;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.5rem; }
  .sidebar .event__title, .sidebar
  .news-item__headline {
    font-size: 1.25rem; }

.event-item__subhead,
.news-item__subhead,
.news-events-block .event__date-block {
  margin-bottom: 0.6875em;
  text-transform: uppercase;
  color: #0a0a0a;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif; }
  .section--dark .event-item__subhead, .section--dark
  .news-item__subhead, .section--dark
  .news-events-block .event__date-block {
    color: #94e6d8; }
  .sidebar .event-item__subhead, .sidebar
  .news-item__subhead, .sidebar
  .news-events-block .event__date-block {
    font-size: 1rem; }

.news-events-block.section--dark .event__date-block {
  color: #94e6d8; }

.news-item__headline {
  margin-bottom: 0; }

.news-item__blurb {
  margin-bottom: 1.375em; }

.news-item__subhead,
.news-events-block .event__date-block {
  color: inherit;
  font-weight: bold; }
  .news-item__subhead .news-item__category,
  .news-events-block .event__date-block .news-item__category {
    display: inline-block;
    margin-right: 0.25em;
    padding-right: 0.5em;
    border-right: solid 2px #fefefe; }

.news-item__thumbnail {
  float: left;
  width: 13.125rem;
  margin-right: 1rem; }
  .news-item__thumbnail ~ * {
    margin-left: 14.125rem; }

.search-results__list {
  margin-bottom: 1.375em; }

.search-results__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  padding: 1.375em 0;
  border-bottom: solid 3px rgba(93, 82, 77, 0.125); }

.search-results__item__text {
  padding-right: 1rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 54rem;
      -ms-flex: 0 1 54rem;
          flex: 0 1 54rem; }

.search-results__item__image {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 9.375rem;
      -ms-flex: 1 0 9.375rem;
          flex: 1 0 9.375rem; }
  .search-results__item__image::before, .search-results__item__image::after {
    content: ' ';
    display: table; }
  .search-results__item__image::after {
    clear: both; }
  .search-results__item__image img {
    width: auto;
    max-width: 9.375rem;
    height: auto;
    max-height: 9.375rem;
    float: right; }

.search-results__item__title {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.125rem; }

.search-results__item__url {
  margin-bottom: 0.5rem;
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 0.875rem;
  font-style: italic; }

.search-results__item__excerpt::after {
  content: ' …'; }

.sidebar > section {
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 40em) {
    .sidebar > section {
      margin-bottom: 1.375em; } }

.sidebar .section--dark a {
  background-repeat: repeat-x;
  background-size: 2em 2px;
  background-position: 0 1.09em;
  text-decoration: none;
  background-image: -webkit-linear-gradient(bottom, transparent 50%, currentColor 50%);
  background-image: linear-gradient(to top, transparent 50%, currentColor 50%);
  text-shadow: 0 1px #281a35, 0 -1px #281a35, 0 1px #281a35, -1px 0 #281a35; }

.sidebar nav > ul {
  margin: 0; }
  .sidebar nav > ul > li {
    margin-left: 0;
    text-indent: 0; }
    .sidebar nav > ul > li::before {
      display: none; }
  .sidebar nav > ul > li {
    margin-bottom: 0.75em; }
    .sidebar nav > ul > li > ul {
      margin-top: 0.75em; }
      .sidebar nav > ul > li > ul li::before {
        content: ''; }
      .sidebar nav > ul > li > ul > li {
        margin-bottom: 0.75em; }

.sidebar__category-list {
  margin: 0;
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase; }
  .sidebar__category-list > li {
    margin-left: 0;
    text-indent: 0; }
    .sidebar__category-list > li::before {
      display: none; }
  @media screen and (min-width: 40em) {
    .sidebar__category-list {
      font-size: 1.125rem; } }
  .sidebar__category-list li {
    display: inline-block; }
    .sidebar__category-list li::after {
      display: inline-block;
      content: ', '; }
    .sidebar__category-list li:last-of-type::after {
      content: ''; }

.sidebar--border-left {
  border-left: solid 3px rgba(93, 82, 77, 0.125); }

.link-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .link-group > a,
  .link-group > .button {
    display: block;
    margin-right: 0.5rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .link-group > a:last-of-type,
    .link-group > .button:last-of-type {
      margin-right: 0; }
  .link-group > .block-link {
    margin-right: 2em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    text-indent: calc(-1.5em - 0.725rem);
    margin-left: calc(1.5em + 0.725rem); }

.sticky {
  background-color: #fefefe; }
  .sticky.is_stuck {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); }

.offcanvas--top {
  position: relative;
  height: 18rem;
  padding-top: 2rem;
  overflow: hidden;
  -webkit-transition: margin-top 0.3s ease;
  transition: margin-top 0.3s ease; }
  .offcanvas--top.offcanvas--off {
    margin-top: -18rem; }
  .offcanvas--top > .row > .column:nth-of-type(2), .offcanvas--top > .row > .columns:nth-of-type(2),
  .offcanvas--top > .row > .column:nth-of-type(3),
  .offcanvas--top > .row > .columns:nth-of-type(3) {
    padding-left: 0; }
  .offcanvas--top header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .offcanvas--top header h2 {
      margin-bottom: 0; }
    .offcanvas--top header nav {
      padding-left: 1rem;
      text-transform: none; }
  .offcanvas--top .menu--vertical > li {
    display: block; }
  .offcanvas--top .menu--vertical a {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0; }

.offcanvas--top__news-feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  text-decoration: underline; }
  .offcanvas--top__news-feature figure {
    display: block;
    width: 50%;
    height: auto;
    overflow: hidden;
    max-height: 10.625rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; }
  .offcanvas--top__news-feature div {
    padding-left: 1rem;
    width: 50%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }

.menu-trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: bold; }
  .menu-trigger .icon-wrapper {
    width: 1.5em;
    height: 1.5em;
    padding-left: 0.5rem; }

.off-canvas-wrapper {
  background: #e6e6e6; }

.off-canvas-wrapper-inner {
  background: #fefefe; }

.off-canvas {
  padding-top: 1rem; }
  .off-canvas a:link, .off-canvas a:visited {
    color: #8A1538; }
  .off-canvas a:hover, .off-canvas a:focus, .off-canvas a:active {
    color: #cf0000; }
  .off-canvas .form--search {
    margin-right: 2.75rem;
    margin-left: 1rem; }
    .off-canvas .form--search .inner-button {
      border: none; }
    .off-canvas .form--search .inner-button input[type="text"],
    .off-canvas .form--search .inner-button input[type="search"] {
      background-color: #fefefe; }
    .off-canvas .form--search .icon-wrapper {
      color: #8A1538;
      background-color: transparent; }
      .off-canvas .form--search .icon-wrapper svg {
        fill: none; }
  .off-canvas .off-canvas--menu-section {
    margin: 0 1rem;
    padding: 1rem 0;
    border-bottom: solid 3px rgba(93, 82, 77, 0.125); }
    .off-canvas .off-canvas--menu-section:last-of-type {
      border-bottom: none; }
    .off-canvas .off-canvas--menu-section h2 {
      font-family: "Lato", "Helvetica", "Arial", sans-serif;
      font-size: inherit;
      font-weight: bold; }
  .off-canvas .menu li a {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0; }
  .off-canvas .menu--alpha,
  .off-canvas .menu--beta {
    font-weight: bold; }
  .off-canvas .menu--beta {
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif; }
  .off-canvas .menu--gamma {
    font-size: 0.875rem; }
    .off-canvas .menu--gamma h2 {
      margin-top: 1rem; }

@media screen and (min-width: 61.25em) {
  .off-canvas.position-right {
    display: none; }
  .is-open-right {
    -webkit-transform: none;
            transform: none; }
  .js-off-canvas-exit {
    display: none !important; } }

.lightbox img {
  z-index: 0; }

.lightbox a {
  position: relative; }
  .lightbox a:hover .lightbox__icon, .lightbox a:focus .lightbox__icon, .lightbox a:active .lightbox__icon {
    background-color: #cf0000; }

.lightbox__icon {
  background-color: #ff0000;
  color: #fefefe;
  width: 15%;
  max-width: 3rem;
  min-width: 1.5rem;
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0.1875rem;
  z-index: 1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease; }
  .lightbox__icon::after {
    display: block;
    width: 100%;
    padding-top: 100%;
    content: ''; }
  .lightbox__icon svg {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
    width: 80%; }

.lightbox__modal button.mfp-arrow {
  color: #fefefe;
  height: 6rem;
  width: 6rem; }
  .lightbox__modal button.mfp-arrow img {
    width: 100%; }
  .lightbox__modal button.mfp-arrow::before, .lightbox__modal button.mfp-arrow::after {
    content: none; }
  .lightbox__modal button.mfp-arrow.mfp-arrow-right {
    right: 0; }
  .lightbox__modal button.mfp-arrow.mfp-arrow-left {
    left: 0; }

.image-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0 -0.1875rem; }
  .image-grid a {
    display: block;
    margin-bottom: 0.375rem;
    padding: 0 0.1875rem; }
    .image-grid a img {
      width: 100%; }

.image-grid--2-columns a {
  width: 50%; }
  .image-grid--2-columns a.image-grid__hero {
    width: 100%; }

.image-grid--3-columns a {
  width: 33.33333%; }
  .image-grid--3-columns a.image-grid__hero {
    width: 100%; }

.image-grid--4-columns a {
  width: 25%; }
  .image-grid--4-columns a.image-grid__hero {
    width: 100%; }

.image-grid--5-columns a {
  width: 20%; }
  .image-grid--5-columns a.image-grid__hero {
    width: 100%; }

.image-grid--6-columns a {
  width: 16.66667%; }
  .image-grid--6-columns a.image-grid__hero {
    width: 100%; }

table.directory-list .name {
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.125rem; }

table.directory-list .location br {
  display: inline;
  clear: none; }

.emergency-banner {
  color: #fefefe;
  background-color: #ff0000;
  position: relative;
  top: -2.875rem;
  margin-bottom: -2.875rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-image: -webkit-linear-gradient(left, #8A1538, #ff0000);
  background-image: linear-gradient(to right, #8A1538, #ff0000); }
  .emergency-banner .heading--alpha {
    color: #fefefe; }
  .emergency-banner h1 {
    color: #fefefe; }
  .emergency-banner .heading--beta {
    color: #fefefe; }
  .emergency-banner h2 {
    color: #fefefe; }
  .emergency-banner .heading--gamma {
    color: #fefefe; }
  .emergency-banner h3 {
    color: #fefefe; }
  .emergency-banner .heading--delta {
    color: #fefefe; }
  .emergency-banner h4 {
    color: #fefefe; }
  .emergency-banner .heading--epsilon {
    color: #fefefe; }
  .emergency-banner h5 {
    color: #fefefe; }
  .emergency-banner h6 {
    color: #fefefe; }
  .emergency-banner a:link, .emergency-banner a:visited {
    color: #fbe8d7; }
  .emergency-banner a:hover, .emergency-banner a:focus, .emergency-banner a:active {
    color: #fff; }
  .emergency-banner a:link, .emergency-banner a:visited {
    color: #fbe8d7; }
  .emergency-banner a:hover, .emergency-banner a:focus, .emergency-banner a:active {
    color: #fff; }
  .emergency-banner .row {
    padding-left: 8.25rem; }
    @media screen and (min-width: 61.25em) {
      .emergency-banner .row {
        padding-left: 10.25rem; } }
  .emergency-banner .emergency-icon {
    float: left; }
    .emergency-banner .emergency-icon .icon-wrapper {
      width: 3rem;
      height: 3rem; }
  .emergency-banner .emergency-text,
  .emergency-banner a {
    margin-left: 4rem; }
  .emergency-banner .emergency-text {
    font-family: "Droid Serif", "Georgia", serif;
    font-weight: bold;
    font-size: 1.125rem; }
  .emergency-banner a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: underline; }
    .emergency-banner a .icon-wrapper {
      width: 1em;
      height: 1em;
      margin-right: 0.25em; }
  .emergency-banner + main > .masthead {
    top: 0;
    left: 0;
    margin-top: 0.375rem;
    margin-bottom: 0; }

/*
 * Button placement within text field
*/
.input--bordered, .search-form input[type="search"] {
  display: block;
  width: auto;
  background: #fefefe;
  border: solid 6px rgba(93, 82, 77, 0.125);
  margin-bottom: 0;
  color: #5d524d; }

.inner-button {
  position: relative;
  top: -6px;
  width: 100%;
  border: solid 6px rgba(93, 82, 77, 0.125);
  border-color: #e1e1e1; }
  .inner-button input[type="text"],
  .inner-button input[type="search"] {
    position: relative;
    width: 100%;
    height: 2rem;
    padding-right: 3.5rem;
    background: transparent;
    border: none; }
    .inner-button input[type="text"]::-webkit-input-placeholder,
    .inner-button input[type="search"]::-webkit-input-placeholder {
      color: rgba(93, 82, 77, 0.8); }
    .inner-button input[type="text"]:-moz-placeholder,
    .inner-button input[type="search"]:-moz-placeholder {
      color: rgba(93, 82, 77, 0.8); }
    .inner-button input[type="text"]::-moz-placeholder,
    .inner-button input[type="search"]::-moz-placeholder {
      color: rgba(93, 82, 77, 0.8); }
    .inner-button input[type="text"]:-ms-input-placeholder,
    .inner-button input[type="search"]:-ms-input-placeholder {
      color: rgba(93, 82, 77, 0.8); }
  .inner-button button {
    color: #fefefe;
    background-color: #ff0000;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: 2rem;
    width: 2rem;
    padding: 0.5rem;
    border-radius: 0; }
    .inner-button button .heading--alpha {
      color: #fefefe; }
    .inner-button button h1 {
      color: #fefefe; }
    .inner-button button .heading--beta {
      color: #fefefe; }
    .inner-button button h2 {
      color: #fefefe; }
    .inner-button button .heading--gamma {
      color: #fefefe; }
    .inner-button button h3 {
      color: #fefefe; }
    .inner-button button .heading--delta {
      color: #fefefe; }
    .inner-button button h4 {
      color: #fefefe; }
    .inner-button button .heading--epsilon {
      color: #fefefe; }
    .inner-button button h5 {
      color: #fefefe; }
    .inner-button button h6 {
      color: #fefefe; }
    .inner-button button a:link, .inner-button button a:visited {
      color: #fbe8d7; }
    .inner-button button a:hover, .inner-button button a:focus, .inner-button button a:active {
      color: #fff; }
    .inner-button button a:link, .inner-button button a:visited {
      color: #fbe8d7; }
    .inner-button button a:hover, .inner-button button a:focus, .inner-button button a:active {
      color: #fff; }

/*
 * search
 */
.search-bar {
  padding: 1rem;
  background-color: rgba(10, 10, 10, 0.3);
  overflow: hidden; }

.search-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .search-form fieldset > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    width: 100%; }
  .search-form--center {
    width: 100%; }
    @media screen and (min-width: 40em) {
      .search-form--center {
        width: 60vw; } }
  .search-form input[type="search"] {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 3em;
        -ms-flex: 1 1 3em;
            flex: 1 1 3em;
    padding: 0.5rem 1rem; }
    .live-search-box-wrapper .search-form input[type="search"],
    .live-filter-box-wrapper .search-form input[type="search"] {
      background: transparent; }
    .search-form input[type="search"]::-webkit-input-placeholder {
      color: rgba(93, 82, 77, 0.8); }
    .search-form input[type="search"]:-moz-placeholder {
      color: rgba(93, 82, 77, 0.8); }
    .search-form input[type="search"]::-moz-placeholder {
      color: rgba(93, 82, 77, 0.8); }
    .search-form input[type="search"]:-ms-input-placeholder {
      color: rgba(93, 82, 77, 0.8); }
  .search-form .button-wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .search-form input, .search-form button {
    height: 2.5rem; }
  .search-form .icon-wrapper {
    height: 2.5rem;
    width: 2.5rem;
    padding: 0.5rem;
    color: #fefefe;
    background-color: #ff0000;
    overflow: visible; }
    .search-form .icon-wrapper svg {
      width: 1rem;
      height: 1rem; }
  .search-form .icon-wrapper--before {
    position: relative;
    left: 0.375rem;
    height: 2.5rem;
    width: 2rem;
    padding: 0.5rem;
    color: #fefefe;
    background-color: #ff0000;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }

.search-submit {
  display: block;
  width: auto;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0.5rem; }
  .search-submit:before {
    content: ""; }

.live-search-box-wrapper,
.live-filter-box-wrapper {
  background: #fefefe; }

.icon-wrapper--before + .live-search-box[type="search"], .icon-wrapper--before +
.live-filter-box[type="search"] {
  border-color: #e1e1e1;
  position: relative;
  margin-left: -2rem;
  padding-right: 3.5rem;
  padding-left: 2.5rem;
  box-sizing: border-box; }

.reset-button--inline {
  color: #fefefe;
  background-color: #5d524d;
  position: relative;
  border-radius: 50%;
  width: 1.5em;
  font-size: 0.875rem;
  margin-left: -1.5em;
  left: -1.5em; }
  .reset-button--inline .heading--alpha {
    color: #fefefe; }
  .reset-button--inline h1 {
    color: #fefefe; }
  .reset-button--inline .heading--beta {
    color: #fefefe; }
  .reset-button--inline h2 {
    color: #fefefe; }
  .reset-button--inline .heading--gamma {
    color: #fefefe; }
  .reset-button--inline h3 {
    color: #fefefe; }
  .reset-button--inline .heading--delta {
    color: #fefefe; }
  .reset-button--inline h4 {
    color: #fefefe; }
  .reset-button--inline .heading--epsilon {
    color: #fefefe; }
  .reset-button--inline h5 {
    color: #fefefe; }
  .reset-button--inline h6 {
    color: #fefefe; }
  .reset-button--inline a:link, .reset-button--inline a:visited {
    color: #fbe8d7; }
  .reset-button--inline a:hover, .reset-button--inline a:focus, .reset-button--inline a:active {
    color: #fff; }
  .reset-button--inline a:link, .reset-button--inline a:visited {
    color: #fbe8d7; }
  .reset-button--inline a:hover, .reset-button--inline a:focus, .reset-button--inline a:active {
    color: #fff; }
  .search-form .reset-button--inline {
    height: 1.5em; }

.reset-button,
.reset-button--inline {
  display: none; }
  .reset-button.visible,
  .reset-button--inline.visible {
    display: block; }

.off-canvas-content > * > * {
  padding-right: 1rem;
  padding-left: 1rem; }

.full-page-width {
  padding-right: 0;
  padding-left: 0; }

.page-background-image {
  padding: 0; }

.column--auto {
  margin-bottom: 2.75em; }
  @media screen and (min-width: 40em) {
    .column--auto {
      width: 50%;
      float: left;
      padding-left: 2.5rem;
      padding-right: 2.5rem; }
      .column--auto:last-child:not(:first-child) {
        float: right; } }
  @media screen and (min-width: 61.25em) {
    .column--auto:nth-last-child(1):first-child,
    .column--auto:nth-last-child(1):first-child ~ .column,
    .column--auto:nth-last-child(1):first-child ~ .columns,
    .column--auto:nth-last-child(1):first-child ~ .columns {
      width: 100%;
      float: left;
      padding-left: 2.5rem;
      padding-right: 2.5rem; }
      .column--auto:nth-last-child(1):first-child:last-child:not(:first-child),
      .column--auto:nth-last-child(1):first-child ~ .column:last-child:not(:first-child),
      .column--auto:nth-last-child(1):first-child ~ .columns:last-child:not(:first-child),
      .column--auto:nth-last-child(1):first-child ~ .columns:last-child:not(:first-child) {
        float: right; }
    .column--auto:nth-last-child(2):first-child,
    .column--auto:nth-last-child(2):first-child ~ .column,
    .column--auto:nth-last-child(2):first-child ~ .columns,
    .column--auto:nth-last-child(2):first-child ~ .columns {
      width: 50%;
      float: left;
      padding-left: 2.5rem;
      padding-right: 2.5rem; }
      .column--auto:nth-last-child(2):first-child:last-child:not(:first-child),
      .column--auto:nth-last-child(2):first-child ~ .column:last-child:not(:first-child),
      .column--auto:nth-last-child(2):first-child ~ .columns:last-child:not(:first-child),
      .column--auto:nth-last-child(2):first-child ~ .columns:last-child:not(:first-child) {
        float: right; }
    .column--auto:nth-last-child(3):first-child,
    .column--auto:nth-last-child(3):first-child ~ .column,
    .column--auto:nth-last-child(3):first-child ~ .columns,
    .column--auto:nth-last-child(3):first-child ~ .columns {
      width: 33.33333%;
      float: left;
      padding-left: 2.5rem;
      padding-right: 2.5rem; }
      .column--auto:nth-last-child(3):first-child:last-child:not(:first-child),
      .column--auto:nth-last-child(3):first-child ~ .column:last-child:not(:first-child),
      .column--auto:nth-last-child(3):first-child ~ .columns:last-child:not(:first-child),
      .column--auto:nth-last-child(3):first-child ~ .columns:last-child:not(:first-child) {
        float: right; }
    .column--auto:nth-last-child(4):first-child,
    .column--auto:nth-last-child(4):first-child ~ .column,
    .column--auto:nth-last-child(4):first-child ~ .columns,
    .column--auto:nth-last-child(4):first-child ~ .columns {
      width: 25%;
      float: left;
      padding-left: 2.5rem;
      padding-right: 2.5rem; }
      .column--auto:nth-last-child(4):first-child:last-child:not(:first-child),
      .column--auto:nth-last-child(4):first-child ~ .column:last-child:not(:first-child),
      .column--auto:nth-last-child(4):first-child ~ .columns:last-child:not(:first-child),
      .column--auto:nth-last-child(4):first-child ~ .columns:last-child:not(:first-child) {
        float: right; } }

@media screen and (max-width: 39.9375em) {
  .row.small-narrow-columns .column, .row.small-narrow-columns .columns {
    padding-right: 0;
    padding-left: 0; } }

@media screen and (max-width: 61.1875em) {
  .row.medium-narrow-columns .column, .row.medium-narrow-columns .columns {
    padding-right: 0;
    padding-left: 0; } }

.row--expanded {
  max-width: none; }

.row--gutter-reduced {
  padding-right: 1.25rem;
  padding-left: 1.25rem; }

.row.row--no-gutter-outer {
  max-width: 76.25rem;
  padding-right: 0;
  padding-left: 0; }

.column.column--gutter-reduced.column.column, .column--gutter-reduced.columns,
.columns.column--gutter-reduced.column.column,
.columns.column--gutter-reduced {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }

.column.column--gutter-wide.column.column, .column--gutter-wide.columns,
.columns.column--gutter-wide.column.column,
.columns.column--gutter-wide {
  padding-right: 10rem;
  padding-left: 10rem; }

.column.column--gutter-none, .column--gutter-none.columns,
.columns.column--gutter-none {
  padding-right: 0 !important;
  padding-left: 0 !important; }
  .column.column--gutter-none > .row, .column--gutter-none.columns > .row,
  .columns.column--gutter-none > .row {
    margin-right: 0;
    margin-left: 0; }
  @media screen and (min-width: 40em) {
    .row .row .column.column--gutter-none:first-child, .row .row .column--gutter-none.columns:first-child, .row .row
    .columns.column--gutter-none:first-child {
      padding-left: 2.5rem !important; }
    .row .row .column.column--gutter-none:last-child, .row .row .column--gutter-none.columns:last-child, .row .row
    .columns.column--gutter-none:last-child {
      padding-right: 2.5rem !important; } }

.fill-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

.max-page-width {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2rem;
  padding-right: 2rem; }

.has-sidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  @media screen and (max-width: 74.9375em) {
    .has-sidebar {
      padding-right: 0;
      padding-left: 0; } }
  @media screen and (min-width: 61.25em) {
    .has-sidebar {
      padding-left: 0; } }
  .has-sidebar > .header--page {
    width: 100%;
    float: left;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .has-sidebar > .header--page:last-child:not(:first-child) {
      float: right; }
  .has-sidebar:not(.row) {
    max-width: 75rem;
    margin-right: auto;
    margin-left: auto; }
  .has-sidebar > .content--main,
  .has-sidebar > .sidebar {
    width: 100%; }
  .has-sidebar > .content--main {
    padding-right: 2rem;
    padding-left: 2rem; }
    @media screen and (min-width: 61.25em) {
      .has-sidebar > .content--main {
        width: 70.83333%;
        float: left;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-right: 2.5rem; }
        .has-sidebar > .content--main:last-child:not(:first-child) {
          float: right; }
        .has-sidebar > .content--main.page-intro {
          width: 62.5%;
          float: left;
          padding-left: 2.5rem;
          padding-right: 2.5rem; }
          .has-sidebar > .content--main.page-intro:last-child:not(:first-child) {
            float: right; } }
  .has-sidebar > .sidebar {
    padding: 0; }
    .has-sidebar > .sidebar > section {
      padding-top: 0;
      padding-right: 2rem;
      padding-bottom: 2rem;
      padding-left: 2rem; }
      .has-sidebar > .sidebar > section.section--dark, .has-sidebar > .sidebar > section.bg-secondary {
        padding-top: 2rem; }
      @media screen and (min-width: 61.25em) {
        .has-sidebar > .sidebar > section {
          padding: 0; }
          .has-sidebar > .sidebar > section.section--dark, .has-sidebar > .sidebar > section.bg-secondary {
            padding: 2rem; } }
    .has-sidebar > .sidebar > section > header,
    .has-sidebar > .sidebar .section__header {
      margin-bottom: 1.375em; }
    @media screen and (min-width: 61.25em) {
      .has-sidebar > .sidebar {
        width: 29.16667%;
        float: left;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        padding-left: 2.5rem; }
        .has-sidebar > .sidebar:last-child:not(:first-child) {
          float: right; } }
  @media screen and (min-width: 61.25em) {
    .has-sidebar .page-intro + .sidebar {
      width: 37.5%;
      float: left;
      padding-left: 2.5rem;
      padding-right: 2.5rem; }
      .has-sidebar .page-intro + .sidebar:last-child:not(:first-child) {
        float: right; } }

.match-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .match-height.row .column, .match-height.row .columns,
  .match-height.row .columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  .match-height.wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }

*[class*="column-block"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }
  *[class*="column-block"].row .column, *[class*="column-block"].row .columns,
  *[class*="column-block"].row .columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  *[class*="column-block"] .column, *[class*="column-block"] .columns {
    margin-bottom: 1.375em; }
  *[class*="column-block"] > header {
    width: 100%; }

@media screen and (min-width: 40em) and (max-width: 61.1875em) {
  .column-block-3 .column--auto {
    width: 100%;
    display: block;
    position: relative;
    min-height: 12.8125rem; }
    .column-block-3 .column--auto .teaser {
      width: 100%; }
    .column-block-3 .column--auto .teaser__image {
      width: 33%;
      position: absolute;
      top: 0.375rem;
      left: 0; }
    .column-block-3 .column--auto .teaser__content {
      width: 100%;
      padding-left: calc(33% + 1rem); }
      .column-block-3 .column--auto .teaser__content .teaser__links {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-flow: column nowrap;
            -ms-flex-flow: column nowrap;
                flex-flow: column nowrap; } }

.column-block-3 .column--auto {
  width: auto; }
  .column-block-3 .column--auto .teaser--image-first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap; }
  .column-block-3 .column--auto .button + .block-link {
    margin-left: 0;
    text-indent: 0; }
  .column-block-3 .column--auto .teaser__links {
    display: block; }

@media screen and (min-width: 40em) {
  .column-block-3 .column--auto {
    width: 100%; }
    .column-block-3 .column--auto .teaser--image-first {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; }
    .column-block-3 .column--auto .teaser__links {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }

@media screen and (min-width: 61.25em) {
  .column-block-3 .column--auto .teaser__content {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; } }

figure img {
  width: 100%;
  max-width: 100%; }

figure cite {
  display: block; }

body > figure,
.sg-pattern-example > figure {
  margin-top: 3em;
  margin-left: 3em;
  max-width: 600px; }

.image--circle {
  border-radius: 50%;
  overflow: hidden; }

.image-behind {
  position: relative; }
  .image-behind img {
    z-index: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%; }

.figure--caption-flush {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; }
  .figure--caption-flush img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .figure--caption-flush figcaption {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #fefefe;
    background-color: #8A1538;
    color: inherit;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 0.9375rem;
    font-weight: normal;
    text-transform: none;
    color: #fefefe;
    padding: 1rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
    .figure--caption-flush figcaption .heading--alpha {
      color: #fefefe; }
    .figure--caption-flush figcaption h1 {
      color: #fefefe; }
    .figure--caption-flush figcaption .heading--beta {
      color: #fefefe; }
    .figure--caption-flush figcaption h2 {
      color: #fefefe; }
    .figure--caption-flush figcaption .heading--gamma {
      color: #fefefe; }
    .figure--caption-flush figcaption h3 {
      color: #fefefe; }
    .figure--caption-flush figcaption .heading--delta {
      color: #fefefe; }
    .figure--caption-flush figcaption h4 {
      color: #fefefe; }
    .figure--caption-flush figcaption .heading--epsilon {
      color: #fefefe; }
    .figure--caption-flush figcaption h5 {
      color: #fefefe; }
    .figure--caption-flush figcaption h6 {
      color: #fefefe; }
    .figure--caption-flush figcaption a:link, .figure--caption-flush figcaption a:visited {
      color: #fbe8d7; }
    .figure--caption-flush figcaption a:hover, .figure--caption-flush figcaption a:focus, .figure--caption-flush figcaption a:active {
      color: #fff; }
    .figure--caption-flush figcaption a:link, .figure--caption-flush figcaption a:visited {
      color: #fbe8d7; }
    .figure--caption-flush figcaption a:hover, .figure--caption-flush figcaption a:focus, .figure--caption-flush figcaption a:active {
      color: #fff; }
    @media screen and (min-width: 40em) {
      .figure--caption-flush figcaption {
        font-size: 1.5rem; } }

.figure--caption-flush.hover-link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .figure--caption-flush.hover-link a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-transition: none;
    transition: none; }
    .figure--caption-flush.hover-link a:link, .figure--caption-flush.hover-link a:visited {
      color: #ff0000; }
    .figure--caption-flush.hover-link a:hover, .figure--caption-flush.hover-link a:focus, .figure--caption-flush.hover-link a:active {
      color: #fefefe; }
    .figure--caption-flush.hover-link a figcaption {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #5d524d;
      background-color: #fefefe;
      color: inherit;
      font-family: "Droid Serif", "Georgia", serif;
      font-size: 0.9375rem;
      font-weight: normal;
      text-transform: none;
      color: inherit;
      padding: 1rem;
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 auto;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      -webkit-transition: all 0.15s ease;
      transition: all 0.15s ease; }
      @media screen and (min-width: 40em) {
        .figure--caption-flush.hover-link a figcaption {
          font-size: 1.5rem; } }
    .figure--caption-flush.hover-link a:hover figcaption, .figure--caption-flush.hover-link a:focus figcaption, .figure--caption-flush.hover-link a:active figcaption {
      margin-top: 0;
      margin-bottom: 1rem;
      color: #fefefe;
      background-color: #8A1538;
      color: inherit;
      font-family: "Droid Serif", "Georgia", serif;
      font-size: 0.9375rem;
      font-weight: normal;
      text-transform: none;
      padding: 1rem;
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 auto;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
      .figure--caption-flush.hover-link a:hover figcaption .heading--alpha, .figure--caption-flush.hover-link a:focus figcaption .heading--alpha, .figure--caption-flush.hover-link a:active figcaption .heading--alpha {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption h1, .figure--caption-flush.hover-link a:focus figcaption h1, .figure--caption-flush.hover-link a:active figcaption h1 {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption .heading--beta, .figure--caption-flush.hover-link a:focus figcaption .heading--beta, .figure--caption-flush.hover-link a:active figcaption .heading--beta {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption h2, .figure--caption-flush.hover-link a:focus figcaption h2, .figure--caption-flush.hover-link a:active figcaption h2 {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption .heading--gamma, .figure--caption-flush.hover-link a:focus figcaption .heading--gamma, .figure--caption-flush.hover-link a:active figcaption .heading--gamma {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption h3, .figure--caption-flush.hover-link a:focus figcaption h3, .figure--caption-flush.hover-link a:active figcaption h3 {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption .heading--delta, .figure--caption-flush.hover-link a:focus figcaption .heading--delta, .figure--caption-flush.hover-link a:active figcaption .heading--delta {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption h4, .figure--caption-flush.hover-link a:focus figcaption h4, .figure--caption-flush.hover-link a:active figcaption h4 {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption .heading--epsilon, .figure--caption-flush.hover-link a:focus figcaption .heading--epsilon, .figure--caption-flush.hover-link a:active figcaption .heading--epsilon {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption h5, .figure--caption-flush.hover-link a:focus figcaption h5, .figure--caption-flush.hover-link a:active figcaption h5 {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption h6, .figure--caption-flush.hover-link a:focus figcaption h6, .figure--caption-flush.hover-link a:active figcaption h6 {
        color: #fefefe; }
      .figure--caption-flush.hover-link a:hover figcaption a:link, .figure--caption-flush.hover-link a:hover figcaption a:visited, .figure--caption-flush.hover-link a:focus figcaption a:link, .figure--caption-flush.hover-link a:focus figcaption a:visited, .figure--caption-flush.hover-link a:active figcaption a:link, .figure--caption-flush.hover-link a:active figcaption a:visited {
        color: #fbe8d7; }
      .figure--caption-flush.hover-link a:hover figcaption a:hover, .figure--caption-flush.hover-link a:hover figcaption a:focus, .figure--caption-flush.hover-link a:hover figcaption a:active, .figure--caption-flush.hover-link a:focus figcaption a:hover, .figure--caption-flush.hover-link a:focus figcaption a:focus, .figure--caption-flush.hover-link a:focus figcaption a:active, .figure--caption-flush.hover-link a:active figcaption a:hover, .figure--caption-flush.hover-link a:active figcaption a:focus, .figure--caption-flush.hover-link a:active figcaption a:active {
        color: #fff; }
      .figure--caption-flush.hover-link a:hover figcaption a:link, .figure--caption-flush.hover-link a:hover figcaption a:visited, .figure--caption-flush.hover-link a:focus figcaption a:link, .figure--caption-flush.hover-link a:focus figcaption a:visited, .figure--caption-flush.hover-link a:active figcaption a:link, .figure--caption-flush.hover-link a:active figcaption a:visited {
        color: #fbe8d7; }
      .figure--caption-flush.hover-link a:hover figcaption a:hover, .figure--caption-flush.hover-link a:hover figcaption a:focus, .figure--caption-flush.hover-link a:hover figcaption a:active, .figure--caption-flush.hover-link a:focus figcaption a:hover, .figure--caption-flush.hover-link a:focus figcaption a:focus, .figure--caption-flush.hover-link a:focus figcaption a:active, .figure--caption-flush.hover-link a:active figcaption a:hover, .figure--caption-flush.hover-link a:active figcaption a:focus, .figure--caption-flush.hover-link a:active figcaption a:active {
        color: #fff; }
      @media screen and (min-width: 40em) {
        .figure--caption-flush.hover-link a:hover figcaption, .figure--caption-flush.hover-link a:focus figcaption, .figure--caption-flush.hover-link a:active figcaption {
          font-size: 1.5rem; } }

.figcaption--overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  width: 100%;
  color: #fefefe;
  background-clip: border-box; }
  .bw-hover .figcaption--overlay::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #8A1538;
    width: 100%;
    height: 0;
    content: ''; }
  .bw-hover:hover .figcaption--overlay::after {
    height: 1rem; }

.offset-border {
  position: relative; }
  .offset-border::before {
    display: block;
    position: absolute;
    z-index: -1;
    border: solid 6px rgba(93, 82, 77, 0.125);
    width: 100%;
    -webkit-transform: translate(2em, -2em);
            transform: translate(2em, -2em);
    height: 100%;
    content: ''; }
  .offset-border.image-collage {
    position: relative; }
    .offset-border.image-collage::before {
      display: block;
      position: absolute;
      z-index: -1;
      border: solid 6px rgba(93, 82, 77, 0.125);
      width: 100%;
      top: 6em;
      right: 0;
      bottom: 6em;
      left: 0;
      height: auto;
      -webkit-transform: translate(3em);
              transform: translate(3em);
      content: ''; }
  .offset-border.offset-border--left {
    position: relative; }
    .offset-border.offset-border--left::before {
      display: block;
      position: absolute;
      z-index: -1;
      border: solid 6px rgba(93, 82, 77, 0.125);
      width: 100%;
      -webkit-transform: translate(-2em, -2em);
              transform: translate(-2em, -2em);
      height: 100%;
      content: ''; }
    .offset-border.offset-border--left.image-collage {
      position: relative; }
      .offset-border.offset-border--left.image-collage::before {
        display: block;
        position: absolute;
        z-index: -1;
        border: solid 6px rgba(93, 82, 77, 0.125);
        width: 100%;
        top: 6em;
        right: 0;
        bottom: 6em;
        left: 0;
        height: auto;
        -webkit-transform: translate(-2em);
                transform: translate(-2em);
        content: ''; }

.image-collage img {
  position: relative;
  margin-top: -3.125rem; }
  .image-collage img:not(:last-of-type) {
    margin-bottom: 0; }
  .image-collage img:first-of-type {
    margin-top: 0; }
  .image-collage img:nth-of-type(odd) {
    float: left;
    z-index: 1;
    width: 90%; }
  .image-collage img:nth-of-type(even) {
    float: right;
    z-index: 2;
    width: 54%; }

.bw-hover {
  position: relative; }
  .cssfilters .bw-hover img {
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    -webkit-filter: gray;
            filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    /* Chrome 19+, Safari 6+, Safari 6+ iOS */ }
  .cssfilters .bw-hover:hover img {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%); }

.figure--featured {
  margin-right: -2.5rem;
  margin-bottom: 0;
  margin-left: -2.5rem; }
  .news-article .figure--featured {
    margin-bottom: 1.375em; }
  @media screen and (min-width: 40em) {
    .figure--featured {
      margin-right: 0;
      margin-bottom: 4rem;
      margin-left: 0; } }

.menu,
.breadcrumbs {
  margin: 0; }
  .menu > li,
  .breadcrumbs > li {
    margin-left: 0;
    text-indent: 0; }
    .menu > li::before,
    .breadcrumbs > li::before {
      display: none; }

.prev-next {
  color: #5d524d;
  background-color: #e1e1e1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #ff0000;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.5rem;
  padding: 1rem 2rem; }
  .prev-next .ornament {
    color: #fefefe;
    background-color: #ff0000;
    position: relative;
    width: 0.75em;
    height: 0.75em;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .prev-next .ornament .heading--alpha {
      color: #fefefe; }
    .prev-next .ornament h1 {
      color: #fefefe; }
    .prev-next .ornament .heading--beta {
      color: #fefefe; }
    .prev-next .ornament h2 {
      color: #fefefe; }
    .prev-next .ornament .heading--gamma {
      color: #fefefe; }
    .prev-next .ornament h3 {
      color: #fefefe; }
    .prev-next .ornament .heading--delta {
      color: #fefefe; }
    .prev-next .ornament h4 {
      color: #fefefe; }
    .prev-next .ornament .heading--epsilon {
      color: #fefefe; }
    .prev-next .ornament h5 {
      color: #fefefe; }
    .prev-next .ornament h6 {
      color: #fefefe; }
    .prev-next .ornament a:link, .prev-next .ornament a:visited {
      color: #fbe8d7; }
    .prev-next .ornament a:hover, .prev-next .ornament a:focus, .prev-next .ornament a:active {
      color: #fff; }
    .prev-next .ornament a:link, .prev-next .ornament a:visited {
      color: #fbe8d7; }
    .prev-next .ornament a:hover, .prev-next .ornament a:focus, .prev-next .ornament a:active {
      color: #fff; }
  .prev-next svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    -webkit-transform: translate3D(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
            transform: translate3D(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
    -webkit-transform-origin: 13px 10px;
            transform-origin: 13px 10px; }
  .prev-next .prev,
  .prev-next .next {
    display: block;
    white-space: nowrap;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  .prev-next .next {
    text-align: right; }
  .prev-next .prev {
    margin-right: 0.5rem; }
    .prev-next .prev svg {
      -webkit-transform: rotate3d(0, 0, 1, 180deg) translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
              transform: rotate3d(0, 0, 1, 180deg) translate3d(-50%, -50%, 0) scale3d(0.8, 0.8, 1);
      -webkit-transform-origin: -1px -1px;
              transform-origin: -1px -1px; }

div.breadcrumbs > * {
  float: left;
  cursor: default;
  font-size: 0.6875rem;
  text-transform: uppercase; }
  div.breadcrumbs > *:not(:last-child)::after {
    position: relative;
    top: 1px;
    opacity: 1;
    margin: 0 0.75rem;
    color: #cacaca;
    content: "/"; }
  div.breadcrumbs > *:not('a') {
    color: #0a0a0a; }

.pagination {
  margin: 0;
  margin-bottom: 2.75em;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif; }
  .pagination > li {
    margin-left: 0;
    text-indent: 0; }
    .pagination > li::before {
      display: none; }
  .pagination:last-child {
    margin-bottom: 0; }
  .pagination .current,
  .pagination a,
  .pagination button {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem; }
  .pagination a,
  .pagination button {
    border-radius: 0.125rem; }
  .pagination .ellipsis:after {
    content: '....'; }

.page-tab-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .tabs-after + .page-tab-group {
    position: relative;
    top: -4.375rem;
    margin-top: 0; }

.page-tab {
  color: inherit;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.1875rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fefefe;
  background-color: #591520;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.375rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: 0.75rem; }
  @media screen and (min-width: 40em) {
    .page-tab {
      font-size: 1.125rem; } }
  .page-tab .heading--alpha {
    color: #fefefe; }
  .page-tab h1 {
    color: #fefefe; }
  .page-tab .heading--beta {
    color: #fefefe; }
  .page-tab h2 {
    color: #fefefe; }
  .page-tab .heading--gamma {
    color: #fefefe; }
  .page-tab h3 {
    color: #fefefe; }
  .page-tab .heading--delta {
    color: #fefefe; }
  .page-tab h4 {
    color: #fefefe; }
  .page-tab .heading--epsilon {
    color: #fefefe; }
  .page-tab h5 {
    color: #fefefe; }
  .page-tab h6 {
    color: #fefefe; }
  .page-tab a:link, .page-tab a:visited {
    color: #fbe8d7; }
  .page-tab a:hover, .page-tab a:focus, .page-tab a:active {
    color: #fff; }
  .page-tab a:link, .page-tab a:visited {
    color: #fefefe; }
  .page-tab a:hover, .page-tab a:focus, .page-tab a:active {
    color: #fefefe; }
  .page-tab:link, .page-tab:visited {
    color: #fefefe; }
  .page-tab:hover, .page-tab:focus, .page-tab:active {
    color: white; }
  .page-tab:hover, .page-tab:focus, .page-tab:active {
    background-color: #441019; }
  .page-tab.active {
    background-color: #fefefe; }
    .page-tab.active:link, .page-tab.active:visited {
      color: #0a0a0a; }
    .page-tab.active:hover, .page-tab.active:focus, .page-tab.active:active {
      color: #242424; }

.ornament {
  height: 1em;
  width: 1em; }
  .ornament svg {
    height: 100%;
    width: 100%; }
  .ornament.orient-down svg, .ornament.orient-rot-90 svg {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .ornament.orient-right svg, .ornament.orient-rot-180 svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .ornament.orient-up svg, .ornament.orient-rot-270 svg {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg); }
  .ornament.frame-transparent {
    background-color: transparent; }
  .ornament.frame-white {
    background-color: #fefefe;
    color: #000000; }
  .ornament.frame-black {
    background-color: #0a0a0a;
    color: #fefefe; }
  .ornament.frame-light {
    background-color: #efefef;
    color: #000000; }
  .ornament.frame-dark {
    background-color: #000000;
    color: #fefefe; }
  .ornament.frame-brand {
    background-color: #8A1538;
    color: #fefefe; }
  .ornament.frame-secondary {
    background-color: #8A1538;
    color: #fefefe; }

.ornament-above {
  margin-top: 0.5em;
  padding-top: 0.5em;
  position: relative; }
  .ornament-above .ornament {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%); }

.ornament-below {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  position: relative; }
  .ornament-below .ornament {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(50%);
            transform: translateX(-50%) translateY(50%); }

/* -------------------------------------------------------------- */
/*    Molecules - Text
/*
/*    TODO:
/*		- put_todo_items_here
/* -------------------------------------------------------------- */
/*
/* Pullquote
/* _______________________________________________________________ */
.pullquote {
  color: #fefefe;
  background-color: #8A1538;
  position: relative;
  margin: 1rem 1rem 2rem;
  padding: 1rem;
  border: none;
  background-clip: padding-box; }
  .pullquote .heading--alpha {
    color: #fefefe; }
  .pullquote h1 {
    color: #fefefe; }
  .pullquote .heading--beta {
    color: #fefefe; }
  .pullquote h2 {
    color: #fefefe; }
  .pullquote .heading--gamma {
    color: #fefefe; }
  .pullquote h3 {
    color: #fefefe; }
  .pullquote .heading--delta {
    color: #fefefe; }
  .pullquote h4 {
    color: #fefefe; }
  .pullquote .heading--epsilon {
    color: #fefefe; }
  .pullquote h5 {
    color: #fefefe; }
  .pullquote h6 {
    color: #fefefe; }
  .pullquote a:link, .pullquote a:visited {
    color: #fbe8d7; }
  .pullquote a:hover, .pullquote a:focus, .pullquote a:active {
    color: #fff; }
  .pullquote a:link, .pullquote a:visited {
    color: #fbe8d7; }
  .pullquote a:hover, .pullquote a:focus, .pullquote a:active {
    color: #fff; }
  .pullquote::before {
    position: absolute;
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
    border: solid 6px rgba(93, 82, 77, 0.125);
    content: ''; }
  .pullquote p {
    margin-bottom: 0.5rem;
    margin-left: 0;
    color: inherit;
    font-family: "Droid Serif", "Georgia", serif;
    font-style: italic;
    font-size: 1.125rem; }
  .pullquote cite {
    margin-left: 0;
    color: inherit;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    text-transform: uppercase;
    font-style: normal;
    font-size: 1.125rem; }

.hgroup {
  margin-bottom: 2em; }

.header--line,
.header--line--right,
.header--line--left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .header--line h2,
  .header--line--right h2,
  .header--line--left h2 {
    font-size: 1.875rem; }
  .header--line::before, .header--line::after,
  .header--line--right::before,
  .header--line--right::after,
  .header--line--left::before,
  .header--line--left::after {
    display: block;
    background-color: #e1e1e1;
    width: 500px;
    height: 2px;
    content: '';
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
    .section--dark .header--line::before, .section--dark .header--line::after, .section--dark
    .header--line--right::before, .section--dark
    .header--line--right::after, .section--dark
    .header--line--left::before, .section--dark
    .header--line--left::after {
      background-color: rgba(225, 225, 225, 0.5); }
  .header--line .header__content,
  .header--line--right .header__content,
  .header--line--left .header__content {
    margin-bottom: 0;
    padding: 0 1em;
    text-align: center;
    color: inherit;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 1.1875rem;
    font-weight: bold;
    text-transform: uppercase;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    @media screen and (min-width: 40em) {
      .header--line .header__content,
      .header--line--right .header__content,
      .header--line--left .header__content {
        font-size: 1.125rem; } }

.header--line--right::before,
.header--line--left::before {
  background-position: right center; }

.header--line--right::after,
.header--line--left::after {
  background-position: left center; }

.header--line--right::before {
  display: inline;
  width: 0;
  content: ''; }

.header--line--right .header__content {
  padding-left: 0; }

.header--line--left::after {
  display: inline;
  width: 0;
  content: ''; }

.header--line--left .header__content {
  padding-right: 0; }

/* Link with Subtitle */
.link__subtitle {
  text-transform: uppercase;
  color: #5d524d;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 0.72em;
  font-weight: normal; }
  .link__subtitle--large {
    color: #94e6d8;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 1.1875rem;
    font-weight: bold;
    text-transform: uppercase; }
    @media screen and (min-width: 40em) {
      .link__subtitle--large {
        font-size: 1.125rem; } }

.intro {
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.5rem; }

.person__details .icon-wrapper {
  margin-right: 0.5em;
  width: 1.1em;
  height: 1.1em;
  vertical-align: middle;
  color: #ff0000; }

.phone {
  white-space: nowrap; }

.news-article .figure--featured {
  position: relative; }
  .news-article .figure--featured::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3D(-50%, -50%, 0);
            transform: translate3D(-50%, -50%, 0);
    z-index: -1;
    border: solid 6px rgba(93, 82, 77, 0.125);
    width: 110%;
    height: 75%;
    content: ''; }

.dateline {
  margin-bottom: 1.375em;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #0a0a0a; }

@media screen and (min-width: 40em) {
  .pullquote {
    float: left;
    width: 20.3125rem;
    margin-right: 2.5rem; } }

.byline {
  font-size: 0.75em;
  font-style: italic;
  margin-bottom: 0.5rem; }

.teaser--event.date-block .event,
.events-list--date-block .event {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: solid 2px rgba(93, 82, 77, 0.125); }
  .teaser--event.date-block .event .event__header,
  .events-list--date-block .event .event__header {
    margin-bottom: 1.375em;
    padding-bottom: 1.375em;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: left; }
    .teaser--event.date-block .event .event__header::before, .teaser--event.date-block .event .event__header::after,
    .events-list--date-block .event .event__header::before,
    .events-list--date-block .event .event__header::after {
      content: ' ';
      display: table; }
    .teaser--event.date-block .event .event__header::after,
    .events-list--date-block .event .event__header::after {
      clear: both; }
    .teaser--event.date-block .event .event__header .event__title,
    .teaser--event.date-block .event .event__header .event__location,
    .events-list--date-block .event .event__header .event__title,
    .events-list--date-block .event .event__header .event__location {
      margin-left: 10.375rem; }
    .teaser--event.date-block .event .event__header .event__date-block,
    .events-list--date-block .event .event__header .event__date-block {
      float: left;
      margin-right: 1rem;
      width: 9.375rem;
      height: 5rem;
      font-size: 1.125rem; }
    .teaser--event.date-block .event .event__header .event__location,
    .events-list--date-block .event .event__header .event__location {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      font-size: 1rem;
      font-weight: bold; }
      .teaser--event.date-block .event .event__header .event__location .icon-wrapper,
      .events-list--date-block .event .event__header .event__location .icon-wrapper {
        display: inline-block;
        margin-right: 0.25em;
        font-size: 0.5em; }
  .teaser--event.date-block .event .event__blurb,
  .teaser--event.date-block .event .block-link,
  .events-list--date-block .event .event__blurb,
  .events-list--date-block .event .block-link {
    margin-left: 10.375rem; }
  .teaser--event.date-block .event .event__date-block,
  .events-list--date-block .event .event__date-block {
    color: #fefefe;
    background-color: #8A1538;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.5rem;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center; }
    .teaser--event.date-block .event .event__date-block .heading--alpha,
    .events-list--date-block .event .event__date-block .heading--alpha {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block h1,
    .events-list--date-block .event .event__date-block h1 {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block .heading--beta,
    .events-list--date-block .event .event__date-block .heading--beta {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block h2,
    .events-list--date-block .event .event__date-block h2 {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block .heading--gamma,
    .events-list--date-block .event .event__date-block .heading--gamma {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block h3,
    .events-list--date-block .event .event__date-block h3 {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block .heading--delta,
    .events-list--date-block .event .event__date-block .heading--delta {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block h4,
    .events-list--date-block .event .event__date-block h4 {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block .heading--epsilon,
    .events-list--date-block .event .event__date-block .heading--epsilon {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block h5,
    .events-list--date-block .event .event__date-block h5 {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block h6,
    .events-list--date-block .event .event__date-block h6 {
      color: #fefefe; }
    .teaser--event.date-block .event .event__date-block a:link, .teaser--event.date-block .event .event__date-block a:visited,
    .events-list--date-block .event .event__date-block a:link,
    .events-list--date-block .event .event__date-block a:visited {
      color: #fbe8d7; }
    .teaser--event.date-block .event .event__date-block a:hover, .teaser--event.date-block .event .event__date-block a:focus, .teaser--event.date-block .event .event__date-block a:active,
    .events-list--date-block .event .event__date-block a:hover,
    .events-list--date-block .event .event__date-block a:focus,
    .events-list--date-block .event .event__date-block a:active {
      color: #fff; }
    .teaser--event.date-block .event .event__date-block a:link, .teaser--event.date-block .event .event__date-block a:visited,
    .events-list--date-block .event .event__date-block a:link,
    .events-list--date-block .event .event__date-block a:visited {
      color: #fbe8d7; }
    .teaser--event.date-block .event .event__date-block a:hover, .teaser--event.date-block .event .event__date-block a:focus, .teaser--event.date-block .event .event__date-block a:active,
    .events-list--date-block .event .event__date-block a:hover,
    .events-list--date-block .event .event__date-block a:focus,
    .events-list--date-block .event .event__date-block a:active {
      color: #fff; }
  .teaser--event.date-block .event .event__date,
  .events-list--date-block .event .event__date {
    font-weight: bold; }

.teaser--event.date-block .event .event__date-block {
  color: #5d524d;
  background-color: #fefefe; }

.social-share {
  overflow: hidden;
  margin-bottom: 1rem; }
  .social-share li {
    float: left;
    margin-right: 0.5rem; }
  .social-share a {
    color: #fefefe;
    display: block;
    padding: 1rem; }
    .social-share a:hover {
      background: #5d524d; }

.person__profile-stub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-bottom: 2rem; }
  .person__profile-stub > .person__portrait {
    width: 9rem;
    margin-right: 2.5rem;
    margin-bottom: 0.5rem; }
    .person__profile-stub > .person__portrait img {
      margin-bottom: 0; }
  .person__profile-stub .person__details {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 13.75rem;
        -ms-flex: 1 1 13.75rem;
            flex: 1 1 13.75rem; }
    .person__profile-stub .person__details .person--title {
      margin-bottom: 1.375em; }
    .person__profile-stub .person__details .hgroup {
      margin-bottom: 0; }
      .person__profile-stub .person__details .hgroup + *:not(.address) {
        margin-top: 1.375em; }
    .person__profile-stub .person__details .person--address + * {
      margin-top: 1.375em; }

.faculty__info--primary::before, .faculty__info--primary::after {
  content: ' ';
  display: table; }

.faculty__info--primary::after {
  clear: both; }

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
  .faculty__info--primary.section--gray {
    background-color: #fefefe; }
    .faculty__info--primary.section--gray > .row {
      padding: 0; } }

@media screen and (min-width: 40em) {
  .faculty__info--primary .person__portrait {
    float: left;
    margin-right: 2rem;
    width: 12.5rem;
    height: 14.5625rem; }
  .faculty__info--primary .person__details,
  .faculty__info--primary .person__info-blocks {
    margin-left: 14.5rem; } }

.faculty__info--primary .person__details {
  line-height: 1.8;
  margin-bottom: 1.375em;
  padding-bottom: 1.375em;
  border-bottom: solid 3px rgba(93, 82, 77, 0.125); }
  .faculty__info--primary .person__details .icon-wrapper {
    height: 1.3em;
    vertical-align: -0.3em; }

.faculty__info--primary .person__info-blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
  .faculty__info--primary .person__info-blocks .column:first-child, .faculty__info--primary .person__info-blocks .columns:first-child {
    padding-left: 0; }
  .faculty__info--primary .person__info-blocks .column:last-child, .faculty__info--primary .person__info-blocks .columns:last-child {
    padding-right: 0; }
  @media screen and (max-width: 61.1875em) {
    .faculty__info--primary .person__info-blocks .column:first-child, .faculty__info--primary .person__info-blocks .columns:first-child {
      padding-right: 0; }
    .faculty__info--primary .person__info-blocks .column:last-child, .faculty__info--primary .person__info-blocks .columns:last-child {
      padding-left: 0; } }

.faculty__info--primary .person__name {
  margin-bottom: 0; }

.site-header > .row {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .site-header > .row .menu-trigger {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    text-align: right;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 0.75rem; }
    @media screen and (min-width: 50.3125em) {
      .site-header > .row .menu-trigger {
        display: none; } }

.site-header__megamenu {
  color: #fefefe;
  background-color: #8A1538;
  width: 100%; }
  .site-header__megamenu .heading--alpha {
    color: #fefefe; }
  .site-header__megamenu h1 {
    color: #fefefe; }
  .site-header__megamenu .heading--beta {
    color: #fefefe; }
  .site-header__megamenu h2 {
    color: #fefefe; }
  .site-header__megamenu .heading--gamma {
    color: #fefefe; }
  .site-header__megamenu h3 {
    color: #fefefe; }
  .site-header__megamenu .heading--delta {
    color: #fefefe; }
  .site-header__megamenu h4 {
    color: #fefefe; }
  .site-header__megamenu .heading--epsilon {
    color: #fefefe; }
  .site-header__megamenu h5 {
    color: #fefefe; }
  .site-header__megamenu h6 {
    color: #fefefe; }
  .site-header__megamenu a:link, .site-header__megamenu a:visited {
    color: #fbe8d7; }
  .site-header__megamenu a:hover, .site-header__megamenu a:focus, .site-header__megamenu a:active {
    color: #fff; }
  .site-header__megamenu a:link, .site-header__megamenu a:visited {
    color: #fbe8d7; }
  .site-header__megamenu a:hover, .site-header__megamenu a:focus, .site-header__megamenu a:active {
    color: #fff; }

.site-header__menu-wrapper {
  display: none; }
  @media screen and (min-width: 50.3125em) {
    .site-header__menu-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      height: 6.875rem;
      padding-bottom: 1.5rem;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 auto;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column nowrap;
          -ms-flex-flow: column nowrap;
              flex-flow: column nowrap; } }

.site-header__menu-main .menu > li,
.site-header__menu-utility .menu > li,
.site-footer__menu-utility .menu > li {
  display: block; }

.site-header__menu-main .menu a:link, .site-header__menu-main .menu a:visited,
.site-header__menu-utility .menu a:link,
.site-header__menu-utility .menu a:visited,
.site-footer__menu-utility .menu a:link,
.site-footer__menu-utility .menu a:visited {
  color: #fefefe; }

.site-header__menu-main .menu a:hover, .site-header__menu-main .menu a:focus, .site-header__menu-main .menu a:active,
.site-header__menu-utility .menu a:hover,
.site-header__menu-utility .menu a:focus,
.site-header__menu-utility .menu a:active,
.site-footer__menu-utility .menu a:hover,
.site-footer__menu-utility .menu a:focus,
.site-footer__menu-utility .menu a:active {
  color: #fbe8d7; }

.site-header__menu-main .menu > a:last-child,
.site-header__menu-main .menu li:last-child a,
.site-header__menu-utility .menu > a:last-child,
.site-header__menu-utility .menu li:last-child a,
.site-footer__menu-utility .menu > a:last-child,
.site-footer__menu-utility .menu li:last-child a {
  padding-right: 0;
  margin-right: 0; }

@media screen and (min-width: 40em) {
  .site-header__menu-main .menu,
  .site-header__menu-utility .menu,
  .site-footer__menu-utility .menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap; } }

.site-header__menu-utility {
  position: relative; }
  .site-header__menu-utility .site-search-wrapper {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #e1e1e1;
    overflow: hidden;
    top: calc(100% + 0.5rem);
    right: 0;
    bottom: auto;
    padding-right: 0;
    padding-left: 0;
    height: 0;
    width: 23.125rem;
    -webkit-transition: width 0.3s ease-out, height 0.3s ease-out, padding-right 0.3s ease-out, padding-left 0.3s ease-out;
    transition: width 0.3s ease-out, height 0.3s ease-out, padding-right 0.3s ease-out, padding-left 0.3s ease-out; }
    .site-header__menu-utility .site-search-wrapper form {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 auto;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; }
    .site-header__menu-utility .site-search-wrapper input[type="text"],
    .site-header__menu-utility .site-search-wrapper input[type="search"] {
      background-color: #fefefe; }
    .site-header__menu-utility .site-search-wrapper .inner-button {
      top: 0; }
    .site-header__menu-utility .site-search-wrapper.active {
      width: 100%;
      height: 3rem;
      padding-right: 2.875rem;
      padding-left: 2px; }

@media screen and (min-width: 40em) {
  .site-header__menu-utility,
  .site-footer__menu-utility,
  .offcanvas--top__menu-utility,
  .footer__copyright {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 0.875rem;
    font-weight: normal;
    text-transform: uppercase; }
    .site-header__menu-utility .menu,
    .site-footer__menu-utility .menu,
    .offcanvas--top__menu-utility .menu,
    .footer__copyright .menu {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      .site-header__menu-utility .menu li .icon-wrapper,
      .site-header__menu-utility .menu > a .icon-wrapper,
      .site-header__menu-utility .menu .menu-item .icon-wrapper,
      .site-footer__menu-utility .menu li .icon-wrapper,
      .site-footer__menu-utility .menu > a .icon-wrapper,
      .site-footer__menu-utility .menu .menu-item .icon-wrapper,
      .offcanvas--top__menu-utility .menu li .icon-wrapper,
      .offcanvas--top__menu-utility .menu > a .icon-wrapper,
      .offcanvas--top__menu-utility .menu .menu-item .icon-wrapper,
      .footer__copyright .menu li .icon-wrapper,
      .footer__copyright .menu > a .icon-wrapper,
      .footer__copyright .menu .menu-item .icon-wrapper {
        position: relative;
        float: left;
        height: 1em;
        width: 1em;
        margin-right: 0.25em; }
      .site-header__menu-utility .menu li:not(.menu-item--callout),
      .site-footer__menu-utility .menu li:not(.menu-item--callout),
      .offcanvas--top__menu-utility .menu li:not(.menu-item--callout),
      .footer__copyright .menu li:not(.menu-item--callout) {
        position: relative; }
        .site-header__menu-utility .menu li:not(.menu-item--callout)::after,
        .site-footer__menu-utility .menu li:not(.menu-item--callout)::after,
        .offcanvas--top__menu-utility .menu li:not(.menu-item--callout)::after,
        .footer__copyright .menu li:not(.menu-item--callout)::after {
          position: absolute;
          top: 50%;
          right: 0;
          -webkit-transform: translateY(-50%);
                  transform: translateY(-50%);}
        .site-header__menu-utility .menu li:not(.menu-item--callout) a,
        .site-footer__menu-utility .menu li:not(.menu-item--callout) a,
        .offcanvas--top__menu-utility .menu li:not(.menu-item--callout) a,
        .footer__copyright .menu li:not(.menu-item--callout) a {
          padding-right: 0.7rem;
          padding-left: 0.5rem; }
        .site-header__menu-utility .menu li:not(.menu-item--callout):last-child a,
        .site-footer__menu-utility .menu li:not(.menu-item--callout):last-child a,
        .offcanvas--top__menu-utility .menu li:not(.menu-item--callout):last-child a,
        .footer__copyright .menu li:not(.menu-item--callout):last-child a {
          padding-right: 0; }
        .site-header__menu-utility .menu li:not(.menu-item--callout):last-child::after,
        .site-footer__menu-utility .menu li:not(.menu-item--callout):last-child::after,
        .offcanvas--top__menu-utility .menu li:not(.menu-item--callout):last-child::after,
        .footer__copyright .menu li:not(.menu-item--callout):last-child::after {
          content: ''; }
      .site-header__menu-utility .menu a,
      .site-footer__menu-utility .menu a,
      .offcanvas--top__menu-utility .menu a,
      .footer__copyright .menu a {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem; } }

@media screen and (min-width: 50.3125em) {
  .site-header__menu-main {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    font-weight: bold; }
    .site-header__menu-main .menu {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .site-header__menu-main .menu li,
      .site-header__menu-main .menu > a,
      .site-header__menu-main .menu .menu-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto; }
      .site-header__menu-main .menu > a,
      .site-header__menu-main .menu li a {
        margin-right: 0.5rem;
        margin-left: 0.5rem;
        padding-top: 0.5rem;
        padding-right: 0;
        padding-bottom: 0.5rem;
        padding-left: 0; }
      .site-header__menu-main .menu .active {
        border-bottom: solid #8A1538 1px; } }

.menu .menu-item--callout {
  color: #fefefe;
  background-color: #8A1538;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: bold;
  letter-spacing: 0.15em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease; }
  .menu .menu-item--callout .heading--alpha {
    color: #fefefe; }
  .menu .menu-item--callout h1 {
    color: #fefefe; }
  .menu .menu-item--callout .heading--beta {
    color: #fefefe; }
  .menu .menu-item--callout h2 {
    color: #fefefe; }
  .menu .menu-item--callout .heading--gamma {
    color: #fefefe; }
  .menu .menu-item--callout h3 {
    color: #fefefe; }
  .menu .menu-item--callout .heading--delta {
    color: #fefefe; }
  .menu .menu-item--callout h4 {
    color: #fefefe; }
  .menu .menu-item--callout .heading--epsilon {
    color: #fefefe; }
  .menu .menu-item--callout h5 {
    color: #fefefe; }
  .menu .menu-item--callout h6 {
    color: #fefefe; }
  .menu .menu-item--callout a:link, .menu .menu-item--callout a:visited {
    color: #fbe8d7; }
  .menu .menu-item--callout a:hover, .menu .menu-item--callout a:focus, .menu .menu-item--callout a:active {
    color: #fff; }
  .menu .menu-item--callout a:link, .menu .menu-item--callout a:visited {
    color: #fbe8d7; }
  .menu .menu-item--callout a:hover, .menu .menu-item--callout a:focus, .menu .menu-item--callout a:active {
    color: #fff; }
  .menu .menu-item--callout:hover, .menu .menu-item--callout:focus, .menu .menu-item--callout:active {
    background-color: #cf0000; }
  .menu .menu-item--callout:not(:last-child) {
    margin-right: 1rem; }
  .menu .menu-item--callout a {
    padding-right: 1.5em;
    padding-left: 1.5em; }

.site-footer .heading--gamma {
  text-transform: uppercase; }

section.row,
.sidebar.row {
  padding-top: 2em; }
  section.row.top-flush,
  .sidebar.row.top-flush {
    padding-top: 0; }

section {
  margin-bottom: 1rem; }

.section__content figure {
  max-width: 100%; }

.sidebar {
  margin-bottom: 0; }
  .sidebar h2 {
    font-size: 1.25rem; }
    @media screen and (min-width: 75em) {
      .sidebar h2 {
        font-size: 2rem; } }
  .sidebar .heading--gamma {
    color: inherit;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 1.1875rem;
    font-weight: bold;
    text-transform: uppercase; }
    @media screen and (min-width: 40em) {
      .sidebar .heading--gamma {
        font-size: 1.125rem; } }
  .sidebar .hgroup {
    margin-bottom: 1rem; }
    .sidebar .hgroup .news-item__date {
      font-weight: normal;
      color: #0a0a0a; }

@media screen and (min-width: 61.25em) {
  section, .sidebar {
    margin-bottom: 3.75rem; } }

section > header,
.section__header {
  margin-right: auto;
  margin-bottom: 2.75rem;
  margin-left: auto;
  max-width: 75rem;
  text-align: center; }
  .sidebar section > header, .sidebar
  .section__header {
    text-align: inherit; }

.column > header, .columns > header {
  margin-bottom: 1rem; }

.site-header {
  color: #fefefe;
  background-color: #0a0a0a; }
  .site-header .heading--alpha {
    color: #fefefe; }
  .site-header h1 {
    color: #fefefe; }
  .site-header .heading--beta {
    color: #fefefe; }
  .site-header h2 {
    color: #fefefe; }
  .site-header .heading--gamma {
    color: #fefefe; }
  .site-header h3 {
    color: #fefefe; }
  .site-header .heading--delta {
    color: #fefefe; }
  .site-header h4 {
    color: #fefefe; }
  .site-header .heading--epsilon {
    color: #fefefe; }
  .site-header h5 {
    color: #fefefe; }
  .site-header h6 {
    color: #fefefe; }
  .site-header a:link, .site-header a:visited {
    color: #fbe8d7; }
  .site-header a:hover, .site-header a:focus, .site-header a:active {
    color: #fff; }
  .site-header a:link, .site-header a:visited {
    color: #fbe8d7; }
  .site-header a:hover, .site-header a:focus, .site-header a:active {
    color: #fff; }

.site-header__logo-wrapper {
  color: #8A1538;
  background-color: #fefefe;
  position: relative;
  z-index: 5;
  float: left;
  width: 6.25rem;
  height: 7.1875rem;
  padding: 0.4375rem 0.5625rem; }
  @media screen and (min-width: 50.3125em) {
    .site-header__logo-wrapper {
      width: 8.25rem;
      height: 9.5rem;
      margin-right: 1.5rem; } }
  .site-header__logo-wrapper svg {
    width: 100%;
    height: 100%; }

a.site-header__logo-wrapper:link, a.site-header__logo-wrapper:visited {
  color: #8A1538; }

a.site-header__logo-wrapper:hover, a.site-header__logo-wrapper:focus, a.site-header__logo-wrapper:active {
  color: #8A1538; }

main {
  position: relative;
  z-index: 1; }
  main > *:first-child {
    top: -2.875rem;
    margin-bottom: -2.875rem; }
    main > *:first-child + div {
      margin-top: 0; }
    main > *:first-child + section,
    main > *:first-child + div.has-sidebar {
      margin-top: 1rem; }
    @media screen and (min-width: 40em) {
      main > *:first-child + * {
        margin-top: 3rem; } }

.page-background-image {
  color: #fefefe;
  background-color: #8A1538;
  position: relative; }
  .page-background-image::before, .page-background-image::after {
    content: ' ';
    display: table; }
  .page-background-image::after {
    clear: both; }
  .page-background-image .heading--alpha {
    color: #fefefe; }
  .page-background-image h1 {
    color: #fefefe; }
  .page-background-image .heading--beta {
    color: #fefefe; }
  .page-background-image h2 {
    color: #fefefe; }
  .page-background-image .heading--gamma {
    color: #fefefe; }
  .page-background-image h3 {
    color: #fefefe; }
  .page-background-image .heading--delta {
    color: #fefefe; }
  .page-background-image h4 {
    color: #fefefe; }
  .page-background-image .heading--epsilon {
    color: #fefefe; }
  .page-background-image h5 {
    color: #fefefe; }
  .page-background-image h6 {
    color: #fefefe; }
  .page-background-image a:link, .page-background-image a:visited {
    color: #fbe8d7; }
  .page-background-image a:hover, .page-background-image a:focus, .page-background-image a:active {
    color: #fff; }
  .page-background-image a:link, .page-background-image a:visited {
    color: #fbe8d7; }
  .page-background-image a:hover, .page-background-image a:focus, .page-background-image a:active {
    color: #fff; }
  .page-background-image .bg-image {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0;
    z-index: 0;
    overflow: hidden; }
    .page-background-image .bg-image > img {
      position: absolute;
      max-width: none;
      max-height: none;
      width: auto;
      min-width: 100%;
      height: auto;
      min-height: 100%;
      right: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      top: 0;
      bottom: 0; }
    .page-background-image .bg-image::after {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      -webkit-transform: translate3D(0, 0, 0);
              transform: translate3D(0, 0, 0);
      background-color: rgba(151, 35, 55, 0.25);
      content: ''; }
      .page-background-image .bg-image::after > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: 0;
        bottom: 0; }
    .page-background-image .bg-image > img {
      z-index: 0; }
    .mix-blend-mode .page-background-image .bg-image > img {
      opacity: 0.125; }
    .mix-blend-mode .page-background-image .bg-image::after {
      background-color: #8A1538;
      mix-blend-mode: overlay;
      z-index: 1; }
    .page-background-image .bg-image > img {
      display: none; }
      @media screen and (min-width: 40em) {
        .page-background-image .bg-image > img {
          display: block; } }
  .page-background-image > * {
    position: relative; }

.masthead {
  color: #fefefe;
  background-color: #8A1538;
  position: relative;
  z-index: 0;
  padding-top: 4.25rem;
  border-top: solid 2px #fefefe; }
  .masthead .heading--alpha {
    color: #fefefe; }
  .masthead h1 {
    color: #fefefe; }
  .masthead .heading--beta {
    color: #fefefe; }
  .masthead h2 {
    color: #fefefe; }
  .masthead .heading--gamma {
    color: #fefefe; }
  .masthead h3 {
    color: #fefefe; }
  .masthead .heading--delta {
    color: #fefefe; }
  .masthead h4 {
    color: #fefefe; }
  .masthead .heading--epsilon {
    color: #fefefe; }
  .masthead h5 {
    color: #fefefe; }
  .masthead h6 {
    color: #fefefe; }
  .masthead a:link, .masthead a:visited {
    color: #fbe8d7; }
  .masthead a:hover, .masthead a:focus, .masthead a:active {
    color: #fff; }
  .masthead a:link, .masthead a:visited {
    color: #fbe8d7; }
  .masthead a:hover, .masthead a:focus, .masthead a:active {
    color: #fff; }
  .masthead .blurb {
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem; }
  .masthead .masthead__headline {
    font-size: 3rem;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-weight: bolder;
    color: inherit;
    line-height: 1.125; }
    @media screen and (min-width: 40em) {
      .masthead .masthead__headline {
        font-size: 4.5rem; } }
  .masthead.tabs-after {
    padding-bottom: 6.375rem; }
  .masthead + .row .figure--featured {
    margin-top: 1rem; }

.masthead__inner {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap; }
  .masthead__inner::before, .masthead__inner::after {
    content: ' ';
    display: table; }
  .masthead__inner::after {
    clear: both; }

.masthead__superhead {
  color: #281a35; }

.masthead__content {
  position: relative;
  z-index: 2;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1; }
  .masthead__content > *:not(:last-child) {
    margin-bottom: 2.25rem; }

.masthead__image {
  padding-right: 0;
  padding-left: 0;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2; }
  .masthead__image img {
    margin-bottom: 0;
    width: 100%; }

.masthead--basic,
.masthead--standard {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #8A1538; }
  .masthead--basic .masthead__inner,
  .masthead--standard .masthead__inner {
    z-index: 0;
    height: 100%;
    color: #FFF;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .masthead--basic .masthead__inner::after,
    .masthead--standard .masthead__inner::after {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      background-image: -webkit-linear-gradient(left, #8A1538, #8A1538 55%, rgba(151, 35, 55, 0) 100%);
      background-image: linear-gradient(to right, #8A1538, #8A1538 55%, rgba(151, 35, 55, 0) 100%);
      content: ''; }
      .masthead--basic .masthead__inner::after > img,
      .masthead--standard .masthead__inner::after > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: 0;
        bottom: 0; }
  .masthead--basic .masthead__image,
  .masthead--basic .masthead__content,
  .masthead--standard .masthead__image,
  .masthead--standard .masthead__content {
    width: auto; }
  .masthead--basic .masthead__image,
  .masthead--standard .masthead__image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: -1;
    min-width: 3000px;
    overflow: hidden;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    mix-blend-mode: multiply; }
    .masthead--basic .masthead__image img,
    .masthead--standard .masthead__image img {
      width: auto;
      height: 100%; }
  .no-mix-blend-mode .masthead--basic::after, .no-mix-blend-mode
  .masthead--standard::after {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0;
    background-image: -webkit-linear-gradient(left, #8A1538, #8A1538 0%, rgba(151, 35, 55, 0.6) 100%);
    background-image: linear-gradient(to right, #8A1538, #8A1538 0%, rgba(151, 35, 55, 0.6) 100%);
    content: ''; }
    .no-mix-blend-mode .masthead--basic::after > img, .no-mix-blend-mode
    .masthead--standard::after > img {
      position: absolute;
      max-width: none;
      max-height: none;
      width: auto;
      min-width: 100%;
      height: auto;
      min-height: 100%;
      right: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      top: 0;
      bottom: 0; }

.masthead--basic .masthead__image {
  width: 100%;
  max-width: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: 0;
  left: 50%;
  width: 50%; }
  .masthead--basic .masthead__image > img {
    position: absolute;
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
    min-height: none;
    right: 0;
    left: auto;
    -webkit-transform: none;
            transform: none;
    top: 0;
    bottom: 0; }

.masthead--standard {
  padding-top: 0; }
  @media screen and (min-width: 40em) {
    .masthead--standard {
      min-height: 26rem; } }
  .masthead--standard::after {
    z-index: 0; }
  .masthead--standard .masthead__headline {
    font-size: 2rem; }
    @media screen and (min-width: 40em) {
      .masthead--standard .masthead__headline {
        font-size: 3rem; } }
  .masthead--standard .masthead__content {
    margin-left: 0;
    padding-top: 4rem;
    padding-bottom: 2rem;
    max-width: 100%; }
    @media screen and (min-width: 40em) {
      .masthead--standard .masthead__content {
        padding-top: 6rem;
        padding-bottom: 6rem; } }
    @media screen and (min-width: 40em) {
      .masthead--standard .masthead__content {
        max-width: 70%; } }
  .masthead--standard .masthead__links a {
    display: inline-block;
    margin-right: 1.5em;
    margin-bottom: 1em; }
    .masthead--standard .masthead__links a:link, .masthead--standard .masthead__links a:visited {
      border-bottom: solid 2px rgba(93, 82, 77, 0.125);
      border-bottom-color: "currentColor";
      padding-bottom: 0.75em; }
    .masthead--standard .masthead__links a:hover, .masthead--standard .masthead__links a:focus, .masthead--standard .masthead__links a:active {
      border-bottom: solid 2px rgba(93, 82, 77, 0.125);
      border-bottom-color: "currentColor";
      padding-bottom: 0.75em; }
    @media screen and (min-width: 40em) {
      .masthead--standard .masthead__links a {
        white-space: nowrap; } }
    .masthead--standard .masthead__links a:link, .masthead--standard .masthead__links a:visited {
      border-color: maroon; }
    .masthead--standard .masthead__links a:hover, .masthead--standard .masthead__links a:focus, .masthead--standard .masthead__links a:active {
      border-color: #cc0000; }

.masthead--large,
.masthead--mega,
.masthead--double {
  position: relative;
  text-align: center; }
  .masthead--large .masthead__image,
  .masthead--mega .masthead__image,
  .masthead--double .masthead__image {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0;
    overflow: hidden; }
    .masthead--large .masthead__image > img,
    .masthead--mega .masthead__image > img,
    .masthead--double .masthead__image > img {
      position: absolute;
      max-width: none;
      max-height: none;
      width: auto;
      min-width: 100%;
      height: auto;
      min-height: 100%;
      right: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      top: 0;
      bottom: 0; }
  .masthead--large .masthead__heading-group,
  .masthead--large .masthead__inner,
  .masthead--mega .masthead__heading-group,
  .masthead--mega .masthead__inner,
  .masthead--double .masthead__heading-group,
  .masthead--double .masthead__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .masthead--large .masthead__content,
  .masthead--mega .masthead__content,
  .masthead--double .masthead__content {
    padding-top: 4rem; }
  .masthead--large h1,
  .masthead--mega h1,
  .masthead--double h1 {
    font-size: 4.5rem;
    text-transform: uppercase; }

.masthead--large,
.masthead--mega {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; }
  .masthead--large .image-wrapper,
  .masthead--mega .image-wrapper {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
    .masthead--large .image-wrapper > img,
    .masthead--mega .image-wrapper > img {
      position: absolute;
      max-width: none;
      max-height: none;
      width: auto;
      min-width: 100%;
      height: auto;
      min-height: 100%;
      right: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      top: 0;
      bottom: 0; }
    .masthead--large .image-wrapper::after,
    .masthead--mega .image-wrapper::after {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      background-color: rgba(0, 0, 0, 0.5);
      content: ''; }
      .masthead--large .image-wrapper::after > img,
      .masthead--mega .image-wrapper::after > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: 0;
        bottom: 0; }

.masthead--large {
  padding: 8.125rem 0 7.8125rem; }

.masthead--mega {
  min-height: 33.75rem; }
  .masthead--mega::before, .masthead--mega::after {
    content: ' ';
    display: table; }
  .masthead--mega::after {
    clear: both; }
  .masthead--mega .masthead__content {
    padding-top: 0; }
    .masthead--mega .masthead__content .masthead__heading-group {
      margin-bottom: 0; }
  .masthead--mega .masthead__heading-group {
    min-width: 15.3125rem; }
    .masthead--mega .masthead__heading-group::after {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 15.3125rem;
      height: 20.41667rem;
      border: solid 3px rgba(93, 82, 77, 0.125);
      border-color: #ff0000;
      content: ''; }
    .masthead--mega .masthead__heading-group > * {
      z-index: 2; }
  .masthead--mega .image-wrapper {
    height: 33.75rem; }
  .masthead--mega .page-intro {
    color: #5d524d;
    background-color: #fefefe;
    position: relative;
    margin-top: 33.75rem;
    padding: 1rem 2rem; }
    .masthead--mega .page-intro::after {
      position: absolute;
      bottom: -0.25rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      opacity: 0.25;
      z-index: -1;
      border-radius: 50%;
      box-shadow: 0 0 10px 10px #000;
      background-color: #000;
      width: 80%;
      height: 3rem;
      content: ''; }
    @media screen and (min-width: 61.25em) {
      .masthead--mega .page-intro {
        padding: 4rem 8rem; } }
    .masthead--mega .page-intro .link-block {
      margin-top: 1.75rem; }
      .masthead--mega .page-intro .link-block > a {
        margin-bottom: 0; }
        .masthead--mega .page-intro .link-block > a:last-of-type {
          margin-right: 0; }
    .masthead--mega .page-intro > * {
      font-size: 1.5rem; }
  .masthead--mega.has-intro .image-wrapper {
    padding-bottom: 9rem;
    box-sizing: content-box; }

.masthead--double .masthead__image::after {
  width: 100%;
  max-width: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: 0;
  background-image: -webkit-linear-gradient(bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 50%);
  background-image: linear-gradient(to top, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 50%);
  content: ''; }
  .masthead--double .masthead__image::after > img {
    position: absolute;
    max-width: none;
    max-height: none;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 0;
    bottom: 0; }

@media screen and (max-width: 61.1875em) {
  .masthead--double {
    height: 37.5rem; }
    .masthead--double .masthead__inner {
      position: absolute;
      z-index: 15;
      right: 0;
      bottom: 0;
      left: 0;
      height: 11.25rem;
      background-color: #8A1538; }
      .masthead--double .masthead__inner .masthead__content {
        padding-top: 2rem; }
    .masthead--double .masthead--double__sections {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      bottom: 11.25rem;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column nowrap;
          -ms-flex-flow: column nowrap;
              flex-flow: column nowrap;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
    .masthead--double .masthead__section {
      z-index: 15; }
      .masthead--double .masthead__section .masthead__image {
        z-index: 0; }
      .masthead--double .masthead__section .masthead__section__text {
        position: relative;
        z-index: 5;
        font-size: 1.5rem;
        background-color: rgba(10, 10, 10, 0.4);
        width: 100%;
        padding: 0.5rem 1rem; }
        .masthead--double .masthead__section .masthead__section__text .heading {
          display: none; }
        .masthead--double .masthead__section .masthead__section__text .link-group a {
          width: 100%; }
    .masthead--double .masthead__section--left .masthead__section__text {
      border-bottom: solid 1px rgba(93, 82, 77, 0.125);
      border-color: #fefefe; } }

@media screen and (min-width: 61.25em) {
  .masthead--double {
    display: block;
    padding-right: 0;
    padding-left: 0;
    height: 42.5rem; }
    .masthead--double .masthead__heading-group {
      min-width: 15.875rem; }
      .masthead--double .masthead__heading-group::after {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        width: 15.875rem;
        height: 21.16667rem;
        border: solid 3px rgba(93, 82, 77, 0.125);
        border-color: #ff0000;
        content: ''; }
      .masthead--double .masthead__heading-group::before {
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        background-color: rgba(10, 10, 10, 0.625);
        content: '';
        width: 17.375rem;
        height: 22.66667rem; }
      .masthead--double .masthead__heading-group h1 {
        letter-spacing: 0.5rem; }
        .masthead--double .masthead__heading-group h1 > * {
          letter-spacing: 0; }
      .masthead--double .masthead__heading-group > * {
        z-index: 2; }
    .masthead--double .masthead__inner {
      position: relative;
      z-index: 10;
      top: 35%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); } }

.masthead--double__sections {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }
  .masthead--double__sections .masthead__section.masthead__section--right .masthead__image {
    display: none; }
  @media screen and (min-width: 61.25em) {
    .masthead--double__sections {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      width: 100%;
      height: 42.5rem; }
      .masthead--double__sections .masthead__section {
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap;
        width: 50%; }
        .masthead--double__sections .masthead__section .masthead__section__text {
          position: relative;
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-flow: column nowrap;
              -ms-flex-flow: column nowrap;
                  flex-flow: column nowrap;
          -webkit-box-pack: end;
          -webkit-justify-content: flex-end;
              -ms-flex-pack: end;
                  justify-content: flex-end;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          width: 100%;
          max-width: 37.5rem;
          padding: 2rem;
          text-align: center; }
          .masthead--double__sections .masthead__section .masthead__section__text .heading {
            width: auto;
            border-bottom: solid 1px #fefefe;
            padding-right: 2rem;
            padding-bottom: 0.5rem;
            padding-left: 2rem; }
          .masthead--double__sections .masthead__section .masthead__section__text a {
            text-decoration: underline;
            font-weight: bold; }
          .masthead--double__sections .masthead__section .masthead__section__text .link-group {
            display: block; }
        .masthead--double__sections .masthead__section .masthead__image {
          width: 100%;
          max-width: none;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          display: block;
          margin: 0;
          z-index: 0; }
          .masthead--double__sections .masthead__section .masthead__image > img {
            position: absolute;
            max-width: none;
            max-height: none;
            width: auto;
            min-width: 100%;
            height: auto;
            min-height: 100%;
            right: auto;
            left: 50%;
            -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
            top: 0;
            bottom: 0; }
          .masthead--double__sections .masthead__section .masthead__image::after {
            width: 100%;
            max-width: none;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            display: block;
            margin: 0;
            background-image: -webkit-linear-gradient(bottom, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0) 20%);
            background-image: linear-gradient(to top, rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0) 20%);
            content: ''; }
            .masthead--double__sections .masthead__section .masthead__image::after > img {
              position: absolute;
              max-width: none;
              max-height: none;
              width: auto;
              min-width: 100%;
              height: auto;
              min-height: 100%;
              right: auto;
              left: 50%;
              -webkit-transform: translateX(-50%);
                      transform: translateX(-50%);
              top: 0;
              bottom: 0; }
        .masthead--double__sections .masthead__section.masthead__section--right .masthead__image {
          display: block; } }
  .masthead--double__sections .masthead__section--left {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .masthead--double__sections .masthead__section--left .masthead__image {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      z-index: 0; }
      .masthead--double__sections .masthead__section--left .masthead__image > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: 0;
        left: auto;
        -webkit-transform: none;
                transform: none;
        top: 0;
        bottom: 0; }
  .masthead--double__sections .masthead__section--right {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
    .masthead--double__sections .masthead__section--right .masthead__image {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      z-index: 0; }
      .masthead--double__sections .masthead__section--right .masthead__image > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: auto;
        left: 0;
        -webkit-transform: none;
                transform: none;
        top: 0;
        bottom: 0; }

.masthead__pre-header {
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.5rem;
  font-style: italic;
  text-transform: none; }

.section--gray,
.section--dark {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
/*   overflow: hidden;  */
}
  .section--gray .section__header,
  .section--dark .section__header {
    margin-bottom: 2.5rem; }
    .section--gray .section__header,
    .section--gray .section__header h2,
    .section--dark .section__header,
    .section--dark .section__header h2 {
      font-family: "Droid Serif", "Georgia", serif;
      font-weight: bold; }
    .section--gray .section__header .heading--gamma,
    .section--dark .section__header .heading--gamma {
      font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif; }
  .section--gray .section__content,
  .section--dark .section__content {
    position: relative;
    z-index: 1; }
  .section--gray > *:not(.section__bg),
  .section--dark > *:not(.section__bg) {
    position: relative;
    z-index: 2; }
  .section--gray .section__bg,
  .section--dark .section__bg {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0;
    z-index: 0; }
    .section--gray .section__bg > img,
    .section--dark .section__bg > img {
      position: absolute;
      max-width: none;
      max-height: none;
      width: auto;
      min-width: 100%;
      height: auto;
      min-height: 100%;
      right: auto;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      top: 0;
      bottom: 0; }
    .section--gray .section__bg::after,
    .section--dark .section__bg::after {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      -webkit-transform: translate3D(0, 0, 0);
              transform: translate3D(0, 0, 0);
      background-color: rgba(40, 26, 53, 0.8);
      content: ''; }
      .section--gray .section__bg::after > img,
      .section--dark .section__bg::after > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: 0;
        bottom: 0; }
    .section--gray .section__bg > img,
    .section--dark .section__bg > img {
      z-index: 0; }
    .mix-blend-mode .section--gray .section__bg > img, .mix-blend-mode
    .section--dark .section__bg > img {
      opacity: 0.4; }
    .mix-blend-mode .section--gray .section__bg::after, .mix-blend-mode
    .section--dark .section__bg::after {
      background-color: #281a35;
      mix-blend-mode: overlay;
      z-index: 1; }
  .masthead + .section--gray, .masthead +
  .section--dark {
    margin-top: 0; }
  .section--gray:last-child,
  .section--dark:last-child {
    margin-bottom: 0;
    padding-bottom: 3rem; }

.no-mix-blend-mode .section--dark {
  background-color: rgba(40, 26, 53, 0.85); }
  .no-mix-blend-mode .section--dark .section-bg {
    opacity: 0.5;
    z-index: -1;
    mix-blend-mode: normal; }

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
  .section__content.fill-height {
    display: block; } }

.section__content .column:not(first-child), .section__content .columns:not(first-child) {
  margin-top: 1rem; }

.section--gray {
  color: #5d524d;
  background-color: #e1e1e1; }

.faculty__info--primary {
  color: #5d524d;
  background-color: #efefef; }

.section--dark {
  color: #fefefe;
  background-color: #281a35; }
  .section--dark .heading--alpha {
    color: #fefefe; }
  .section--dark h1 {
    color: #fefefe; }
  .section--dark .heading--beta {
    color: #fefefe; }
  .section--dark h2 {
    color: #fefefe; }
  .section--dark .heading--gamma {
    color: #fefefe; }
  .section--dark h3 {
    color: #fefefe; }
  .section--dark .heading--delta {
    color: #fefefe; }
  .section--dark h4 {
    color: #fefefe; }
  .section--dark .heading--epsilon {
    color: #fefefe; }
  .section--dark h5 {
    color: #fefefe; }
  .section--dark h6 {
    color: #fefefe; }
  .section--dark a:link, .section--dark a:visited {
    color: #fbe8d7; }
  .section--dark a:hover, .section--dark a:focus, .section--dark a:active {
    color: #fff; }
  .section--dark a:link, .section--dark a:visited {
    color: #fbe8d7; }
  .section--dark a:hover, .section--dark a:focus, .section--dark a:active {
    color: #fff; }
  .section--dark .heading--color-alt {
    color: #94e6d8; }
  .section--dark .section__content {
    padding-right: 2.5rem; }

.masthead--mega.has-intro {
  margin-bottom: 4rem; }

.page-intro,
.call-to-action {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  max-width: 75rem;
  text-align: center; }
  .page-intro.content--main,
  .call-to-action.content--main {
    text-align: left; }
  .page-intro p,
  .call-to-action p {
    margin-right: auto;
    margin-left: auto;
    max-width: 100ch; }
  .page-intro .heading--delta,
  .call-to-action .heading--delta {
    color: #5d524d; }

.areas-of-study .link-list li {
  margin-left: 0; }

.program--student-profiles {
  background-image: url("/images/stories-text-bg.svg");
  background-repeat: no-repeat;
  background-position: -2em 90%;
  background-size: 60rem; }

.prefooter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  @media screen and (min-width: 61.25em) {
    .prefooter {
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap; } }
  .prefooter h2 {
    color: inherit;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 1.1875rem;
    font-weight: bold;
    text-transform: uppercase; }
    @media screen and (min-width: 40em) {
      .prefooter h2 {
        font-size: 1.125rem; } }
  .prefooter a {
    text-decoration: none; }
  .prefooter__image-float {
    padding-left: 0; }
    .prefooter__image-float img {
      float: left;
      width: 50%;
      margin-right: 1rem; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .prefooter > .column, .prefooter > .columns {
      margin-bottom: 1.5rem;
      padding-right: 0;
      padding-left: 0; } }
  .prefooter > .column:first-child, .prefooter > .columns:first-child {
    padding-left: 0; }
    @media screen and (min-width: 61.25em) {
      .prefooter > .column:first-child, .prefooter > .columns:first-child {
        border-right: solid 3px rgba(93, 82, 77, 0.125); } }
  .prefooter > .column:last-child, .prefooter > .columns:last-child {
    padding-right: 0; }

.footer__main,
.footer__utility {
  margin-bottom: 0;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem; }

.footer__main {
  color: #fefefe;
  background-color: #8A1538; }
  .footer__main .heading--alpha {
    color: #fefefe; }
  .footer__main h1 {
    color: #fefefe; }
  .footer__main .heading--beta {
    color: #fefefe; }
  .footer__main h2 {
    color: #fefefe; }
  .footer__main .heading--gamma {
    color: #fefefe; }
  .footer__main h3 {
    color: #fefefe; }
  .footer__main .heading--delta {
    color: #fefefe; }
  .footer__main h4 {
    color: #fefefe; }
  .footer__main .heading--epsilon {
    color: #fefefe; }
  .footer__main h5 {
    color: #fefefe; }
  .footer__main h6 {
    color: #fefefe; }
  .footer__main a:link, .footer__main a:visited {
    color: #fbe8d7; }
  .footer__main a:hover, .footer__main a:focus, .footer__main a:active {
    color: #fff; }
  .footer__main a:link, .footer__main a:visited {
    color: #fbe8d7; }
  .footer__main a:hover, .footer__main a:focus, .footer__main a:active {
    color: #fff; }
  .footer__main .link-block {
    margin-top: 1.375em;
    margin-bottom: 1.375em;
    width: 100%;
    font-size: 0.875rem;
    font-weight: bold; }
  .footer__main .flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
    .footer__main .flex-row > .heading {
      width: 100%; }
    .footer__main .flex-row.callout {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .footer__main > .callout {
    margin-right: auto;
    margin-left: auto;
    border: solid 3px rgba(93, 82, 77, 0.125);
    border-color: rgba(254, 254, 254, 0.125); }
  .footer__main .contact-column {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 18rem;
        -ms-flex: 1 0 18rem;
            flex: 1 0 18rem; }
    @media screen and (min-width: 40em) {
      .footer__main .contact-column {
        padding-right: 1rem; } }
  .footer__main .campuses-column {
    width: 100%; }
    .footer__main .campuses-column .map {
      margin-bottom: 1.375em;
      max-width: 25rem; }
    @media screen and (min-width: 40em) {
      .footer__main .campuses-column {
        width: 25%;
        min-width: 10.875rem;
        padding-right: 1.5rem;
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto; } }
    @media screen and (min-width: 61.25em) {
      .footer__main .campuses-column {
        min-width: 10.875rem;
        max-width: 20rem;
        padding-right: 1.5rem;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto; } }
  .footer__main .giving-column {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 12rem;
        -ms-flex: 1 1 12rem;
            flex: 1 1 12rem; }
    @media screen and (min-width: 61.25em) {
      .footer__main .giving-column {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 15rem;
            -ms-flex: 1 1 15rem;
                flex: 1 1 15rem; } }
  .footer__main blockquote {
    color: inherit;
    font-family: "Droid Serif", "Georgia", serif;
    padding-right: 0;
    padding-left: 0; }
  .footer__main .social-block {
    margin-bottom: 1.375em; }

.footer__logo-wrapper {
  width: 3.75rem;
  height: 4.5rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 1rem; }
  .footer__logo-wrapper > svg {
    width: 100%;
    height: 100%; }
  @media screen and (min-width: 40em) {
    .footer__logo-wrapper {
      width: 6.25rem;
      height: 7.5625rem; } }

a.footer__logo-wrapper:link, a.footer__logo-wrapper:visited {
  color: #fefefe; }

a.footer__logo-wrapper:hover, a.footer__logo-wrapper:focus, a.footer__logo-wrapper:active {
  color: white; }

.footer__utility {
  color: #fefefe;
  background-color: #281a35; }
  .footer__utility .heading--alpha {
    color: #fefefe; }
  .footer__utility h1 {
    color: #fefefe; }
  .footer__utility .heading--beta {
    color: #fefefe; }
  .footer__utility h2 {
    color: #fefefe; }
  .footer__utility .heading--gamma {
    color: #fefefe; }
  .footer__utility h3 {
    color: #fefefe; }
  .footer__utility .heading--delta {
    color: #fefefe; }
  .footer__utility h4 {
    color: #fefefe; }
  .footer__utility .heading--epsilon {
    color: #fefefe; }
  .footer__utility h5 {
    color: #fefefe; }
  .footer__utility h6 {
    color: #fefefe; }
  .footer__utility a:link, .footer__utility a:visited {
    color: #fbe8d7; }
  .footer__utility a:hover, .footer__utility a:focus, .footer__utility a:active {
    color: #fff; }
  .footer__utility a:link, .footer__utility a:visited {
    color: #fbe8d7; }
  .footer__utility a:hover, .footer__utility a:focus, .footer__utility a:active {
    color: #fff; }
  .footer__utility .flex-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .footer__utility .flex-row::before, .footer__utility .flex-row::after {
      content: none; }
    @media screen and (min-width: 40em) {
      .footer__utility .flex-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-flow: row-reverse wrap;
            -ms-flex-flow: row-reverse wrap;
                flex-flow: row-reverse wrap;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between; } }

.site-footer__menu-utility {
  margin-bottom: 1.375em;
  font-weight: bold; }
  @media screen and (min-width: 61.25em) {
    .site-footer__menu-utility {
      margin-bottom: 0; } }

.footer__copyright {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.footer__contact {
  font-size: 0.875rem;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  width: calc(100% - 100px - 1rem); }
  .footer__contact .heading {
    font-weight: bold; }
  .footer__contact .footer__address {
    float: left;
    padding-right: 1rem;
    margin-bottom: 1rem; }
    .footer__contact .footer__address:nth-of-type(2) {
      padding-right: 0; }
  .footer__contact .link-block {
    margin-top: 0; }
  @media screen and (min-width: 40em) {
    .footer__contact > .heading {
      margin-bottom: 1.375em; }
    .footer__contact .footer__address {
      float: none;
      padding-right: 1.5rem; } }

.tabbed-media {
  padding-right: 0;
  padding-left: 0; }

.two-photos-links figure {
  margin-bottom: 1rem; }

.more-links .block-link {
  margin-bottom: 1rem; }

/* Teaser Components */
.teaser .teaser__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  width: 100%; }
  .teaser .teaser__content > * {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; }
  .teaser .teaser__content .teaser__blurb {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

.teaser--image-first .teaser__content > * {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2; }

.teaser--image-first .teaser__content .teaser__image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1; }

.teaser__headline {
  color: #0a0a0a;
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: none; }
  @media screen and (min-width: 40em) {
    .teaser__headline {
      font-size: 2rem; } }
  *[class*="column-block"] .teaser__headline {
    color: #0a0a0a;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem;
    font-weight: normal;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      *[class*="column-block"] .teaser__headline {
        font-size: 1.5rem; } }
  .teaser--gamma .teaser__headline,
  .callout > .teaser .teaser__headline {
    color: inherit;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 1.1875rem;
    font-weight: bold;
    text-transform: uppercase; }
    @media screen and (min-width: 40em) {
      .teaser--gamma .teaser__headline,
      .callout > .teaser .teaser__headline {
        font-size: 1.125rem; } }
  .teaser--tertiary .teaser__headline {
    color: #fefefe; }

.teaser__headline--small {
  font-size: 1.5rem; }

*[class*="column-block"] .teaser__subhead {
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  text-transform: uppercase; }

.teaser__blurb {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

.teaser p:last-child {
  margin-bottom: 0; }

.column-block-3 .teaser {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.teaser--tertiary {
  color: #fefefe;
  background-color: #281a35; }
  .teaser--tertiary .heading--alpha {
    color: #fefefe; }
  .teaser--tertiary h1 {
    color: #fefefe; }
  .teaser--tertiary .heading--beta {
    color: #fefefe; }
  .teaser--tertiary h2 {
    color: #fefefe; }
  .teaser--tertiary .heading--gamma {
    color: #fefefe; }
  .teaser--tertiary h3 {
    color: #fefefe; }
  .teaser--tertiary .heading--delta {
    color: #fefefe; }
  .teaser--tertiary h4 {
    color: #fefefe; }
  .teaser--tertiary .heading--epsilon {
    color: #fefefe; }
  .teaser--tertiary h5 {
    color: #fefefe; }
  .teaser--tertiary h6 {
    color: #fefefe; }
  .teaser--tertiary a:link, .teaser--tertiary a:visited {
    color: #fbe8d7; }
  .teaser--tertiary a:hover, .teaser--tertiary a:focus, .teaser--tertiary a:active {
    color: #fff; }
  .teaser--tertiary a:link, .teaser--tertiary a:visited {
    color: #fbe8d7; }
  .teaser--tertiary a:hover, .teaser--tertiary a:focus, .teaser--tertiary a:active {
    color: #fff; }
  .teaser--tertiary > .teaser__content {
    padding-top: 2rem;
    padding-bottom: 2rem; }

.teaser__content > *:not(:last-child) {
  margin-bottom: 2rem; }
  *[class*="column-block"] .teaser__content > *:not(:last-child) {
    margin-bottom: 1rem; }

.teaser__content .teaser__image {
  margin-bottom: 2rem; }
  *[class*="column-block"] .teaser__content .teaser__image {
    margin-bottom: 1.5rem; }

.teaser__image {
  display: block;
  padding-right: 0;
  padding-left: 0; }
  .teaser__image img {
    display: block;
    max-width: 100%;
    height: auto; }

.teaser__links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .teaser__links > a,
  .teaser__links > .button {
    display: block;
    margin-right: 0.5rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .teaser__links > a:last-of-type,
    .teaser__links > .button:last-of-type {
      margin-right: 0; }
  .teaser__links > .block-link {
    margin-right: 2em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    text-indent: calc(-1.5em - 0.725rem);
    margin-left: calc(1.5em + 0.725rem); }
  .teaser__links .block-link {
    margin-left: 0; }
  .teaser__links .button ~ .block-link {
    margin: 0 1rem 1rem 0; }
  .teaser__links .button + .block-link {
    margin-left: 1rem; }
  @media screen and (min-width: 0em) and (max-width: 39.9375em) {
    .teaser__links .block-link {
      margin-bottom: 0.75rem; } }

/* Teaser styles */
@media screen and (max-width: 61.1875em) {
  .image-row > .column.column.column:first-child, .image-row > .columns:first-child {
    padding-right: 0;
    padding-left: 0; } }

.teaser--image-row {
  margin-bottom: 1rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  min-height: 27.5rem; }
  @media screen and (min-width: 61.25em) {
    .teaser--image-row {
      margin-bottom: 0; } }
  .teaser--image-row::before, .teaser--image-row::after {
    content: ' ';
    display: table; }
  .teaser--image-row::after {
    clear: both; }
  @media screen and (min-width: 40em) {
    .teaser--image-row.teaser--tertiary {
      -webkit-flex-wrap: nowrap;
          -ms-flex-wrap: nowrap;
              flex-wrap: nowrap; } }
  .teaser--image-row > .teaser__image,
  .teaser--image-row > .teaser__video,
  .teaser--image-row > .teaser__content {
    width: 100%; }
    @media screen and (min-width: 40em) {
      .teaser--image-row > .teaser__image,
      .teaser--image-row > .teaser__video,
      .teaser--image-row > .teaser__content {
        width: 50%;
        float: left;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        min-height: 27.5rem; }
        .teaser--image-row > .teaser__image:last-child:not(:first-child),
        .teaser--image-row > .teaser__video:last-child:not(:first-child),
        .teaser--image-row > .teaser__content:last-child:not(:first-child) {
          float: right; } }
  .teaser--image-row .teaser__image {
    position: relative; }
    @media screen and (min-width: 40em) {
      .teaser-set .teaser--image-row .teaser__image figure {
        position: relative;
        width: 100%;
        max-width: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        margin: 0; }
        .teaser-set .teaser--image-row .teaser__image figure::before {
          display: block;
          position: absolute;
          z-index: -1;
          border: solid 6px rgba(93, 82, 77, 0.125);
          width: 100%;
          -webkit-transform: translate(2em, -2em);
                  transform: translate(2em, -2em);
          height: 100%;
          content: ''; }
        .teaser-set .teaser--image-row .teaser__image figure > img {
          position: absolute;
          max-width: none;
          max-height: none;
          width: auto;
          min-width: 100%;
          height: auto;
          min-height: 100%;
          right: auto;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          top: 0;
          bottom: 0; } }
    @media screen and (min-width: 40em) {
      .teaser--image-row .teaser__image figure {
        width: 100%;
        max-width: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        margin: 0; }
        .teaser--image-row .teaser__image figure > img {
          position: absolute;
          max-width: none;
          max-height: none;
          width: auto;
          min-width: 100%;
          height: auto;
          min-height: 100%;
          right: auto;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          top: 0;
          bottom: 0; }
        .teaser--image-row .teaser__image figure .image-wrapper {
          width: 100%;
          max-width: none;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          display: block;
          margin: 0;
          overflow: hidden; }
          .teaser--image-row .teaser__image figure .image-wrapper > img {
            position: absolute;
            max-width: none;
            max-height: none;
            width: auto;
            min-width: 100%;
            height: auto;
            min-height: 100%;
            right: auto;
            left: 50%;
            -webkit-transform: translateX(-50%);
                    transform: translateX(-50%);
            top: 0;
            bottom: 0; }
          .teaser--image-row .teaser__image figure .image-wrapper > img {
            width: 100%;
            max-width: none;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            display: block;
            margin: 0;
            bottom: 1rem;
            left: 50%;
            width: auto;
            max-width: none; }
            .teaser--image-row .teaser__image figure .image-wrapper > img > img {
              position: absolute;
              max-width: none;
              max-height: none;
              width: auto;
              min-width: 100%;
              height: auto;
              min-height: 100%;
              right: auto;
              left: 50%;
              -webkit-transform: translateX(-50%);
                      transform: translateX(-50%);
              top: 0;
              bottom: 0; } }
    .teaser--image-row .teaser__image figure .statistic-block {
      bottom: 0; }
  .teaser--image-row .teaser__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 2rem;
    padding-left: 2rem; }
    @media screen and (max-width: 61.1875em) {
      .teaser--image-row .teaser__content {
        padding-top: 1.5rem; } }
    .row--gutter-reduced .teaser--image-row .teaser__content {
      padding-right: 1.25rem;
      padding-left: 1.25rem; }
    .teaser--image-row .teaser__content .teaser__blurb {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto; }
  .teaser--image-row .offset-border {
    width: calc(100% - 3rem); }
    .teaser--image-row .offset-border::before {
      -webkit-transform: translate(3rem, -4rem);
              transform: translate(3rem, -4rem); }
  .teaser--image-row.image-row--short {
    min-height: 0; }
    .teaser--image-row.image-row--short > .teaser__image,
    .teaser--image-row.image-row--short > .teaser__video {
      min-height: 0; }
    .teaser--image-row.image-row--short > .teaser__content > *:not(:last-child) {
      margin-bottom: 1rem; }
    .row--gutter-reduced .teaser--image-row.image-row--short > .teaser__content {
      padding-right: 1.25rem;
      padding-left: 1.25rem; }
    .teaser--image-row.image-row--short .teaser__content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column nowrap;
          -ms-flex-flow: column nowrap;
              flex-flow: column nowrap;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
  @media screen and (min-width: 40em) {
    .teaser--image-row.image-row--short > .teaser__image,
    .teaser--image-row.image-row--short > .teaser__video {
      width: 41.66667%;
      float: left;
      padding-left: 2.5rem;
      padding-right: 2.5rem;
      padding-bottom: 0; }
      .teaser--image-row.image-row--short > .teaser__image:last-child:not(:first-child),
      .teaser--image-row.image-row--short > .teaser__video:last-child:not(:first-child) {
        float: right; } }
  .teaser--image-row.image-row--short > .teaser__content {
    width: 100%;
    float: left;
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
    .teaser--image-row.image-row--short > .teaser__content:last-child:not(:first-child) {
      float: right; }
    @media screen and (min-width: 40em) {
      .teaser--image-row.image-row--short > .teaser__content {
        width: 58.33333%;
        float: left;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        min-height: 15.625rem; }
        .teaser--image-row.image-row--short > .teaser__content:last-child:not(:first-child) {
          float: right; } }
  .teaser--image-row:first-of-type {
    padding-top: 0; }
    .teaser--image-row:first-of-type .offset-border::before {
      -webkit-transform: translate(3rem, -2rem);
              transform: translate(3rem, -2rem);
      height: calc(100% - 2rem); }

.teaser--padded {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fefefe;
  padding: 0 1.25rem 1.25rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
  .teaser--padded .teaser__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .teaser--padded .teaser__content .teaser__heading-group {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 auto;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto; }
  .teaser--padded .teaser__blurb {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  .teaser--padded .teaser__image,
  .teaser--padded .teaser__links {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    width: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
  .teaser--padded .teaser__box-link {
    display: block;
    margin-bottom: -1.25rem;
    border-top: solid 2px rgba(93, 82, 77, 0.125);
    padding: 1.25rem;
    width: 100%;
    text-transform: uppercase;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-weight: bold; }
    .teaser--padded .teaser__box-link:hover, .teaser--padded .teaser__box-link:focus, .teaser--padded .teaser__box-link:active {
      background-color: #fbe8d7; }

/* Teaser Sets */
.teaser-set--overlap .teaser:not(:first-of-type) {
  margin-top: 1.5rem; }
  .teaser-set--overlap .teaser:not(:first-of-type) .teaser__content {
    padding-top: 2rem;
    padding-bottom: 4rem; }

.teaser-set--colored-row {
  margin-right: -1rem;
  margin-left: -1rem; }
  .teaser-set--colored-row .teaser__row-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem; }
    .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(1) .teaser__content {
      padding-bottom: 5rem; }
    .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) {
      color: #fefefe;
      background-color: #8A1538;
      z-index: 0; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .heading--alpha {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) h1 {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .heading--beta {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) h2 {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .heading--gamma {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) h3 {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .heading--delta {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) h4 {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .heading--epsilon {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) h5 {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) h6 {
        color: #fefefe; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:link, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:visited {
        color: #fbe8d7; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:hover, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:focus, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:active {
        color: #fff; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:link, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:visited {
        color: #fbe8d7; }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:hover, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:focus, .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) a:active {
        color: #fff; }
      @media screen and (min-width: 61.25em) {
        .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) {
          margin-top: -3rem;
          padding-top: 6rem;
          padding-bottom: 4rem; } }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .teaser__content {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem; }
        @media screen and (min-width: 61.25em) {
          .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .teaser__content {
            padding-bottom: 0; } }
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(2) .block-link .icon-wrapper {
        color: #8A1538; }
    @media screen and (min-width: 61.25em) {
      .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(3) {
        margin-top: -2rem; } }
    .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(3) .offset-border::before {
      -webkit-transform: translate(4rem, 1rem);
              transform: translate(4rem, 1rem);
      height: 80%; }
    .teaser-set--colored-row .teaser__row-wrapper:nth-of-type(3) .teaser__content {
      padding-top: 3rem;
      padding-bottom: 4rem; }

.teaser-set--image-alternating .teaser__row-wrapper .teaser {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (min-width: 61.25em) {
    .teaser-set--image-alternating .teaser__row-wrapper .teaser {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap; } }

@media screen and (min-width: 61.25em) {
  .teaser-set--image-alternating .teaser__row-wrapper:nth-child(odd) .teaser__image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .teaser-set--image-alternating .teaser__row-wrapper:nth-child(odd) .teaser__content {
    padding-left: 5rem !important;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .teaser-set--image-alternating .teaser__row-wrapper:nth-child(even) .teaser__image {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .teaser-set--image-alternating .teaser__row-wrapper:nth-child(even) .teaser__content {
    float: left;
    padding-right: 5rem !important;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; } }

.teaser--carousel-slide,
.slick-slide.teaser--carousel-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: row;
  -webkit-flex: row nowrap;
      -ms-flex: row nowrap;
          flex: row nowrap; }
  .teaser--carousel-slide .teaser__image,
  .teaser--carousel-slide .teaser__video,
  .slick-slide.teaser--carousel-slide .teaser__image,
  .slick-slide.teaser--carousel-slide .teaser__video {
    width: 100%;
    float: left;
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
    .teaser--carousel-slide .teaser__image:last-child:not(:first-child),
    .teaser--carousel-slide .teaser__video:last-child:not(:first-child),
    .slick-slide.teaser--carousel-slide .teaser__image:last-child:not(:first-child),
    .slick-slide.teaser--carousel-slide .teaser__video:last-child:not(:first-child) {
      float: right; }
    @media screen and (min-width: 61.25em) {
      .teaser--carousel-slide .teaser__image,
      .teaser--carousel-slide .teaser__video,
      .slick-slide.teaser--carousel-slide .teaser__image,
      .slick-slide.teaser--carousel-slide .teaser__video {
        width: 41.66667%;
        float: left;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
        min-height: 0;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; }
        .teaser--carousel-slide .teaser__image:last-child:not(:first-child),
        .teaser--carousel-slide .teaser__video:last-child:not(:first-child),
        .slick-slide.teaser--carousel-slide .teaser__image:last-child:not(:first-child),
        .slick-slide.teaser--carousel-slide .teaser__video:last-child:not(:first-child) {
          float: right; } }
  .teaser--carousel-slide .teaser__content,
  .slick-slide.teaser--carousel-slide .teaser__content {
    width: 100%;
    float: left;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-right: 5rem;
    padding-bottom: 6rem;
    min-height: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
    .teaser--carousel-slide .teaser__content:last-child:not(:first-child),
    .slick-slide.teaser--carousel-slide .teaser__content:last-child:not(:first-child) {
      float: right; }
    @media screen and (min-width: 61.25em) {
      .teaser--carousel-slide .teaser__content,
      .slick-slide.teaser--carousel-slide .teaser__content {
        width: 58.33333%;
        float: left;
        padding-left: 2.5rem;
        padding-right: 2.5rem; }
        .teaser--carousel-slide .teaser__content:last-child:not(:first-child),
        .slick-slide.teaser--carousel-slide .teaser__content:last-child:not(:first-child) {
          float: right; } }
  .teaser--carousel-slide .teaser__superhead,
  .slick-slide.teaser--carousel-slide .teaser__superhead {
    margin-bottom: 2rem;
    border-bottom: solid 2px rgba(93, 82, 77, 0.125);
    border-color: #8A1538;
    padding-bottom: 0.5rem;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-weight: bold; }

.teaser--news-story {
  position: relative;
  margin-bottom: 1.375em;
  padding: 2rem; }
  @media screen and (max-width: 61.1875em) {
    .content--main > .teaser--news-story {
      margin-right: -2rem;
      margin-left: -2rem; } }
  .teaser--news-story .news-item {
    position: relative;
    color: #fefefe; }
    @media screen and (min-width: 40em) {
      .teaser--news-story .news-item {
        width: 50%; } }
  .teaser--news-story .hgroup.news-item__heading-group {
    margin-bottom: 1.375em; }
  .teaser--news-story .news-item__heading-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap; }
    .teaser--news-story .news-item__heading-group > * {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; }
    .teaser--news-story .news-item__heading-group .news-item__subhead {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1;
      font-size: 1rem; }
  .teaser--news-story .news-item__headline {
    color: #fefefe;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: none; }
    @media screen and (min-width: 40em) {
      .teaser--news-story .news-item__headline {
        font-size: 2rem; } }
    .teaser--news-story .news-item__headline a {
      background-repeat: repeat-x;
      background-size: 2em 3px;
      background-position: 0 1.09em;
      text-decoration: none;
      background-image: -webkit-linear-gradient(bottom, transparent 50%, #fefefe 50%);
      background-image: linear-gradient(to top, transparent 50%, #fefefe 50%); }
      .teaser--news-story .news-item__headline a:link, .teaser--news-story .news-item__headline a:visited {
        color: #fefefe; }
      .teaser--news-story .news-item__headline a:hover, .teaser--news-story .news-item__headline a:focus, .teaser--news-story .news-item__headline a:active {
        color: #fbe8d7; }
  .teaser--news-story > figure {
    width: 100%;
    max-width: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: 0;
    z-index: 0;
    overflow: hidden;
    background-color: #281a35; }
    .teaser--news-story > figure > img {
      position: absolute;
      max-width: none;
      max-height: none;
      width: auto;
      min-width: 100%;
      height: auto;
      min-height: 100%;
      right: 0;
      left: auto;
      -webkit-transform: none;
              transform: none;
      top: 0;
      bottom: 0; }
    .teaser--news-story > figure::after {
      width: 100%;
      max-width: none;
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      display: block;
      margin: 0;
      background-color: rgba(0, 0, 0, 0.25);
      content: ''; }
      .teaser--news-story > figure::after > img {
        position: absolute;
        max-width: none;
        max-height: none;
        width: auto;
        min-width: 100%;
        height: auto;
        min-height: 100%;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        top: 0;
        bottom: 0; }
    @media screen and (max-width: 61.1875em) {
      .teaser--news-story > figure::after {
        width: 100%;
        max-width: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        margin: 0;
        background-color: rgba(0, 0, 0, 0.4);
        content: ''; }
        .teaser--news-story > figure::after > img {
          position: absolute;
          max-width: none;
          max-height: none;
          width: auto;
          min-width: 100%;
          height: auto;
          min-height: 100%;
          right: auto;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          top: 0;
          bottom: 0; } }
    @media screen and (min-width: 61.25em) {
      .teaser--news-story > figure::after {
        width: 100%;
        max-width: none;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        margin: 0;
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9) 0%, transparent 50%);
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9) 0%, transparent 50%);
        content: ''; }
        .teaser--news-story > figure::after > img {
          position: absolute;
          max-width: none;
          max-height: none;
          width: auto;
          min-width: 100%;
          height: auto;
          min-height: 100%;
          right: auto;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          top: 0;
          bottom: 0; } }

.teaser--event {
  color: #fefefe;
  background-color: #8A1538;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 21.5625rem;
  margin-bottom: 1.375em;
  overflow: hidden; }
  .teaser--event .heading--alpha {
    color: #fefefe; }
  .teaser--event h1 {
    color: #fefefe; }
  .teaser--event .heading--beta {
    color: #fefefe; }
  .teaser--event h2 {
    color: #fefefe; }
  .teaser--event .heading--gamma {
    color: #fefefe; }
  .teaser--event h3 {
    color: #fefefe; }
  .teaser--event .heading--delta {
    color: #fefefe; }
  .teaser--event h4 {
    color: #fefefe; }
  .teaser--event .heading--epsilon {
    color: #fefefe; }
  .teaser--event h5 {
    color: #fefefe; }
  .teaser--event h6 {
    color: #fefefe; }
  .teaser--event a:link, .teaser--event a:visited {
    color: #fbe8d7; }
  .teaser--event a:hover, .teaser--event a:focus, .teaser--event a:active {
    color: #fff; }
  .teaser--event a:link, .teaser--event a:visited {
    color: #fbe8d7; }
  .teaser--event a:hover, .teaser--event a:focus, .teaser--event a:active {
    color: #fff; }
  .teaser--event figure {
    position: relative;
    overflow: hidden;
    width: 25rem;
    min-height: 21.5625rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; }
    .teaser--event figure img {
      position: absolute;
      top: 0;
      right: auto;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      width: auto;
      max-width: none;
      max-height: 100%; }
  .teaser--event .event-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto; }
  .teaser--event .event__header {
    position: relative;
    left: -2rem;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }
    .teaser--event .event__header .event__title {
      font-size: 2rem;
      font-weight: bold; }
      .teaser--event .event__header .event__title a:link, .teaser--event .event__header .event__title a:visited {
        color: #fefefe; }
      .teaser--event .event__header .event__title a:hover, .teaser--event .event__header .event__title a:focus, .teaser--event .event__header .event__title a:active {
        color: #fbe8d7; }
    .teaser--event .event__header .event__date-block {
      color: #5d524d;
      background-color: #fefefe;
      padding: 1rem;
      width: auto;
      height: auto; }
      .teaser--event .event__header .event__date-block .event__date,
      .teaser--event .event__header .event__date-block .event__time {
        color: #8A1538; }
      .teaser--event .event__header .event__date-block .event__date .date--relative {
        color: #5d524d;
        text-transform: none; }

section.event-teaser {
  margin-bottom: 0; }
  section.event-teaser h2 {
    font-size: 1.5rem;
    font-weight: normal; }
  @media screen and (min-width: 61.25em) {
    section.event-teaser .content--main {
      padding-right: 0; } }
  section.event-teaser .teaser--event {
    margin-bottom: 0; }

/* Accordion to Tabs
	Based on "Bourbon Empties" code (https://empties.bourbon.io)
*/
.vertical-tabs-container::before, .vertical-tabs-container::after {
  content: ' ';
  display: table; }

.vertical-tabs-container::after {
  clear: both; }

.vertical-tabs-container .vertical-tabs {
  display: none; }
  @media screen and (min-width: 40em) {
    .vertical-tabs-container .vertical-tabs {
      display: inline;
      float: left;
      width: 25%; } }

@media screen and (min-width: 40em) {
  .vertical-tabs-container .vertical-tab {
    display: block;
    position: relative;
    padding: 1em;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 1.125rem; }
    .vertical-tabs-container .vertical-tab:link, .vertical-tabs-container .vertical-tab:visited {
      color: #5d524d; }
    .vertical-tabs-container .vertical-tab::after {
      -webkit-transition: border-color 0.3s;
      transition: border-color 0.3s;
      border-color: transparent;
      content: ''; }
    .vertical-tabs-container .vertical-tab.is-active {
      color: #fefefe;
      background-color: #281a35;
      -webkit-transition: background-color 0.3s;
      transition: background-color 0.3s; }
      .vertical-tabs-container .vertical-tab.is-active .heading--alpha {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active h1 {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active .heading--beta {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active h2 {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active .heading--gamma {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active h3 {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active .heading--delta {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active h4 {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active .heading--epsilon {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active h5 {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active h6 {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active a:link, .vertical-tabs-container .vertical-tab.is-active a:visited {
        color: #fbe8d7; }
      .vertical-tabs-container .vertical-tab.is-active a:hover, .vertical-tabs-container .vertical-tab.is-active a:focus, .vertical-tabs-container .vertical-tab.is-active a:active {
        color: #fff; }
      .vertical-tabs-container .vertical-tab.is-active a:link, .vertical-tabs-container .vertical-tab.is-active a:visited {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active a:hover, .vertical-tabs-container .vertical-tab.is-active a:focus, .vertical-tabs-container .vertical-tab.is-active a:active {
        color: #ff0000; }
      .vertical-tabs-container .vertical-tab.is-active:link, .vertical-tabs-container .vertical-tab.is-active:visited {
        color: #fefefe; }
      .vertical-tabs-container .vertical-tab.is-active::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border: inset 0.75em;
        border-color: transparent transparent transparent #281a35;
        border-left-style: solid;
        border-right-width: 0;
        position: absolute;
        top: 50%;
        right: -0.73em;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        opacity: 1; } }

.vertical-tabs-container .vertical-tab-content-container {
  display: block; }
  @media screen and (min-width: 40em) {
    .vertical-tabs-container .vertical-tab-content-container {
      display: inline-block;
      padding-left: 5rem;
      width: 75%; } }

@media screen and (min-width: 40em) {
  .vertical-tabs-container .vertical-tab-content {
    display: none; } }

.vertical-tabs-container .vertical-tab-accordion-heading {
  display: block;
  cursor: pointer; }
  @media screen and (min-width: 40em) {
    .vertical-tabs-container .vertical-tab-accordion-heading {
      display: none; } }

.media-tabset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-flow: column-reverse nowrap;
      -ms-flex-flow: column-reverse nowrap;
          flex-flow: column-reverse nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-bottom: solid 3px rgba(93, 82, 77, 0.125); }

.media-tabset__tablist {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding-right: 2rem;
  padding-left: 2rem;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap; }
  .media-tabset__tablist::before, .media-tabset__tablist::after {
    content: ' ';
    display: table; }
  .media-tabset__tablist::after {
    clear: both; }
  .media-tabset__tablist li {
    width: 33.33333%;
    float: left;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    color: #5d524d;
    font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
    font-size: 0.89062rem;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    padding: 0;
    text-align: center; }
    .media-tabset__tablist li:last-child:not(:first-child) {
      float: right; }
    @media screen and (min-width: 40em) {
      .media-tabset__tablist li {
        font-size: 0.84375rem; } }
    .media-tabset__tablist li a {
      display: block;
      border-left: solid 3px rgba(93, 82, 77, 0.125);
      border-right: solid 3px rgba(93, 82, 77, 0.125);
      border-right-color: transparent;
      padding: 2.875rem 1.25rem;
      width: 100%; }
      .media-tabset__tablist li a:link, .media-tabset__tablist li a:visited {
        color: #5d524d; }
      .media-tabset__tablist li a:hover, .media-tabset__tablist li a:focus, .media-tabset__tablist li a:active {
        color: #fefefe; }
      .media-tabset__tablist li a:hover, .media-tabset__tablist li a:focus, .media-tabset__tablist li a:active {
        background-color: #cf0000;
        border-left-color: transparent; }
      .media-tabset__tablist li a.active {
        color: #fefefe;
        background-color: #ff0000;
        border: none; }
        .media-tabset__tablist li a.active .heading--alpha {
          color: #fefefe; }
        .media-tabset__tablist li a.active h1 {
          color: #fefefe; }
        .media-tabset__tablist li a.active .heading--beta {
          color: #fefefe; }
        .media-tabset__tablist li a.active h2 {
          color: #fefefe; }
        .media-tabset__tablist li a.active .heading--gamma {
          color: #fefefe; }
        .media-tabset__tablist li a.active h3 {
          color: #fefefe; }
        .media-tabset__tablist li a.active .heading--delta {
          color: #fefefe; }
        .media-tabset__tablist li a.active h4 {
          color: #fefefe; }
        .media-tabset__tablist li a.active .heading--epsilon {
          color: #fefefe; }
        .media-tabset__tablist li a.active h5 {
          color: #fefefe; }
        .media-tabset__tablist li a.active h6 {
          color: #fefefe; }
        .media-tabset__tablist li a.active a:link, .media-tabset__tablist li a.active a:visited {
          color: #fbe8d7; }
        .media-tabset__tablist li a.active a:hover, .media-tabset__tablist li a.active a:focus, .media-tabset__tablist li a.active a:active {
          color: #fff; }
        .media-tabset__tablist li a.active a:link, .media-tabset__tablist li a.active a:visited {
          color: #fbe8d7; }
        .media-tabset__tablist li a.active a:hover, .media-tabset__tablist li a.active a:focus, .media-tabset__tablist li a.active a:active {
          color: #fff; }
        .media-tabset__tablist li a.active:hover, .media-tabset__tablist li a.active:focus, .media-tabset__tablist li a.active:active {
          background-color: #cf0000; }
    .media-tabset__tablist li:last-of-type a {
      border-right: solid 3px rgba(93, 82, 77, 0.125); }

.media-tabset__content {
  margin-right: auto;
  margin-left: auto;
  max-width: 81.25rem; }
  .media-tabset__content .media-tabset__panel {
    max-height: 31.875rem;
    overflow: hidden; }

.media-tabset__panel,
.section--video figure {
  display: none;
  display: none; }
  .media-tabset__panel.panel-video,
  .media-tabset__panel .play-button,
  .section--video figure.panel-video,
  .section--video figure .play-button {
    cursor: pointer; }
  .media-tabset__panel.active,
  .section--video figure.active {
    display: block; }
  .media-tabset__panel figcaption,
  .section--video figure figcaption {
    display: none; }
  .media-tabset__panel:hover .play-button, .media-tabset__panel:focus .play-button, .media-tabset__panel:active .play-button,
  .section--video figure:hover .play-button,
  .section--video figure:focus .play-button,
  .section--video figure:active .play-button {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4); }
  .media-tabset__panel .play-button,
  .section--video figure .play-button {
    width: 7.5rem;
    height: 10rem;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    border: solid 6px rgba(93, 82, 77, 0.125);
    border-color: #fefefe;
    border-radius: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .media-tabset__panel .play-button:before,
  .section--video figure .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff; }
  .media-tabset__panel .play-button,
  .media-tabset__panel .play-button:before,
  .section--video figure .play-button,
  .section--video figure .play-button:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0); }

.player-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 100%;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: rgba(151, 35, 55, 0.8);
  padding: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1; }
  .player-overlay .close-button {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: solid #fefefe 2px;
    border-radius: 50%;
    background-color: rgba(10, 10, 10, 0.8);
    width: 0;
    height: 0;
    text-align: center;
    line-height: 0;
    color: #fefefe;
    font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    font-size: 0;
    z-index: 4; }
  .player-overlay.active {
    right: 0;
    bottom: 0;
    padding: 2rem; }
    .player-overlay.active .close-button {
      width: 1.25em;
      height: 1.25em;
      line-height: 0.9;
      font-size: 3em; }
  .player-overlay .fit-media {
    width: 100%;
    z-index: 3; }

.section--video figure .player-overlay {
  padding: 0; }
  .section--video figure .player-overlay.active {
    right: 0;
    bottom: 0; }
    .section--video figure .player-overlay.active .close-button {
      width: 1.25em;
      height: 1.25em;
      line-height: 0.9;
      font-size: 2em; }

.slideshow {
  padding: 0 1rem; }

.slick-slide {
  z-index: 0; }
  .slick-slide .superhead .icon-wrapper {
    margin-right: 0.25em;
    width: 1.25em;
    height: 1.25em;
    vertical-align: -0.125em; }

.slick-next,
.slick-prev {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 3rem;
  padding: 1em 1.5em;
  margin: 0 1rem 1rem 0;
  font-size: inherit;
  background-color: #ff0000;
  color: #fff;
  z-index: 5;
  border-radius: 0;
  padding: 0;
  width: 1rem;
  height: 100%;
  font-size: 0; }
  [data-whatinput='mouse'] .slick-next, [data-whatinput='mouse']
  .slick-prev {
    outline: 0; }
  .slick-next:hover, .slick-next:focus,
  .slick-prev:hover,
  .slick-prev:focus {
    background-color: #cf0000;
    color: #fff; }
  .slick-next::before,
  .slick-prev::before {
    color: #fefefe;
    font-family: "FontAwesome";
    font-size: 1.5rem; }

.slick-prev {
  left: 0; }
  .slick-prev::before {
    content: '\f053'; }

.slick-next {
  right: 0; }
  .slick-next::before {
    content: '\f054'; }

.slideshow--match-height .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }

.slideshow--match-height .slick-slide {
  height: auto; }

.slick-dots {
  position: relative;
  top: -5rem;
  margin-left: 2.5rem;
  list-style: none;
  text-align: left; }
  .slick-dots li {
    position: relative;
    margin-right: 0.5rem;
    margin-left: 0;
    width: 1.25rem;
    height: 1.25rem; }
    .slick-dots li::before {
      margin-right: 0;
      width: 0;
      height: 0;
      font-size: 0;
      content: ''; }
    .slick-dots li button {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      padding: 0; }
      .slick-dots li button::before {
        background-image: url("data:image/svg+xml,%3Csvg%20stroke%3D%27%23ff0000%27%20stroke-width%3D%278px%27%20fill%3D%27transparent%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2775%27%20height%3D%2775%27%20viewBox%3D%270%200%2075%2075%27%20preserveAspectRatio%3D%27xMinYMin%27%3E%3Cellipse%20cx%3D%2737.5%27%20cy%3D%2737.5%27%20rx%3D%2730%27%20ry%3D%2730%27%20%2F%3E%3C%2Fsvg%3E");
        background-size: 100%;
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1;
        width: 100%;
        height: 100%;
        color: #ff0000; }
    .slick-dots li.slick-active button::before {
      background-image: url("data:image/svg+xml,%3Csvg%20stroke%3D%27%23ff0000%27%20stroke-width%3D%278px%27%20fill%3D%27%23ff0000%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2775%27%20height%3D%2775%27%20viewBox%3D%270%200%2075%2075%27%20preserveAspectRatio%3D%27xMinYMin%27%3E%3Cellipse%20cx%3D%2737.5%27%20cy%3D%2737.5%27%20rx%3D%2730%27%20ry%3D%2730%27%20%2F%3E%3C%2Fsvg%3E");
      background-size: 100%;
      content: '';
      opacity: 1;
      color: #ff0000; }

.slick-slider {
  margin-bottom: 0; }

.feature-slideshow {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 83.125rem; }
  .feature-slideshow::before, .feature-slideshow::after {
    content: ' ';
    display: table; }
  .feature-slideshow::after {
    clear: both; }

.feature-slideshow__header {
  position: relative;
  margin-top: 2.5rem;
  max-width: 100%;
  text-transform: uppercase;
  line-height: 1em;
  font-family: "Roboto Condensed", "AvenirNextCondensed-Bold", "Futura-CondensedExtraBold", HelveticaNeue-CondensedBold, "Ubuntu Condensed", "Liberation Sans Narrow", "Franklin Gothic Demi Cond", "Arial Narrow", sans-serif-condensed, Arial, "Trebuchet MS", "Lucida Grande", Tahoma, Verdana, sans-serif;
  font-size: 3.75rem;
  font-weight: bold; }
  .feature-slideshow__header .feature-slideshow__header__text {
    margin-top: 1.875rem;
    text-align: center; }
  @media screen and (min-width: 61.25em) {
    .feature-slideshow__header {
      position: absolute;
      margin-top: 0;
      top: 6.875rem;
      right: 0;
      left: 0;
      z-index: 2; }
      .feature-slideshow__header .feature-slideshow__header__contents {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
        max-width: 75rem;
        vertical-align: 13px; }
      .feature-slideshow__header .feature-slideshow__header__text {
        margin-top: 0;
        text-align: left;
        display: inline-block;
        vertical-align: 30px; } }

.feature-slideshow__nav {
  color: #5d524d;
  background-color: #fefefe;
  display: inline-block;
  position: relative;
  max-width: 100%;
  padding: 0 1rem;
  vertical-align: baseline;
  text-align: center;
  font-size: 4.5rem;
  color: #8A1538; }
  @media screen and (min-width: 61.25em) {
    .feature-slideshow__nav {
      width: 18.75rem; } }
  .feature-slideshow__nav .slick-slide {
    max-width: 100vw;
    padding-top: 1rem;
    padding-bottom: 1rem; }
    .feature-slideshow__nav .slick-slide a:link, .feature-slideshow__nav .slick-slide a:visited {
      color: #ff0000; }
    .feature-slideshow__nav .slick-slide a:hover, .feature-slideshow__nav .slick-slide a:focus, .feature-slideshow__nav .slick-slide a:active {
      color: #ff0000; }
  .feature-slideshow__nav::before, .feature-slideshow__nav::after {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 5;
    height: 0.75rem;
    content: ''; }
  .feature-slideshow__nav::before {
    top: 0;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15) 25%, transparent 80%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15) 25%, transparent 80%); }
  .feature-slideshow__nav::after {
    bottom: 0;
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15) 25%, transparent 80%);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15) 25%, transparent 80%); }
  .feature-slideshow__nav.slick-slider {
    margin-bottom: 0; }
  .page-background-image .feature-slideshow__nav .slick-arrow {
    color: #fefefe; }
  .feature-slideshow__nav .slick-next,
  .feature-slideshow__nav .slick-prev {
    margin: 0;
    background: transparent;
    width: 100%;
    height: 2.5rem;
    color: inherit;
    font-size: 1.5rem; }
  .feature-slideshow__nav .slick-next {
    top: -1.5rem;
    bottom: auto; }
    .feature-slideshow__nav .slick-next .icon-wrapper {
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg); }
    .feature-slideshow__nav .slick-next::before {
      content: ''; }
  .feature-slideshow__nav .slick-prev {
    top: auto;
    bottom: -3.5rem; }
    .feature-slideshow__nav .slick-prev .icon-wrapper {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
    .feature-slideshow__nav .slick-prev::before {
      content: ''; }

.feature-slide {
  position: relative;
  opacity: 1 !important;
  z-index: 1; }
  .feature-slide::before, .feature-slide::after {
    content: ' ';
    display: table; }
  .feature-slide::after {
    clear: both; }
  .feature-slide .anim-order-1 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-1 {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-2 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-2 {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-3 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-3 {
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-4 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-4 {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-5 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-5 {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-6 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-6 {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-7 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.7s;
            transition-delay: 0.7s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-7 {
    -webkit-transition-delay: 1.1s;
            transition-delay: 1.1s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-8 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-8 {
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-9 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-9 {
    -webkit-transition-delay: 1.3s;
            transition-delay: 1.3s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  .feature-slide .anim-order-10 {
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    -webkit-transition-timing-function: ease-in;
            transition-timing-function: ease-in; }
  .feature-slide.slick-active .anim-order-10 {
    -webkit-transition-delay: 1.4s;
            transition-delay: 1.4s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
  @media screen and (min-width: 61.25em) {
    .feature-slide {
      padding-top: 6.875rem; } }

.feature-slide__text-wrapper {
  z-index: 1;
  padding: 2rem;
  padding-bottom: 0.5rem; }
  .feature-slide__text-wrapper a,
  .feature-slide__text-wrapper ul {
    position: relative;
    z-index: 1000; }
  .feature-slide__text-wrapper .button {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1em; }
  .feature-slide__text-wrapper * {
    line-height: 1.5; }
  @media screen and (min-width: 40em) {
    .feature-slide__text-wrapper {
      padding-bottom: 2rem; } }
  @media screen and (min-width: 61.25em) {
    .feature-slide__text-wrapper {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      float: left;
      padding-top: 10rem;
      padding-left: 4.0625rem;
      width: calc(50% - 4.0625rem);
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; } }

.feature-slide__text {
  position: relative;
  min-width: 0; }
  .animated-slideshow .feature-slide__text .feature-slide__blurb {
    -webkit-transition: opacity 1s 0s ease-in-out;
    transition: opacity 1s 0s ease-in-out;
    opacity: 0; }
  .animated-slideshow .slick-active .feature-slide__text .feature-slide__blurb {
    opacity: 1; }
  @media screen and (min-width: 61.25em) {
    .feature-slide__text {
      min-width: 31.25rem;
      padding-right: 1em;
      width: 20.125rem;
      min-width: 0; }
      .feature-slide__text::after {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        width: 31.25rem;
        height: 41.66667rem;
        border: solid 20px currentColor;
        border-color: rgba(255, 255, 255, 0.25);
        content: ''; }
      .feature-slide__text::after {
        top: -16.875rem;
        -webkit-transform: translateX(-50%) translateY(0);
                transform: translateX(-50%) translateY(0);
        z-index: 0; }
        .animated-slideshow .feature-slide__text::after {
          -webkit-transform: translateX(0%) scale(0);
                  transform: translateX(0%) scale(0);
          -webkit-transition: opacity 0.3s 0s ease-in-out, -webkit-transform 1s 0s ease-in-out;
          transition: opacity 0.3s 0s ease-in-out, -webkit-transform 1s 0s ease-in-out;
          transition: opacity 0.3s 0s ease-in-out, transform 1s 0s ease-in-out;
          transition: opacity 0.3s 0s ease-in-out, transform 1s 0s ease-in-out, -webkit-transform 1s 0s ease-in-out;
          opacity: 0; }
        .slick-active .feature-slide__text::after {
          -webkit-transform: translateX(-50%) scale(1);
                  transform: translateX(-50%) scale(1);
          -webkit-transition: opacity 0.5s 0s ease-in, -webkit-transform 0.5s 0s ease-in;
          transition: opacity 0.5s 0s ease-in, -webkit-transform 0.5s 0s ease-in;
          transition: transform 0.5s 0s ease-in, opacity 0.5s 0s ease-in;
          transition: transform 0.5s 0s ease-in, opacity 0.5s 0s ease-in, -webkit-transform 0.5s 0s ease-in;
          opacity: 1; } }

.feature-slide__link-list li {
  margin-left: 0;
  text-indent: 0;
  text-transform: uppercase;
  line-height: 2;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-weight: bold; }
  .feature-slide__link-list li::before {
    display: block;
    width: 0;
    content: ''; }

.feature-slide__images {
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  overflow: hidden;
  max-height: 0;
  padding-top: 44%;
  margin-bottom: 1rem; }
  .feature-slide__images img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    min-height: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
    .animated-slideshow .feature-slide__images img {
      -webkit-transform: translateX(125%) scale(0.85);
              transform: translateX(125%) scale(0.85);
      opacity: 0; }
    .slick-active .feature-slide__images img {
      -webkit-transform: translateX(0%) scale(1);
              transform: translateX(0%) scale(1);
      opacity: 1;
      -webkit-transition-timing-function: ease-in;
              transition-timing-function: ease-in; }
    .feature-slide__images img:last-child {
      left: 50%; }
  @media screen and (min-width: 40em) {
    .feature-slide__images {
      position: absolute;
      display: block;
      margin-bottom: 0;
      padding-top: 22%;
      bottom: 2rem;
      right: 2rem;
      max-height: 16rem;
      width: 50%; } }
  @media screen and (min-width: 61.25em) {
    .feature-slide__images {
      width: 30%;
      padding-top: 0;
      z-index: 2;
      position: relative;
      top: -3.125rem;
      right: 0;
      float: right;
      width: 50%;
      max-width: 590px;
      max-height: none;
      text-align: right; }
      .feature-slide__images img {
        width: 100%;
        height: 100%; }
      .feature-slide__images img:first-child {
        position: relative;
        left: -4.0625rem; }
      .feature-slide__images img:last-child {
        position: relative;
        top: -5.9375rem;
        left: 0;
        float: right;
        margin-bottom: -5.9375rem;
        width: 57%; } }

.slideshow-wrapper {
  position: relative;
  margin-bottom: 0; }

.live-search-box-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.live-filter-box-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start; }

.live-search-box-wrapper,
.live-filter-box-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .is_stuck .live-search-box-wrapper, .is_stuck
  .live-filter-box-wrapper {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: padding 0.3s ease;
    transition: padding 0.3s ease;
    padding-top: 1em; }
    .is_stuck .live-search-box-wrapper::before, .is_stuck .live-search-box-wrapper::after, .is_stuck
    .live-filter-box-wrapper::before, .is_stuck
    .live-filter-box-wrapper::after {
      content: ' ';
      display: table; }
    .is_stuck .live-search-box-wrapper::after, .is_stuck
    .live-filter-box-wrapper::after {
      clear: both; }
  .live-search-box-wrapper .label--full-width,
  .live-filter-box-wrapper .label--full-width {
    width: 100%;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }
  .live-search-box-wrapper .search-form,
  .live-search-box-wrapper .category-links,
  .live-filter-box-wrapper .search-form,
  .live-filter-box-wrapper .category-links {
    margin-bottom: 1rem; }
  .live-search-box-wrapper .search-form,
  .live-filter-box-wrapper .search-form {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto; }

.category-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1em;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto; }

.category-links__label {
  margin-right: 0.5rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

.category-links__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 1.125rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto; }
  .category-links__list a {
    display: block;
    margin-top: 1px;
    margin-right: 0.5rem;
    line-height: 1.5;
    width: 2ch;
    text-align: center; }

.split-list-section,
.search-results-wrapper {
  padding-top: 4rem;
  margin-top: 1em;
  margin-bottom: 3em; }
  .split-list-section > *[class*='__title'],
  .search-results-wrapper > *[class*='__title'] {
    color: #fefefe;
    background-color: #8A1538;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding: 0.5em 2.25em; }
    .split-list-section > *[class*='__title'] .heading--alpha,
    .search-results-wrapper > *[class*='__title'] .heading--alpha {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] h1,
    .search-results-wrapper > *[class*='__title'] h1 {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] .heading--beta,
    .search-results-wrapper > *[class*='__title'] .heading--beta {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] h2,
    .search-results-wrapper > *[class*='__title'] h2 {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] .heading--gamma,
    .search-results-wrapper > *[class*='__title'] .heading--gamma {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] h3,
    .search-results-wrapper > *[class*='__title'] h3 {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] .heading--delta,
    .search-results-wrapper > *[class*='__title'] .heading--delta {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] h4,
    .search-results-wrapper > *[class*='__title'] h4 {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] .heading--epsilon,
    .search-results-wrapper > *[class*='__title'] .heading--epsilon {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] h5,
    .search-results-wrapper > *[class*='__title'] h5 {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] h6,
    .search-results-wrapper > *[class*='__title'] h6 {
      color: #fefefe; }
    .split-list-section > *[class*='__title'] a:link, .split-list-section > *[class*='__title'] a:visited,
    .search-results-wrapper > *[class*='__title'] a:link,
    .search-results-wrapper > *[class*='__title'] a:visited {
      color: #fbe8d7; }
    .split-list-section > *[class*='__title'] a:hover, .split-list-section > *[class*='__title'] a:focus, .split-list-section > *[class*='__title'] a:active,
    .search-results-wrapper > *[class*='__title'] a:hover,
    .search-results-wrapper > *[class*='__title'] a:focus,
    .search-results-wrapper > *[class*='__title'] a:active {
      color: #fff; }
    .split-list-section > *[class*='__title'] a:link, .split-list-section > *[class*='__title'] a:visited,
    .search-results-wrapper > *[class*='__title'] a:link,
    .search-results-wrapper > *[class*='__title'] a:visited {
      color: #fbe8d7; }
    .split-list-section > *[class*='__title'] a:hover, .split-list-section > *[class*='__title'] a:focus, .split-list-section > *[class*='__title'] a:active,
    .search-results-wrapper > *[class*='__title'] a:hover,
    .search-results-wrapper > *[class*='__title'] a:focus,
    .search-results-wrapper > *[class*='__title'] a:active {
      color: #fff; }
    .split-list-section > *[class*='__title'] > *,
    .search-results-wrapper > *[class*='__title'] > * {
      margin-bottom: 0;
      text-align: center;
      white-space: nowrap;
      font-family: "Droid Serif", "Georgia", serif;
      font-weight: bold; }
  .split-list-section .callout__title .heading--beta,
  .search-results-wrapper .callout__title .heading--beta {
    font-size: 1.5rem;
    font-weight: normal; }
  .split-list-section ul > a,
  .search-results-wrapper ul > a {
    display: block;
    padding-top: 0.5625rem;
    padding-bottom: 0.5625rem; }
  .split-list-section ul li,
  .search-results-wrapper ul li {
    margin-left: 1.5rem;
    border-bottom: solid 2px rgba(93, 82, 77, 0.125);
    padding-top: 0.5625rem;
    padding-bottom: 0.5625rem;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
    font-family: "Droid Serif", "Georgia", serif;
    font-size: 0;
    font-weight: 400; }
    .split-list-section ul li > *, .split-list-section ul li::before, .split-list-section ul li::after,
    .search-results-wrapper ul li > *,
    .search-results-wrapper ul li::before,
    .search-results-wrapper ul li::after {
      font-size: 1.25rem; }
    .split-list-section ul li::before,
    .search-results-wrapper ul li::before {
      display: inline-block;
      color: #5d524d; }
  @media screen and (min-width: 40em) {
    .split-list-section ul,
    .search-results-wrapper ul {
      display: block;
      -webkit-columns: 2;
         -moz-columns: 2;
              columns: 2;
      -webkit-column-gap: 1rem;
         -moz-column-gap: 1rem;
              column-gap: 1rem; }
      .split-list-section ul > li,
      .search-results-wrapper ul > li {
        display: block;
        margin-right: 1.5rem; }
      .split-list-section ul > li,
      .search-results-wrapper ul > li {
        -webkit-column-break-inside: avoid;
           page-break-inside: avoid;
                break-inside: avoid; } }
  @media screen and (min-width: 61.25em) {
    .split-list-section ul,
    .search-results-wrapper ul {
      display: block;
      -webkit-columns: 3;
         -moz-columns: 3;
              columns: 3;
      -webkit-column-gap: 1rem;
         -moz-column-gap: 1rem;
              column-gap: 1rem; }
      .split-list-section ul > li,
      .search-results-wrapper ul > li {
        display: block;
        margin-right: 1.5rem; }
      .split-list-section ul > li,
      .search-results-wrapper ul > li {
        -webkit-column-break-inside: avoid;
           page-break-inside: avoid;
                break-inside: avoid; } }

.mfp-image-holder {
  max-width: 100vw; }
  .mfp-image-holder figure,
  .mfp-image-holder figure > img {
    max-width: 100vw; }

main .tour {
  margin-top: 0;
  padding-right: 0;
  padding-left: 0; }

/*
 * tour-item
 */
.tour-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(254, 254, 254, 0.1);
  font-family: "Droid Serif", "Georgia", serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fefefe;
  margin-bottom: 0.5rem;
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
  overflow: hidden;
  cursor: pointer; }
  .tour-item.selected, .tour-item.active, .tour-item:hover {
    background-color: rgba(254, 254, 254, 0.25); }
  .tour-item .tour-item__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  .tour-item .key {
    width: 2em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto; }
    .tour-item .key .map-label {
      display: block;
      -webkit-align-self: flex-start;
          -ms-flex-item-align: start;
              align-self: flex-start; }
      .tour-item .key .map-label::after {
        content: '.'; }
  .tour-item .label {
    display: inline; }

/*
 * tour-index
 */
.tour-index {
  background-color: #8A1538;
  padding: 0.8125rem 1.3125rem;
  position: relative;
  width: 100vw;
  margin: 0 auto 0; }
  .tour-index .tour-item {
    height: 3.5em; }
  @media screen and (min-width: 40em) {
    .tour-index {
      display: block; }
      .tour-index .tour-entries {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch; }
      .tour-index .tour-item {
        width: calc(50% - 8px);
        margin: 4px; } }
  @media screen and (min-width: 61.25em) {
    .tour-index {
      position: relative;
      width: 1118px;
      margin-top: -4em;
      margin-bottom: 3rem; }
      .tour-index .tour-item {
        width: calc(33% - 8px); } }

@media screen and (min-width: 40em) {
  .tour-index-mobile {
    display: none; } }

/*
 * tour-slide
 */
.tour-slide {
  overflow: hidden;
  border: 0.3125rem #f2f0e8 solid;
  background-color: white; }
  .tour-slide figure img {
    width: 100%;
    height: auto; }
  .tour-slide .key {
    font: 1rem "Droid Serif", "Georgia", serif;
    line-height: 2.125rem;
    width: 2.125rem;
    background-color: #ff0000;
    color: #fefefe;
    text-align: center;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 3rem;
    width: 3rem;
    margin: 0 auto; }
  .tour-slide .h2 {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.125rem; }
  .tour-slide footer {
    text-align: center; }
  .tour-slide section {
    padding: 2.25rem 1.4375rem 0 1.4375rem; }
  .tour-slide p {
    font-size: 4.5vw; }
  @media screen and (min-width: 40em) {
    .tour-slide {
      border: 1.625rem #f2f0e8 solid; }
      .tour-slide figure {
        max-width: 50%;
        margin: 0;
        width: 48.167%;
        float: left; }
      .tour-slide section {
        width: 51.5%;
        float: right; }
      .tour-slide .h2 {
        font-size: 2.1875rem; }
      .tour-slide p {
        font-size: 1rem; } }

@media screen and (min-width: 61.25em) {
  .flexbox .tour-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .flexbox .tour-slide figure {
      -webkit-box-flex: 0;
      -webkit-flex-grow: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0;
      -webkit-flex-basis: 48.167%;
          -ms-flex-preferred-size: 48.167%;
              flex-basis: 48.167%;
      float: none;
      width: auto;
      background-color: #e1e1e1; }
    .flexbox .tour-slide section {
      -webkit-flex-basis: 100%;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      float: none;
      width: auto;
      direction: column;
      overflow: auto; }
    .flexbox .tour-slide header, .flexbox .tour-slide footer {
      -webkit-flex-shrink: 0;
          -ms-flex-negative: 0;
              flex-shrink: 0;
      -webkit-box-flex: 0;
      -webkit-flex-grow: 0;
          -ms-flex-positive: 0;
              flex-grow: 0; }
    .flexbox .tour-slide .desc {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      height: 100%; } }

/*
 * tour-slideshow
 * These styles only apply after slick
 * has been initialized.
 */
@media screen and (min-width: 40em) {
  .tour-frame {
    position: absolute;
    top: 0;
    padding-top: 15%;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 500;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    background-color: rgba(0, 0, 0, 0.5); } }

.tour-slideshow {
  display: none;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto; }
  @media screen and (min-width: 40em) {
    .tour-slideshow {
      display: block; } }

.tour-slideshow.slick-initialized figure {
  max-width: 100%;
  margin: 0; }

.tour-slideshow.slick-initialized button {
  margin-bottom: 0;
  background-image: none;
  padding: .6em; }
  .tour-slideshow.slick-initialized button:after {
    margin: 0; }
  .tour-slideshow.slick-initialized button:hover {
    background-color: #8A1538; }
    .tour-slideshow.slick-initialized button:hover:after {
      margin-left: 0;
      margin-right: 0; }
  .tour-slideshow.slick-initialized button.slick-prev {
    position: absolute;
    top: 164px;
    left: 0;
    z-index: 20; }
    .tour-slideshow.slick-initialized button.slick-prev:after {
      content: "";
      margin: 0; }
  .tour-slideshow.slick-initialized button.slick-next {
    position: absolute;
    top: 164px;
    right: -1px;
    z-index: 20; }

.tour-slideshow.slick-initialized .close-button {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1.5rem;
  text-align: center;
  background-color: #e1e1e1; }
  .tour-slideshow.slick-initialized .close-button:hover {
    color: #8A1538; }

.tour-slideshow.slick-initialized figure {
  max-width: 66%;
  margin: 1em auto; }

.tour-slideshow.slick-initialized header {
  text-align: center; }

.tour-slideshow.slick-initialized .key, .tour-slideshow.slick-initialized .h2 {
  display: inline;
  font-size: 1.25rem; }

.tour-slideshow.slick-initialized .key {
  background-color: transparent;
  color: #5d524d;
  font-family: "Lato", "Helvetica", "Arial", sans-serif;
  font-style: italic; }
  .tour-slideshow.slick-initialized .key:after {
    content: '. '; }

.tour-slideshow.slick-initialized .slick-prev, .tour-slideshow.slick-initialized .slick-next {
  display: none !important; }

@media screen and (min-width: 40em) {
  .tour-slideshow.slick-initialized {
    padding-left: 3.0625rem;
    padding-right: 3.0625rem; }
    .tour-slideshow.slick-initialized button {
      line-height: 3.75rem;
      margin-top: -1.875rem;
      padding: 1.2em 1.65em; }
    .tour-slideshow.slick-initialized .close-button {
      background-color: #e1e1e1;
      border-radius: 0 0 0 50%;
      color: #ff0000;
      height: 4.375rem;
      line-height: 4.375rem;
      right: 3.0625rem;
      text-align: center;
      text-decoration: none !important;
      width: 4.375rem; } }

/*
 * tour-map
 */
.map-canvas {
  background-color: #5d524d;
  background-image: -webkit-linear-gradient(top, #000 0%, #111 10%, #5a5a5a 100%);
  background-image: linear-gradient(to bottom, #000 0%, #111 10%, #5a5a5a 100%);
  height: 48.375vw;
  width: 100%; }
  .map-canvas .map-scroller {
    display: none;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%; }
    @media screen and (min-width: 40em) {
      .map-canvas .map-scroller {
        display: block; } }
  .map-canvas .map-static {
    display: block; }
    @media screen and (min-width: 40em) {
      .map-canvas .map-static {
        display: none; } }
  .map-canvas .map-wrapper {
    position: absolute;
    top: 0;
    right: -15px;
    bottom: -15px;
    left: 0;
    overflow: scroll; }
  .map-canvas .map-container {
    width: 2198px;
    height: 860px; }

@media screen and (min-width: 61.25em) {
  .map-canvas {
    height: 860px; }
  .map-scroller {
    width: 100%;
    max-width: 2198px;
    height: 860px;
    margin: 0 auto; } }

/*
 * tour map
 */
@-webkit-keyframes pulse {
  from {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5); }
  to {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.8); } }
@keyframes pulse {
  from {
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5); }
  to {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.8); } }

.tour-pin {
  font: 1rem "Droid Serif", "Georgia", serif;
  line-height: 2.125rem;
  width: 2.125rem;
  background-color: #ff0000;
  color: #fefefe;
  text-align: center;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5); }
  .tour-pin:hover, .tour-pin.active, .tour-pin.selected {
    -webkit-animation-name: pulse;
            animation-name: pulse;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
    cursor: pointer; }

a.tour-pin {
  font-family: "Droid Serif", "Georgia", serif;
  font-style: italic;
  font-weight: bold; }
  a.tour-pin:link, a.tour-pin:visited {
    color: white;
    text-decoration: none; }
  a.tour-pin:active, a.tour-pin:hover {
    color: white;
    text-decoration: none; }

/* Artin Hovhanesian */
.site-header__logo-wrapper {background: none !important;padding:0;}
.site-header__logo-wrapper .lhu-logo-svg {background:#fff;height:60%;}

@media (min-width:50.3125em) {
	.site-header__logo-wrapper .lhu-logo-svg {width:65%;height:69%;}
}

/*# sourceMappingURL=style.css.map */
