@charset "UTF-8";
/* https://css-tricks.com/snippets/sass/strip-unit-function/
* Removes the unit of a length
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after 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/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 when focused and also mouse hovered in all browsers.
 */
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.
 */
/**
 * 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
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box; }

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

.freeform-instructions {
  font-size: 0.8rem;
  margin-top: 0.2rem;
  font-style: italic;
}

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

td,
th {
  padding: 0; }

::-moz-selection {
  color: white;
  background: #111111;
  text-shadow: none; }

::selection {
  color: white;
  background: #111111;
  text-shadow: none; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

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

textarea {
  resize: vertical; }

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

* {
  outline: none; }

html {
  text-rendering: optimizeLegibility;
  width: 100%;
  height: 100%;
  overflow: visible; }

body {
  margin: 0 auto;
  color: #655763;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.35;
  overflow-y: scroll;
  height: 100%;
  background-color: #fff; }

a {
  color: currentColor; }

i {
  font-style: normal; }

button {
  border: none;
  background: transparent; }

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto; }

figure {
  margin: 0; }

main ul, main ol {
  padding-left: 2rem;
  text-align: left; }
  main ul li + li, main ol li + li {
    margin-top: 0.25rem !important; }

main ul li {
  list-style-type: disc; }

main ol li {
  list-style-type: decimal; }

ul.list--camo, ol.list--camo {
  padding-left: 0; }
  ul.list--camo li, ol.list--camo li {
    list-style-type: none; }
  ul.list--camo li + li, ol.list--camo li + li {
    margin-top: 1rem !important; }

.wrapper, .mfp-ajax-custom .mfp-content {
  box-sizing: border-box;
  width: 100%;
  max-width: 78.75rem;
  margin: 0 auto; }

.container-fluid, .mfp-ajax-custom .mfp-content {
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem; }

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem; }

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

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

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.75rem;
  padding-left: 0.75rem; }

.col-xs {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%; }

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%; }

.col-xs-2 {
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col-xs-5 {
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%; }

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%; }

.col-xs-8 {
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col-xs-11 {
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%; }

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.col-xs-offset-0 {
  margin-left: 0; }

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

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

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

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

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

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

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

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

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

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

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

.col-xs-offset-12 {
  margin-left: 100%; }

/*.col-xs {
	@include flex-grow(1);
	@include flex-basis(0);
	max-width: 100%;
}*/
.start-xs {
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start; }

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

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

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

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

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

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

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

.first-xs {
  -ms-flex-order: -1;
  order: -1; }

.last-xs {
  -ms-flex-order: 1;
  order: 1; }

.hidden-xs {
  display: none; }

.block-xs, .visible-xs {
  display: block !important; }

.inline-xs {
  display: inline-block !important; }

.flex-xs {
  display: -ms-flexbox !important;
  display: flex !important; }

.top-margin-none-xs {
  margin-top: 0 !important; }

.top-margin-default-xs {
  margin-top: 1rem !important; }

.top-margin-auto-xs {
  margin-top: auto !important; }

.col-xs-fullHeight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  width: 100%; }

.row-xs-fullHeight {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto; }

@media only screen and (min-width: 20rem) {
  .container {
    width: 17rem; }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-0 {
    margin-left: 0; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; }
  .col-sm {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-sm {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-sm {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .end-sm {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-sm {
    -ms-flex-align: start;
    align-items: flex-start; }
  .middle-sm {
    -ms-flex-align: center;
    align-items: center; }
  .bottom-sm {
    -ms-flex-align: end;
    align-items: flex-end; }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-sm {
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .first-sm {
    -ms-flex-order: -1;
    order: -1; }
  .last-sm {
    -ms-flex-order: 1;
    order: 1; }
  .hidden-sm {
    display: none; }
  .block-sm, .visible-sm {
    display: block !important; }
  .inline-sm {
    display: inline-block !important; }
  .flex-sm {
    display: -ms-flexbox !important;
    display: flex !important; }
  .top-margin-none-sm {
    margin-top: 0 !important; }
  .top-margin-default-sm {
    margin-top: 1rem !important; }
  .top-margin-auto-sm {
    margin-top: auto !important; }
  .col-sm-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    width: 100%; }
  .row-sm-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto; } }

@media only screen and (min-width: 32.5rem) {
  .container {
    width: 29.5rem; }
  .col-mid-1 {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-mid-2 {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-mid-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-mid-4 {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-mid-5 {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-mid-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-mid-7 {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-mid-8 {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-mid-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-mid-10 {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-mid-11 {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-mid-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-mid-offset-0 {
    margin-left: 0; }
  .col-mid-offset-1 {
    margin-left: 8.33333%; }
  .col-mid-offset-2 {
    margin-left: 16.66667%; }
  .col-mid-offset-3 {
    margin-left: 25%; }
  .col-mid-offset-4 {
    margin-left: 33.33333%; }
  .col-mid-offset-5 {
    margin-left: 41.66667%; }
  .col-mid-offset-6 {
    margin-left: 50%; }
  .col-mid-offset-7 {
    margin-left: 58.33333%; }
  .col-mid-offset-8 {
    margin-left: 66.66667%; }
  .col-mid-offset-9 {
    margin-left: 75%; }
  .col-mid-offset-10 {
    margin-left: 83.33333%; }
  .col-mid-offset-11 {
    margin-left: 91.66667%; }
  .col-mid-offset-12 {
    margin-left: 100%; }
  .col-mid {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-mid {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-mid {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .end-mid {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-mid {
    -ms-flex-align: start;
    align-items: flex-start; }
  .middle-mid {
    -ms-flex-align: center;
    align-items: center; }
  .bottom-mid {
    -ms-flex-align: end;
    align-items: flex-end; }
  .around-mid {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-mid {
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .first-mid {
    -ms-flex-order: -1;
    order: -1; }
  .last-mid {
    -ms-flex-order: 1;
    order: 1; }
  .hidden-mid {
    display: none; }
  .block-mid, .visible-mid {
    display: block !important; }
  .inline-mid {
    display: inline-block !important; }
  .flex-mid {
    display: -ms-flexbox !important;
    display: flex !important; }
  .top-margin-none-mid {
    margin-top: 0 !important; }
  .top-margin-default-mid {
    margin-top: 1rem !important; }
  .top-margin-auto-mid {
    margin-top: auto !important; }
  .col-mid-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    width: 100%; }
  .row-mid-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto; } }

@media only screen and (min-width: 48rem) {
  .container {
    width: 45rem; }
  .col-desktop-1 {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-desktop-2 {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-desktop-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-desktop-4 {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-desktop-5 {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-desktop-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-desktop-7 {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-desktop-8 {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-desktop-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-desktop-10 {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-desktop-11 {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-desktop-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-desktop-offset-0 {
    margin-left: 0; }
  .col-desktop-offset-1 {
    margin-left: 8.33333%; }
  .col-desktop-offset-2 {
    margin-left: 16.66667%; }
  .col-desktop-offset-3 {
    margin-left: 25%; }
  .col-desktop-offset-4 {
    margin-left: 33.33333%; }
  .col-desktop-offset-5 {
    margin-left: 41.66667%; }
  .col-desktop-offset-6 {
    margin-left: 50%; }
  .col-desktop-offset-7 {
    margin-left: 58.33333%; }
  .col-desktop-offset-8 {
    margin-left: 66.66667%; }
  .col-desktop-offset-9 {
    margin-left: 75%; }
  .col-desktop-offset-10 {
    margin-left: 83.33333%; }
  .col-desktop-offset-11 {
    margin-left: 91.66667%; }
  .col-desktop-offset-12 {
    margin-left: 100%; }
  .col-desktop {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-desktop {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-desktop {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .end-desktop {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-desktop {
    -ms-flex-align: start;
    align-items: flex-start; }
  .middle-desktop {
    -ms-flex-align: center;
    align-items: center; }
  .bottom-desktop {
    -ms-flex-align: end;
    align-items: flex-end; }
  .around-desktop {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-desktop {
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .first-desktop {
    -ms-flex-order: -1;
    order: -1; }
  .last-desktop {
    -ms-flex-order: 1;
    order: 1; }
  .hidden-desktop {
    display: none; }
  .block-desktop, .visible-desktop {
    display: block !important; }
  .inline-desktop {
    display: inline-block !important; }
  .flex-desktop {
    display: -ms-flexbox !important;
    display: flex !important; }
  .top-margin-none-desktop {
    margin-top: 0 !important; }
  .top-margin-default-desktop {
    margin-top: 1rem !important; }
  .top-margin-auto-desktop {
    margin-top: auto !important; }
  .col-desktop-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    width: 100%; }
  .row-desktop-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto; } }

@media only screen and (min-width: 64rem) {
  .container {
    width: 61rem; }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-0 {
    margin-left: 0; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; }
  .col-md {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-md {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-md {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .end-md {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-md {
    -ms-flex-align: start;
    align-items: flex-start; }
  .middle-md {
    -ms-flex-align: center;
    align-items: center; }
  .bottom-md {
    -ms-flex-align: end;
    align-items: flex-end; }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-md {
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .first-md {
    -ms-flex-order: -1;
    order: -1; }
  .last-md {
    -ms-flex-order: 1;
    order: 1; }
  .hidden-md {
    display: none; }
  .block-md, .visible-md {
    display: block !important; }
  .inline-md {
    display: inline-block !important; }
  .flex-md {
    display: -ms-flexbox !important;
    display: flex !important; }
  .top-margin-none-md {
    margin-top: 0 !important; }
  .top-margin-default-md {
    margin-top: 1rem !important; }
  .top-margin-auto-md {
    margin-top: auto !important; }
  .col-md-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    width: 100%; }
  .row-md-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto; } }

@media only screen and (min-width: 75rem) {
  .container {
    width: 72rem; }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-0 {
    margin-left: 0; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; }
  .col-lg {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-lg {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start; }
  .center-lg {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
  .end-lg {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end; }
  .top-lg {
    -ms-flex-align: start;
    align-items: flex-start; }
  .middle-lg {
    -ms-flex-align: center;
    align-items: center; }
  .bottom-lg {
    -ms-flex-align: end;
    align-items: flex-end; }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around; }
  .between-lg {
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .first-lg {
    -ms-flex-order: -1;
    order: -1; }
  .last-lg {
    -ms-flex-order: 1;
    order: 1; }
  .hidden-lg {
    display: none; }
  .block-lg, .visible-lg {
    display: block !important; }
  .inline-lg {
    display: inline-block !important; }
  .flex-lg {
    display: -ms-flexbox !important;
    display: flex !important; }
  .top-margin-none-lg {
    margin-top: 0 !important; }
  .top-margin-default-lg {
    margin-top: 1rem !important; }
  .top-margin-auto-lg {
    margin-top: auto !important; }
  .col-lg-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    width: 100%; }
  .row-lg-fullHeight {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex: 1 1 auto;
        flex: 1 1 auto; } }

.clearfix:before, .main:before, .listings:before, .resourceBubbles:before, .clearfix:after, .main:after, .listings:after, .resourceBubbles:after {
  content: "";
  display: table; }

.clearfix:after, .main:after, .listings:after, .resourceBubbles:after {
  clear: both; }

.text-content * + *, .detail * + *, .sidebar-section * + *, .mastheadSlideContent .col * + *, .textStyle--default .text-content * + *, .block-accountGateway .text-content * + *, .textStyle--callout .text-content * + *, .well * + * {
  margin-top: 1rem; }

.text-content br, .detail br, .sidebar-section br, .mastheadSlideContent .col br, .textStyle--default .text-content br, .block-accountGateway .text-content br, .textStyle--callout .text-content br, .well br {
  margin: 0 !important; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.text-content, .text--default {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.35; }

.checkboxGroup label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.img-stretch {
  width: 100%; }

.background--cover, .compactListing-horizontalBgImage, .mastheadSlideContent-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }

.background--full, .mastheadSlideContent-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; }

.mb {
  overflow: hidden; }

.mb-body {
  margin-top: 0;
  overflow: hidden; }

.mb .mb-media {
  float: left;
  margin-right: 1rem;
  margin-top: 0; }

.mb .mb-media img {
  display: block; }

.mb .mb-media--alt {
  float: right;
  margin-left: 1rem;
  margin-top: 0; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyHidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.invisible {
  visibility: hidden; }

.fader {
  transition: opacity 0.5s linear; }

.transparent {
  opacity: 0;
  filter: alpha(opacity=0); }

.ignored {
  margin: 0 !important; }

.sup {
  font-size: 70%;
  display: inline-block;
  vertical-align: top; }

.js .zoom-in, .js a.zoom-in {
  cursor: pointer;
  cursor: zoom-in; }

.table {
  display: table; }

.table-row {
  display: table-row; }

.table-cell {
  display: table-cell;
  vertical-align: middle; }

.loading, .loading--tall {
  min-height: 80px;
  background: url(/assets/svg/ajax-loader-white.svg) no-repeat center center; }

.loading--tall {
  min-height: 400px; }

.fullWidth {
  width: 100%;
  margin: 0 auto; }

@keyframes fadeIn {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden; }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible; } }

@keyframes fadeOut {
  from {
    opacity: 1;
    filter: alpha(opacity=100); }
  to {
    opacity: 0;
    filter: alpha(opacity=0); } }

[v-cloak] {
  display: none !important; }

.shadowedBox, .formWrapper, .listing, .compactListing {
  position: relative; }
  .shadowedBox:before, .formWrapper:before, .listing:before, .compactListing:before {
    content: "";
    position: absolute;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    top: 50%;
    bottom: 0;
    left: 15%;
    right: 15%;
    border-radius: 100px / 10px; }

.shadowedBox-inner {
  background-color: white;
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.25rem;
  border-radius: 5px; }

.mobileMenu-social li, .sidebar-share li, .bottomBar-social li {
  display: inline-block; }

.mobileMenu-social li + li, .sidebar-share li + li, .bottomBar-social li + li {
  margin-left: 1rem; }

.mobileMenu-social a, .sidebar-share a, .bottomBar-social a {
  text-decoration: none;
  color: #80797e;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1 !important;
  display: inline-block; }
  .mobileMenu-social a:hover, .sidebar-share a:hover, .bottomBar-social a:hover {
    color: #fff; }

.divider--after:after {
  content: '';
  height: 13px;
  width: 100%;
  margin-top: 0.75rem;
  background: url(/assets/svg/divider.svg) no-repeat center top;
  display: none; }
  @media only screen and (min-width: 48rem) {
    .divider--after:after {
      display: block; } }

.border-top {
  border-top: 1px solid #cacaca;
  padding-top: .75rem;
  margin-top: 1rem; }

.video-overlay, .video-overlay-sm {
  position: relative; }
  .video-overlay:before, .video-overlay-sm:before, .video-overlay:after, .video-overlay-sm:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s; }
  .video-overlay:before, .video-overlay-sm:before {
    z-index: 6;
    content: "▶";
    font-size: 54px;
    font-size: 3.375rem;
    color: #fff;
    text-align: center;
    top: 50%;
    margin-top: -27px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.1); }
  .video-overlay:hover:before, .video-overlay-sm:hover:before {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3); }
  .video-overlay:after, .video-overlay-sm:after {
    content: '';
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.1); }
  .video-overlay:hover:after, .video-overlay-sm:hover:after {
    background-color: transparent; }

.video-overlay-sm:before {
  font-size: 40px;
  font-size: 2.5rem;
  margin-top: -20px; }

.row--fauxBorderTop {
  position: relative;
  margin-top: 1rem !important;
  padding-top: 1rem !important; }
  .row--fauxBorderTop:before {
    content: '';
    height: 1px;
    background-color: #d4d4d4;
    position: absolute;
    top: 0;
    left: 0.75rem;
    right: 0.75rem; }

@media only screen and (min-width: 48rem) {
  .row--desktopInnerBorders > [class^="col-"] + [class^="col-"] {
    border-left: 1px solid #d4d4d4; } }

.timeline-sub:before, .timeline-main .slides:before {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 );
  /* IE6-9 */ }

.timeline-sub:after, .timeline-main .slides:after {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
  /* IE6-9 */ }

.timeline-sub:before, .timeline-main .slides:before {
  width: 5%;
  min-width: 15px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 10;
  pointer-events: none; }

.timeline-sub:after, .timeline-main .slides:after {
  width: 5%;
  min-width: 15px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
  pointer-events: none; }

.algoliaLogoHolder {
  margin-top: 3rem; }
  .pagination-holder + .algoliaLogoHolder {
    margin-top: 0; }

body {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif; }

blockquote {
  border-left: 8px solid #98453c;
  padding: 0.5rem 1.5rem;
  margin-left: 1.5rem; }

a {
  color: currentColor; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

h1, .fauxH1,
h2, .fauxH2,
h3, .fauxH3,
h4, .fauxH4,
h5, .fauxH5,
h6, .fauxH6,
.pageHeading {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: normal; }

h1, .fauxH1 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2; }
  @media only screen and (min-width: 20rem) {
    h1, .fauxH1 {
      font-size: 36px;
      font-size: 2.25rem; } }

h2, .fauxH2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.1; }
  @media only screen and (min-width: 20rem) {
    h2, .fauxH2 {
      font-size: 32px;
      font-size: 2rem; } }

h3, .fauxH3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.2; }

h4, .fauxH4 {
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.35; }

h5, .fauxH5 {
  font-size: 20px;
  font-size: 1.25rem; }

h6, .fauxH6 {
  font-size: 18px;
  font-size: 1.125rem; }

.pageHeading {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2; }
  @media only screen and (min-width: 20rem) {
    .pageHeading {
      font-size: 50px;
      font-size: 3.125rem; } }

.sectionHeading {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.2; }
  @media only screen and (min-width: 20rem) {
    .sectionHeading {
      font-size: 36px;
      font-size: 2.25rem; } }

.text--headingUnderlined {
  border-bottom: 1px solid currentColor; }

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

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

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

.text--defaultFamily {
  font-family: "Open Sans", sans-serif; }

.text--secondaryFamily {
  font-family: "Sorts Mill Goudy", serif; }

.text--upper {
  text-transform: uppercase; }

.text--bold {
  font-weight: bold; }

.text--headingAlt {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.25px; }

.text--block, .textStyle--default .text-content, .block-accountGateway .text-content {
  font-size: 16px;
  font-size: 1rem; }
  @media only screen and (min-width: 20rem) {
    .text--block, .textStyle--default .text-content, .block-accountGateway .text-content {
      font-size: 18px;
      font-size: 1.125rem; } }

.text--callout, .textStyle--callout .text-content {
  font-size: 18px;
  font-size: 1.125rem; }
  @media only screen and (min-width: 20rem) {
    .text--callout, .textStyle--callout .text-content {
      font-size: 23px;
      font-size: 1.4375rem; } }

.text--attentionGrabber {
  color: #98453c;
  font-size: 275%;
  line-height: .5;
  margin-right: 0.5rem;
  letter-spacing: -2px; }

.text--altColor {
  color: #98453c; }

.button, .button--sm, .button--tiny, .button--lg, .button--icon {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  font-weight: normal;
  border: 2px solid #9d4741;
  border-radius: 4px;
  color: #ae5b52;
  padding: 9px 18px !important;
  vertical-align: middle; }
  .button:hover, .button--sm:hover, .button--tiny:hover, .button--lg:hover, .button--icon:hover {
    background-color: #9d4741;
    color: #fff; }

.button-holder, .button-holder-block, .button-stack {
  margin-left: auto;
  margin-right: auto; }
  .button-holder .button, .button-holder-block .button, .button-stack .button, .button-holder .button--sm, .button-holder-block .button--sm, .button-stack .button--sm, .button-holder .button--tiny, .button-holder-block .button--tiny, .button-stack .button--tiny, .button-holder .button--lg, .button-holder-block .button--lg, .button-stack .button--lg, .button-holder .button--icon, .button-holder-block .button--icon, .button-stack .button--icon {
    margin: 0.5rem 0 0 0; }
  .button-holder .button + .button, .button-holder-block .button + .button, .button-stack .button + .button, .button-holder .button--sm + .button, .button-holder-block .button--sm + .button, .button-stack .button--sm + .button, .button-holder .button--tiny + .button, .button-holder-block .button--tiny + .button, .button-stack .button--tiny + .button, .button-holder .button--lg + .button, .button-holder-block .button--lg + .button, .button-stack .button--lg + .button, .button-holder .button--icon + .button, .button-holder-block .button--icon + .button, .button-stack .button--icon + .button, .button-holder .button + .button--sm, .button-holder-block .button + .button--sm, .button-stack .button + .button--sm, .button-holder .button--sm + .button--sm, .button-holder-block .button--sm + .button--sm, .button-stack .button--sm + .button--sm, .button-holder .button--tiny + .button--sm, .button-holder-block .button--tiny + .button--sm, .button-stack .button--tiny + .button--sm, .button-holder .button--lg + .button--sm, .button-holder-block .button--lg + .button--sm, .button-stack .button--lg + .button--sm, .button-holder .button--icon + .button--sm, .button-holder-block .button--icon + .button--sm, .button-stack .button--icon + .button--sm, .button-holder .button + .button--tiny, .button-holder-block .button + .button--tiny, .button-stack .button + .button--tiny, .button-holder .button--sm + .button--tiny, .button-holder-block .button--sm + .button--tiny, .button-stack .button--sm + .button--tiny, .button-holder .button--tiny + .button--tiny, .button-holder-block .button--tiny + .button--tiny, .button-stack .button--tiny + .button--tiny, .button-holder .button--lg + .button--tiny, .button-holder-block .button--lg + .button--tiny, .button-stack .button--lg + .button--tiny, .button-holder .button--icon + .button--tiny, .button-holder-block .button--icon + .button--tiny, .button-stack .button--icon + .button--tiny, .button-holder .button + .button--lg, .button-holder-block .button + .button--lg, .button-stack .button + .button--lg, .button-holder .button--sm + .button--lg, .button-holder-block .button--sm + .button--lg, .button-stack .button--sm + .button--lg, .button-holder .button--tiny + .button--lg, .button-holder-block .button--tiny + .button--lg, .button-stack .button--tiny + .button--lg, .button-holder .button--lg + .button--lg, .button-holder-block .button--lg + .button--lg, .button-stack .button--lg + .button--lg, .button-holder .button--icon + .button--lg, .button-holder-block .button--icon + .button--lg, .button-stack .button--icon + .button--lg, .button-holder .button + .button--icon, .button-holder-block .button + .button--icon, .button-stack .button + .button--icon, .button-holder .button--sm + .button--icon, .button-holder-block .button--sm + .button--icon, .button-stack .button--sm + .button--icon, .button-holder .button--tiny + .button--icon, .button-holder-block .button--tiny + .button--icon, .button-stack .button--tiny + .button--icon, .button-holder .button--lg + .button--icon, .button-holder-block .button--lg + .button--icon, .button-stack .button--lg + .button--icon, .button-holder .button--icon + .button--icon, .button-holder-block .button--icon + .button--icon, .button-stack .button--icon + .button--icon {
    margin-left: 1.5rem;
    margin-right: 1.5rem; }
    @media only screen and (min-width: 32.5rem) {
      .button-holder .button + .button, .button-holder-block .button + .button, .button-stack .button + .button, .button-holder .button--sm + .button, .button-holder-block .button--sm + .button, .button-stack .button--sm + .button, .button-holder .button--tiny + .button, .button-holder-block .button--tiny + .button, .button-stack .button--tiny + .button, .button-holder .button--lg + .button, .button-holder-block .button--lg + .button, .button-stack .button--lg + .button, .button-holder .button--icon + .button, .button-holder-block .button--icon + .button, .button-stack .button--icon + .button, .button-holder .button + .button--sm, .button-holder-block .button + .button--sm, .button-stack .button + .button--sm, .button-holder .button--sm + .button--sm, .button-holder-block .button--sm + .button--sm, .button-stack .button--sm + .button--sm, .button-holder .button--tiny + .button--sm, .button-holder-block .button--tiny + .button--sm, .button-stack .button--tiny + .button--sm, .button-holder .button--lg + .button--sm, .button-holder-block .button--lg + .button--sm, .button-stack .button--lg + .button--sm, .button-holder .button--icon + .button--sm, .button-holder-block .button--icon + .button--sm, .button-stack .button--icon + .button--sm, .button-holder .button + .button--tiny, .button-holder-block .button + .button--tiny, .button-stack .button + .button--tiny, .button-holder .button--sm + .button--tiny, .button-holder-block .button--sm + .button--tiny, .button-stack .button--sm + .button--tiny, .button-holder .button--tiny + .button--tiny, .button-holder-block .button--tiny + .button--tiny, .button-stack .button--tiny + .button--tiny, .button-holder .button--lg + .button--tiny, .button-holder-block .button--lg + .button--tiny, .button-stack .button--lg + .button--tiny, .button-holder .button--icon + .button--tiny, .button-holder-block .button--icon + .button--tiny, .button-stack .button--icon + .button--tiny, .button-holder .button + .button--lg, .button-holder-block .button + .button--lg, .button-stack .button + .button--lg, .button-holder .button--sm + .button--lg, .button-holder-block .button--sm + .button--lg, .button-stack .button--sm + .button--lg, .button-holder .button--tiny + .button--lg, .button-holder-block .button--tiny + .button--lg, .button-stack .button--tiny + .button--lg, .button-holder .button--lg + .button--lg, .button-holder-block .button--lg + .button--lg, .button-stack .button--lg + .button--lg, .button-holder .button--icon + .button--lg, .button-holder-block .button--icon + .button--lg, .button-stack .button--icon + .button--lg, .button-holder .button + .button--icon, .button-holder-block .button + .button--icon, .button-stack .button + .button--icon, .button-holder .button--sm + .button--icon, .button-holder-block .button--sm + .button--icon, .button-stack .button--sm + .button--icon, .button-holder .button--tiny + .button--icon, .button-holder-block .button--tiny + .button--icon, .button-stack .button--tiny + .button--icon, .button-holder .button--lg + .button--icon, .button-holder-block .button--lg + .button--icon, .button-stack .button--lg + .button--icon, .button-holder .button--icon + .button--icon, .button-holder-block .button--icon + .button--icon, .button-stack .button--icon + .button--icon {
        margin-right: 0; } }

.button-holder-block .button, .button-holder-block .button--sm, .button-holder-block .button--tiny, .button-holder-block .button--lg, .button-holder-block .button--icon {
  display: block; }

.button-stack {
  width: 100%; }
  .button-stack .button, .button-stack .button--sm, .button-stack .button--tiny, .button-stack .button--lg, .button-stack .button--icon {
    display: block;
    width: 100%; }
  .button-stack .button + .button, .button-stack .button--sm + .button, .button-stack .button--tiny + .button, .button-stack .button--lg + .button, .button-stack .button--icon + .button, .button-stack .button + .button--sm, .button-stack .button--sm + .button--sm, .button-stack .button--tiny + .button--sm, .button-stack .button--lg + .button--sm, .button-stack .button--icon + .button--sm, .button-stack .button + .button--tiny, .button-stack .button--sm + .button--tiny, .button-stack .button--tiny + .button--tiny, .button-stack .button--lg + .button--tiny, .button-stack .button--icon + .button--tiny, .button-stack .button + .button--lg, .button-stack .button--sm + .button--lg, .button-stack .button--tiny + .button--lg, .button-stack .button--lg + .button--lg, .button-stack .button--icon + .button--lg, .button-stack .button + .button--icon, .button-stack .button--sm + .button--icon, .button-stack .button--tiny + .button--icon, .button-stack .button--lg + .button--icon, .button-stack .button--icon + .button--icon {
    margin-left: 0;
    margin-right: 0; }

.button--sm {
  padding: 5px 17px !important;
  font-size: 12px;
  font-size: 0.75rem; }

.button--tiny {
  border: 1px solid #9d4741;
  padding: 5px 8px !important;
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase; }

.button--lg {
  text-transform: uppercase;
  padding: 13px 27px 12px !important;
  font-weight: 600; }

.button--full {
  margin-left: 0;
  margin-right: 0;
  width: 100%; }

.button-icon-pre {
  position: relative;
  top: 1px;
  margin-right: 0.25rem; }

.button--inverse, .button--alt, a.button--alt, a.button--inverse, a.button--alt {
  background-color: #9d4741;
  color: #fff; }
  .button--inverse:hover, .button--alt:hover, a.button--inverse:hover, a.button--alt:hover {
    background-color: #fff;
    color: #ae5b52; }

.button--alt:hover, a.button--alt:hover {
  border-color: #fff; }

.button--icon {
  border: none;
  padding: 0 !important;
  display: inline-block;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  font-weight: normal;
  vertical-align: middle;
  color: #938c90 !important;
  margin-bottom: 1rem;
  background-color: transparent; }
  .button--icon span {
    margin-right: 0.25rem;
    font-size: 20px;
    font-size: 1.25rem;
    display: inline-block;
    vertical-align: middle;
    color: #655763; }
  .button--icon:hover {
    color: #98453c !important;
    background-color: transparent; }
    .button--icon:hover span {
      color: #98453c; }

.button--tab, .button--tabDefault, a.button--tab, a.button--tabDefault {
  display: block;
  width: 100%;
  border-bottom: 1px solid currentColor;
  padding: 0 1rem 1rem;
  font-size: 24px;
  font-size: 1.5rem;
  color: #d4d4d4;
  font-weight: 600;
  padding-bottom: 18px;
  cursor: default;
  font-family: "Open Sans", sans-serif;
  transition: color 0.5s, border 0.5s; }
  .button--tab.selected, .selected.button--tabDefault, a.button--tab.selected, a.selected.button--tabDefault {
    color: #655763;
    border-bottom: 3px solid #407dcb;
    padding-bottom: 1rem; }

a.button--tab, a.button--tabDefault {
  cursor: pointer;
  text-decoration: none; }
  a.button--tab:hover, a.button--tabDefault:hover {
    color: #98453c; }

.button--tabDefault {
  color: #655763; }

.button--solid {
  color: #fff !important;
  background-color: #407dcb;
  border-color: #407dcb !important;
  text-transform: none; }
  .button--solid:hover {
    color: #407dcb !important;
    border-color: #407dcb !important;
    background-color: transparent !important; }

.button--big {
  font-size: 22px;
  font-size: 1.375rem;
  width: 100%;
  display: block; }

.button:disabled, .button--sm:disabled, .button--tiny:disabled, .button--lg:disabled, .button--icon:disabled {
  opacity: .5 !important;
  pointer-events: none !important; }

.label {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Open Sans", sans-serif; }

.link--simple {
  text-transform: uppercase;
  font-weight: normal !important;
  text-decoration: underline !important; }

.link:after {
  content: "›";
  padding-left: 0.25rem;
  font-size: 80%; }

.fauxA {
  text-decoration: underline; }

label {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.1;
  color: #655763; 
}
label.required:after,
label.freeform-required:after {
  content: '*';
  display: inline-block;
  font-weight: bold; 
  color: red;
}

textarea,
input[type="text"],
input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0; }

input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
select,
option {
  display: block;
  width: 100%;
  padding: 0.7rem;
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  border: 1px solid #d4d4d4;
  border-radius: 3px; }
  label + input[type=text], .instructions + input[type=text], label +
  input[type=email], .instructions +
  input[type=email], label +
  input[type=password], .instructions +
  input[type=password], label +
  input[type=number], .instructions +
  input[type=number], label +
  textarea, .instructions +
  textarea, label +
  select, .instructions +
  select, label +
  option, .instructions +
  option {
    margin-top: 0.8rem !important; }
  .errors + input[type=text], .errors +
  input[type=email], .errors +
  input[type=password], .errors +
  input[type=number], .errors +
  textarea, .errors +
  select, .errors +
  option {
    border-color: red; }

label + .instructions {
  margin-top: 0.8rem !important; }

select {
  padding: 0.55rem 0.7rem; }

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  outline: none; }

.error {
  color: red;
  margin-top: 0; }

ul.errors {
  list-style-type: none;
  padding: 0; }
  ul.errors li {
    color: red;
    margin-top: 0;
    list-style-type: none;
    font-size: 80%; }

input[type=checkbox] {
  margin-right: 0.5rem; }

.formInstructions {
  font-style: italic; }

.form {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.25rem;
  margin-top: 1rem;
  border-radius: 5px;
  /*button[type=submit] {
		margin-top: $marginDefault*1;
	}*/ }
  .form .instructions {
    font-style: italic;
    font-size: 80%; }
  .form .col {
    padding-top: 0.5rem; }
  @media only screen and (min-width: 64rem) {
    .form .row + .row {
      padding-top: 0.5rem; } }
  .form .hidden + .row {
    margin-top: -1rem; }

@font-face {
  font-family: "chalcedon";
  src: url("/assets/fonts/chalcedon.eot?3ey2i3");
  src: url("/assets/fonts/chalcedon.eot?3ey2i3#iefix") format("embedded-opentype"), url("/assets/fonts/chalcedon.ttf?3ey2i3") format("truetype"), url("/assets/fonts/chalcedon.woff?3ey2i3") format("woff"), url("/assets/fonts/chalcedon.svg?3ey2i3#chalcedon") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"], .icon, .video-overlay:before, .video-overlay-sm:before, .link:after, .timeline-date-slide:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "chalcedon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  [class^="icon-"]:before, [class*=" icon-"]:before, .icon:before, .video-overlay:before, .video-overlay-sm:before {
    outline: 1px solid transparent; }

.icon-pause-outline:before {
  content: "∥"; }

.icon-play-outline:before {
  content: "⯈"; }

.icon-edit:before {
  content: "🖉"; }

.icon-close:before, .well-close:before {
  content: "✕"; }

.icon-circle:before {
  content: "⚫"; }

.icon-circle-outline:before {
  content: "⚪"; }

.icon-publications:before {
  content: "🗐"; }

.icon-subscribe:before {
  content: "📫"; }

.icon-article:before {
  content: "🗏"; }

.icon-audio:before {
  content: "🕪"; }

.icon-arrow-left:before {
  content: "❬"; }

.icon-arrow-right:before {
  content: "❭"; }

.icon-blog:before {
  content: "💻"; }

.icon-books:before {
  content: "📚"; }

.icon-chevron-right:before {
  content: "›"; }

.icon-new:before {
  content: "☆"; }

.icon-paper:before {
  content: "🗎"; }

.icon-play:before {
  content: "▶"; }

.icon-video:before {
  content: "🎞"; }

.icon-email:before {
  content: "🖂"; }

.icon-facebook:before {
  content: "f"; }

.icon-twitter:before {
  content: "t"; }

.icon-cart:before {
  content: "🏷"; }

.icon-download:before {
  content: "⯆"; }

.icon-save:before {
  content: "🖫"; }

.icon-search:before {
  content: "🔍"; }

@media only screen and (max-width: 1023px) {
  html {
    overflow: visible; }
    html.mobileMenuOpen {
      overflow: hidden; }
  body {
    overflow-y: scroll; }
    body .mobileMenuOpen {
      overflow-y: hidden; } }

body {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%; }

.header {
  z-index: 2;
  width: 100%;
  -ms-flex: none;
      flex: none; }
  @media only screen and (min-width: 64rem) {
    .header {
      position: absolute;
      top: 0;
      left: 0; } }

.main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  z-index: 1;
  position: relative;
  width: 100%; }
  .main > * {
    width: 100%; }
  .main:after {
    content: '\00a0';
    display: block;
    height: 0;
    visibility: hidden; }

.block-cpEditLink {
  margin-top: auto; }
  .full .block-cpEditLink {
    margin-top: 0; }

.footer {
  -ms-flex: none;
      flex: none;
  margin-top: auto; }

.flexAutoHeightColumn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-flow: nowrap column;
      flex-flow: nowrap column; }

.position--relative {
  position: relative; }

.bg-mineShaft, .mainMenu {
  background-color: #353535;
  color: #fff; }
  .bg-mineShaft + .bg-mineShaft, .mainMenu + .bg-mineShaft, .bg-mineShaft + .mainMenu, .mainMenu + .mainMenu {
    padding-top: 0; }
  .bg-mineShaft.block-richText.textStyle--default + .bg-mineShaft, .block-richText.textStyle--default.mainMenu + .bg-mineShaft, .block-richText.mainMenu.block-accountGateway + .bg-mineShaft, .bg-mineShaft.block-richText.block-accountGateway + .bg-mineShaft, .bg-mineShaft.block-richText.textStyle--default + .mainMenu, .block-richText.textStyle--default.mainMenu + .mainMenu, .block-richText.mainMenu.block-accountGateway + .mainMenu, .bg-mineShaft.block-richText.block-accountGateway + .mainMenu,
  .bg-mineShaft.block-richText.textStyle--callout + .bg-mineShaft.block-richText.textStyle--default, .block-richText.textStyle--callout.mainMenu + .bg-mineShaft.block-richText.textStyle--default,
  .bg-mineShaft.block-richText.textStyle--callout + .block-richText.textStyle--default.mainMenu, .block-richText.textStyle--callout.mainMenu + .block-richText.textStyle--default.mainMenu,
  .bg-mineShaft.block-richText.textStyle--callout + .block-richText.mainMenu.block-accountGateway, .block-richText.textStyle--callout.mainMenu + .block-richText.mainMenu.block-accountGateway,
  .bg-mineShaft.block-richText.textStyle--callout + .bg-mineShaft.block-richText.block-accountGateway, .block-richText.textStyle--callout.mainMenu + .bg-mineShaft.block-richText.block-accountGateway {
    margin-top: -3rem; }

.bg-thunder {
  background-color: #3f363e;
  color: #fff; }
  .bg-thunder + .bg-thunder {
    padding-top: 0; }
  .bg-thunder.block-richText.textStyle--default + .bg-thunder, .bg-thunder.block-richText.block-accountGateway + .bg-thunder,
  .bg-thunder.block-richText.textStyle--callout + .bg-thunder.block-richText.textStyle--default,
  .bg-thunder.block-richText.textStyle--callout + .bg-thunder.block-richText.block-accountGateway {
    margin-top: -3rem; }

.bg-suvaGray {
  background-color: #80797e;
  color: #fff; }
  .bg-suvaGray + .bg-suvaGray {
    padding-top: 0; }
  .bg-suvaGray.block-richText.textStyle--default + .bg-suvaGray, .bg-suvaGray.block-richText.block-accountGateway + .bg-suvaGray,
  .bg-suvaGray.block-richText.textStyle--callout + .bg-suvaGray.block-richText.textStyle--default,
  .bg-suvaGray.block-richText.textStyle--callout + .bg-suvaGray.block-richText.block-accountGateway {
    margin-top: -3rem; }

.bg-turquoise {
  background-color: #79bab9;
  color: #fff; }
  .bg-turquoise + .bg-turquoise {
    padding-top: 0; }
  .bg-turquoise.block-richText.textStyle--default + .bg-turquoise, .bg-turquoise.block-richText.block-accountGateway + .bg-turquoise,
  .bg-turquoise.block-richText.textStyle--callout + .bg-turquoise.block-richText.textStyle--default,
  .bg-turquoise.block-richText.textStyle--callout + .bg-turquoise.block-richText.block-accountGateway {
    margin-top: -3rem; }

.bg-blue {
  background-color: #286AA8;
  color: #fff; }
  .bg-blue + .bg-blue {
    padding-top: 0; }
  .bg-blue.block-richText.textStyle--default + .bg-blue, .bg-blue.block-richText.block-accountGateway + .bg-blue,
  .bg-blue.block-richText.textStyle--callout + .bg-blue.block-richText.textStyle--default,
  .bg-blue.block-richText.textStyle--callout + .bg-blue.block-richText.block-accountGateway {
    margin-top: -3rem; }

.bg-sepiaSkin {
  background-color: #9d4741;
  color: #fff; }
  .bg-sepiaSkin + .bg-sepiaSkin {
    padding-top: 0; }
  .bg-sepiaSkin.block-richText.textStyle--default + .bg-sepiaSkin, .bg-sepiaSkin.block-richText.block-accountGateway + .bg-sepiaSkin,
  .bg-sepiaSkin.block-richText.textStyle--callout + .bg-sepiaSkin.block-richText.textStyle--default,
  .bg-sepiaSkin.block-richText.textStyle--callout + .bg-sepiaSkin.block-richText.block-accountGateway {
    margin-top: -3rem; }

.bg-white, .well {
  background-color: #fff;
  color: #655763; }
  .bg-white + .bg-white, .well + .bg-white, .bg-white + .well, .well + .well {
    padding-top: 0; }
  .bg-white.block-richText.textStyle--default + .bg-white, .bg-white.block-richText.block-accountGateway + .bg-white, .block-richText.block-accountGateway.well + .bg-white, .block-richText.textStyle--default.well + .bg-white, .bg-white.block-richText.textStyle--default + .well, .bg-white.block-richText.block-accountGateway + .well, .block-richText.block-accountGateway.well + .well, .block-richText.textStyle--default.well + .well,
  .bg-white.block-richText.textStyle--callout + .bg-white.block-richText.textStyle--default, .block-richText.textStyle--callout.well + .bg-white.block-richText.textStyle--default,
  .bg-white.block-richText.textStyle--callout + .bg-white.block-richText.block-accountGateway, .block-richText.textStyle--callout.well + .bg-white.block-richText.block-accountGateway,
  .bg-white.block-richText.textStyle--callout + .block-richText.block-accountGateway.well, .block-richText.textStyle--callout.well + .block-richText.block-accountGateway.well,
  .bg-white.block-richText.textStyle--callout + .block-richText.textStyle--default.well, .block-richText.textStyle--callout.well + .block-richText.textStyle--default.well {
    margin-top: -3rem; }
  .bg-white a, .well a, .bg-white .fauxA, .well .fauxA {
    color: #98453c; }

.bg-alabaster3 {
  background-color: #faf9f9;
  color: #655763; }
  .bg-alabaster3 + .bg-alabaster3 {
    padding-top: 0; }
  .bg-alabaster3.block-richText.textStyle--default + .bg-alabaster3, .bg-alabaster3.block-richText.block-accountGateway + .bg-alabaster3,
  .bg-alabaster3.block-richText.textStyle--callout + .bg-alabaster3.block-richText.textStyle--default,
  .bg-alabaster3.block-richText.textStyle--callout + .bg-alabaster3.block-richText.block-accountGateway {
    margin-top: -3rem; }
  .bg-alabaster3 a, .bg-alabaster3 .fauxA {
    color: #98453c; }

.bg-gray {
  background-color: #eeeced;
  color: #655763; }
  .bg-gray + .bg-gray {
    padding-top: 0; }
  .bg-gray.block-richText.textStyle--default + .bg-gray, .bg-gray.block-richText.block-accountGateway + .bg-gray,
  .bg-gray.block-richText.textStyle--callout + .bg-gray.block-richText.textStyle--default,
  .bg-gray.block-richText.textStyle--callout + .bg-gray.block-richText.block-accountGateway {
    margin-top: -3rem; }
  .bg-gray a, .bg-gray .fauxA {
    color: #98453c; }

.bg-lightGray {
  background-color: #faf9f9;
  color: #655763; }
  .bg-lightGray + .bg-lightGray {
    padding-top: 0; }
  .bg-lightGray.block-richText.textStyle--default + .bg-lightGray, .bg-lightGray.block-richText.block-accountGateway + .bg-lightGray,
  .bg-lightGray.block-richText.textStyle--callout + .bg-lightGray.block-richText.textStyle--default,
  .bg-lightGray.block-richText.textStyle--callout + .bg-lightGray.block-richText.block-accountGateway {
    margin-top: -3rem; }
  .bg-lightGray a, .bg-lightGray .fauxA {
    color: #98453c; }

.bg-alabaster3 + .bg-white, .bg-alabaster3 + .well,
.bg-white + .bg-alabaster3, .well + .bg-alabaster3,
.bg-alabaster3 + .bg-white,
.bg-alabaster3 + .well,
.bg-white +
.bg-alabaster3,
.well +
.bg-alabaster3,
.bg-lightGray + .bg-white,
.bg-lightGray + .well,
.bg-white +
.bg-lightGray,
.well +
.bg-lightGray {
  border-top: 1px solid #cacaca; }

.columns--double-holder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  background-color: #faf9f9; }
  @media only screen and (min-width: 48rem) {
    .columns--double-holder {
      background-image: linear-gradient(to right, #fff 50%, #faf9f9 50%); } }

.columns--column {
  padding: 1.75rem 0.75rem; }

.columns--filters h2 {
  font-family: "Open Sans", sans-serif !important;
  color: #655763 !important;
  font-weight: normal;
  font-size: 18px; }

@media only screen and (min-width: 48rem) {
  .columns--wideRight {
    border-left: 1px solid #cacaca;
    padding: 1.9rem 0.75rem 1.9rem 1.5rem; } }

@media only screen and (min-width: 48rem) {
  .columns--narrowRight {
    border-left: 1px solid #cacaca;
    padding: 1.9rem 0.75rem 1.9rem 0; } }

@media only screen and (min-width: 48rem) {
  .columns--wideLeft {
    padding: 1.9rem 1.5rem 1.9rem 0.75rem; } }

.listings {
  padding-top: 2rem; }

.listing + .listing {
  margin-top: 1rem; }

.listing-inner {
  background-color: #fff;
  padding: 1rem;
  position: relative;
  z-index: 2; }

.listing-section, .compactListing-section {
  color: #98453c;
  text-transform: uppercase;
  font-size: 10px;
  font-size: 0.625rem; }

.listing-section + .listing-heading, .compactListing-section + .listing-heading {
  margin-top: 0.25rem; }

.listing-heading {
  font-weight: normal; }
  .listing-heading a {
    text-decoration: none;
    color: #655763;
    float: left; }
    .listing-heading a:hover {
      color: #98453c; }

.listing-meta {
  font-size: 14px;
  font-size: 0.875rem;
  color: #938c90;
  clear: both; }

.listing-summary {
  margin-top: 1rem; }

.listing-row {
  margin-top: 1rem; }
  .listing-row .listing-summary {
    margin-top: 0; }

.listing-buttonHolder {
  margin-top: 1rem; }

.listing-saveDate {
  margin-top: 0.7rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #938c90; }

.listing-label {
  float: right;
  margin: 0 0 0.5rem 0.25rem; }

.compactListings-holder + .compactListings-holder {
  margin-top: 2.2rem; }

.compactListing-header {
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #655763;
  padding: 1rem;
  border-bottom: 1px solid #655763; }
  .compactListing-header .icon {
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    font-size: 24px;
    font-size: 1.5rem;
    padding-right: 16px;
    text-align: center; }

.compactListing-header + .compactListings {
  margin-top: 3rem; }

.compactListing {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap; }
  .compactListing .button-stack {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    max-width: 60%; }

.compactListing-inner {
  background-color: #fff;
  position: relative;
  z-index: 2;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: end;
      align-content: flex-end; }

.compactListing-content {
  padding: 1rem;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: end;
      align-content: flex-end; }

.compactListing-meta {
  border-top: 2px solid #eeeced;
  border-bottom: 2px solid #eeeced;
  padding: 0.5rem;
  margin-top: auto;
  font-size: 14px;
  font-size: 0.875rem;
  color: #938c90; }
  .compactListing-meta .variant {
    display: block; }

.compactListing-section {
  margin-bottom: 0.3rem; }

.compactListing-heading {
  font-weight: normal;
  margin-bottom: 0.9rem; }
  .compactListing-heading a {
    text-decoration: none;
    color: #655763; }

.compactListing-date {
  margin-top: 0.4rem; }

.compactListing-summary {
  margin-top: 1rem; }

.compactListing-linkHolder {
  margin-top: 1rem; }

.compactListing-buttonHolder {
  margin-top: 3rem; }

.compactListing-horizontalBgImage {
  display: block;
  width: 100%;
  height: 170px; }

.compactListing-inlineImage {
  margin-bottom: 1rem; }
  .compactListing-inlineImage img {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    max-width: 10em;
    max-height: 10em; }

.compactListing-section + .compactListing-inlineImage {
  margin-top: 0.5rem; }

.compactListings--alt {
  text-align: left; }
  .compactListings--alt .compactListing {
    text-align: left; }
  .compactListings--alt h3 a {
    text-decoration: none;
    color: #655763; }
  .compactListings--alt .compactListing-content {
    padding-bottom: 2rem; }

.compactListings--tiny .compactListing-heading {
  margin-bottom: 10px; }

.compactListings--tiny .compactListing-meta {
  border: none;
  padding-top: 0;
  padding-bottom: 13px;
  font-size: 12px;
  font-size: 0.75rem; }

.peopleListings .row {
  padding-top: 0;
  padding-bottom: 0; }

.peopleListing {
  margin-top: 2.5rem;
  margin-bottom: 2rem; }

.peopleListing-image img {
  display: inline-block;
  border-radius: 50%; }

.peopleListing-image + .peopleListing-header {
  margin-top: 1.6rem; }

.peopleListing-title {
  text-transform: uppercase;
  font-size: 90%;
  margin-top: 0.5rem !important; }

.peopleListing-email {
  margin-top: 1.25rem !important; }

.magListing-imageHolder {
  display: inline-block; }
  .magListing-imageHolder a, .magListing-imageHolder img {
    display: block; }

.magListing-content {
  padding: 1.5rem; }

.magListing-preHeading {
  color: #938c90; }

.magListing-heading a {
  text-decoration: none; }
  .magListing-heading a:hover {
    color: #98453c; }

.magListing-author {
  color: #938c90; }

.magListing--main,
.magListing--vertical {
  border: 1px solid #eeeced; }

.magListing--main .magListing-content {
  margin-top: 0; }

.magListing--vertical .magListing-heading,
.magListing--horizontal .magListing-heading {
  margin-top: 0.25rem; }

.magListing--vertical .magListing-imageHolder {
  -ms-flex: 1;
      flex: 1;
  max-width: 188px;
  padding-right: 0; }

.magListing--vertical .magListing-content {
  -ms-flex: 2;
      flex: 2;
  width: auto;
  margin-top: 0;
  padding-left: 2.25rem;
  padding-right: 2.25rem; }

.magListing--vertical .magListing-imageHolder + .magListing-content {
  padding-left: 1.5rem; }

.magListing--horizontal {
  border-bottom: 1px solid #eeeced;
  padding-top: 1rem;
  padding-bottom: 2rem; }
  .magListing--horizontal .magListing-imageHolder {
    -ms-flex: 1;
        flex: 1;
    max-width: 288px;
    padding-right: 0; }
  .magListing--horizontal .magListing-content {
    -ms-flex: 2;
        flex: 2;
    width: auto;
    padding-top: 0;
    margin-top: 0;
    padding-left: 2.25rem;
    padding-right: 2.25rem; }
  .magListing--horizontal .magListing-imageHolder + .magListing-content {
    padding-left: 1.5rem; }

.simpleListing + .simpleListing {
  border-top: 1px solid #eeeced;
  padding-top: 0.5rem;
  padding-bottom: 1rem; }

.simpleListing div {
  margin-top: 0.5rem; }

.simpleListing-type {
  font-weight: bold; }

.simpleListing-date {
  font-style: italic;
  color: #938c90;
  font-size: 90%; }

.simpleListing-actions {
  margin-top: 0 !important; }

.simpleListing-action {
  display: inline-block;
  margin-top: 0.1rem; }
  .simpleListing-action + .simpleListing-action {
    margin-left: 1rem; }

.simpleCompactListing + .simpleCompactListing {
  border-top: 1px solid #eeeced;
  padding-top: 0.75rem; }

.simpleCompactListing div + div {
  margin-top: 0.25rem; }

.simpleCompactListing-type {
  font-weight: 600; }

.simpleCompactListing-title {
  margin-top: 0.25rem; }

.heading {
  padding-top: 2rem;
  padding-bottom: 2rem;
  vertical-align: text-bottom; }
  .heading h1 + .inputAddon {
    margin-top: 1rem; }
  @media only screen and (min-width: 64rem) {
    .heading {
      padding-top: 90px;
      padding-bottom: 90px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: nowrap row;
          flex-flow: nowrap row;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: start;
          justify-content: flex-start; }
      .heading h1, .heading .inputAddon {
        display: inline-block; }
      .heading h1 + .inputAddon {
        margin-top: 0; }
      .heading .inputAddon {
        margin-left: 1rem;
        -ms-flex: 1;
            flex: 1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: nowrap row;
            flex-flow: nowrap row;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: start;
            justify-content: flex-start; } }

.dark .heading h1,
.dark .heading .pageHeading {
  color: #fff !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }

@media only screen and (min-width: 64rem) {
  .masthead--contentSlider .masthead-content .heading {
    padding-top: 70px;
    padding-bottom: 59px; } }

.topBar {
  padding-top: 0.7rem;
  line-height: 1;
  display: none; }

.topBar-links {
  font-size: 12px;
  font-size: 0.75rem;
  color: #938c90; }
  .topBar-links ul {
    background-color: #fafafa;
    display: inline-block;
    padding: 0 0.6rem;
    width: auto; }
  .topBar-links li {
    display: inline-block;
    margin: 0 0.2rem; }
  .topBar-links a {
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 0.2rem;
    display: inline-block; }
    .topBar-links a.selected {
      color: #98453c; }

.secondaryNav {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: end;
      justify-content: flex-end; }

.cartLink {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  top: 3px;
  padding: 8px 4px !important;
  line-height: 1;
  font-weight: normal !important; }

.accountButton {
  margin: 0 0.2rem; }

.accountLink {
  font-size: 10px;
  font-size: 0.625rem; }

.liveVideo-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-flow: row;
      flex-flow: row;
  position: relative; }

.search-open .liveVideo-wrapper {
  display: none; }

.mobileMenuOpen .liveVideo-wrapper {
  display: none; }

.liveVideo {
  margin-right: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-flow: row;
      flex-flow: row;
  width: 100%;
  background-color: #fafafa;
  padding-top: 2px;
  padding-left: 10px;
  padding-right: 10px;
  transition: text-shadow 0.1s linear; }
  .liveVideo:hover {
    text-shadow: 0px 0px 10px #FFFFFF;
    transition: text-shadow 0.2s linear; }

.liveIcon {
  color: #FFF;
  background-color: #EE4242;
  font-size: 115%;
  font-weight: bold;
  border-radius: 4px;
  padding: 6px;
  text-decoration: none; }

.liveVideoMessage {
  margin-top: 7px;
  margin-left: 5px;
  font-weight: bold; }

.search-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-flow: row;
      flex-flow: row;
  position: relative;
  z-index: 10002; }

.search-holder {
  background-color: #e7e7e7;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-flow: row;
      flex-flow: row;
  width: 100%; }

@media only screen and (max-width: 1023px) {
  .mobileMenuOpen .search-holder {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px; }
  .mobileMenuOpen .global-search-open {
    color: #fff; } }

.search-button, .search-input {
  padding: 0.75rem 0.35rem !important;
  width: auto;
  display: inline-block;
  background-color: transparent;
  border: none;
  color: #80797e;
  height: auto; }

.search-button {
  padding: 12px 13px !important; }
  .search-button:before {
    font-size: 16px;
    font-size: 1rem; }

.search-input {
  width: auto;
  -ms-flex-positive: 3;
      flex-grow: 3;
  display: none !important;
  font-size: 12px;
  font-size: 0.75rem;
  border: none !important;
  border-radius: 0; }

.global-search-close {
  display: none; }

.search-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  background-color: transparent;
  z-index: 10001;
  transition: background-color 0.25s;
  cursor: pointer; }

.search-open {
  /*body:before, .mainMenu:before {
		content: '';
		z-index: 12;
		width: 100%;
		height: 100%;
		background-color: rgba(#000,.3);
		position: absolute;
		top: 0;
		left: 0;
	}*/ }
  .search-open .search-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10001; }
  .search-open .search-wrapper {
    -ms-flex-positive: 3;
        flex-grow: 3; }
  .search-open .global-search-open {
    cursor: default; }
  .search-open .global-search-close {
    display: inline-block;
    cursor: pointer; }
  .search-open .search-input {
    display: inline-block !important; }
  .search-open header {
    z-index: 11; }
  .search-open .search-results {
    display: block; }

@media only screen and (max-width: 1023px) {
  .search-open.mobileMenuOpen .search-holder {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    background-color: #e7e7e7;
    border-radius: 0; }
  .search-open.mobileMenuOpen .search-results {
    top: 56px; }
  .search-open.mobileMenuOpen .global-search-open {
    color: #80797e; } }

.search-results {
  position: absolute;
  background-color: #fff;
  padding: 0.75rem 2rem;
  width: 100%;
  top: 40px;
  left: 0;
  display: none; }

.searchResult {
  padding: 1.25rem 0;
  margin-top: 0; }
  .searchResult + .searchResult {
    border-top: 3px solid #eeeced; }

.searchResult-title {
  line-height: 1.1;
  font-weight: normal;
  color: #655763; }
  .searchResult-title a {
    color: #655763;
    display: inline;
    font-weight: normal; }
    .searchResult-title a:hover {
      color: #98453c; }
  .searchResult-title span {
    display: inline;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 80%;
    color: #98453c; }

.mainMenu {
  padding: 0;
  transition: padding 0.25s, top 0.25s; }
  @media only screen and (max-width: 1023px) {
    .mobileMenuOpen .mainMenu {
      z-index: 1000;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow-y: auto;
      overflow-x: hidden; } }

.mainMenu-logo {
  position: relative; }

.logo {
  display: block;
  background-color: #fff;
  max-width: 80px;
  margin-top: 5px;
  margin-bottom: 5px; }
  .logo img {
    display: block; }
  @media only screen and (min-width: 64rem) {
    .logo {
      border: 5px solid #ececec;
      max-width: none;
      position: absolute;
      left: 0.75rem;
      top: -20px; } }

.mainNav {
  margin: 0;
  padding: 2.2rem 0 1.8rem;
  line-height: 1;
  position: relative;
  top: -2px; }
  .mainNav li {
    list-style-type: none;
    display: inline-block; }
  .mainNav li + li {
    margin-left: 2rem; }

.mainNav a, .mobileMenu-mainNav a {
  text-decoration: none;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1;
  font-family: "Sorts Mill Goudy", serif;
  text-transform: uppercase; }

.mainNav a, .mobileMenu-mainNav a, .mobileMenu-subNav a {
  text-decoration: none; }

.mainNav a:hover, .mainNav a.selected {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75); }

.mobileMenu-mainNav a:not([class]):hover, .mobileMenu-mainNav a:not([class]).selected, .mobileMenu-subNav a:not([class]):hover, .mobileMenu-subNav a:not([class]).selected {
  border-bottom: 1px solid rgba(255, 255, 255, 0.75); }

.mobileMenu-subNav {
  font-size: 15px;
  font-size: 0.9375rem; }

.mobileMenu {
  display: none; }
  .mobileMenu li {
    display: block;
    text-align: center;
    margin-top: 1rem; }
  @media only screen and (max-width: 1023px) {
    .mobileMenuOpen .mobileMenu {
      display: block;
      padding: 0.5rem 1rem 2rem; } }

.mobileMenu-social {
  text-align: center;
  margin-top: 1.5rem; }
  .mobileMenu-social li {
    display: inline-block;
    margin-top: 0; }

.mobileMenu-toggle {
  float: right;
  position: relative;
  top: 3px;
  left: -15px;
  background-color: #353535;
  cursor: pointer;
  padding: 10px 19px 16px 0;
  /*&:before {
		@include fontsize(40px);
		position: relative;
		top: -6px;
		outline: 1px solid transparent;
	}*/ }
  .mobileMenu-toggle span, .mobileMenu-toggle span:before, .mobileMenu-toggle span:after {
    cursor: pointer;
    height: 2px;
    width: 35px;
    position: absolute;
    display: block;
    content: '';
    transition: all 0.25s ease-in-out;
    background-color: #fff; }
  .mobileMenu-toggle span:before {
    top: -9px; }
  .mobileMenu-toggle span:after {
    bottom: -9px; }
  .mobileMenuOpen .mobileMenu-toggle span {
    background-color: transparent !important; }
    .mobileMenuOpen .mobileMenu-toggle span:before, .mobileMenuOpen .mobileMenu-toggle span:after {
      top: 0; }
    .mobileMenuOpen .mobileMenu-toggle span:before {
      transform: rotate(35deg); }
    .mobileMenuOpen .mobileMenu-toggle span:after {
      transform: rotate(-35deg); }
  .mobileMenu-toggle span span {
    display: none; }

.detail {
  padding-top: 2rem;
  padding-bottom: 4rem; }
  .detail * + h2, .detail * + h3 {
    margin-top: 2.7rem; }

.detail-preHeading a {
  text-decoration: none; }

.detail-preHeading + .detail-heading {
  margin-top: 0.35rem; }

.detail-meta {
  color: #938c90;
  margin-bottom: 1.6rem; }

.detail-keyImage {
  margin-top: 0;
  margin-bottom: 2rem; }

.detail-coverImageHolder {
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 20em;
  margin-left: auto;
  margin-right: auto; }
  .detail-coverImageHolder img {
    padding: .5em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: auto;
    height: auto;
    max-height: 15em; }

.detail-coverImage {
  display: inline-block; }

.detail-split {
  padding-top: 1.6rem; }

.detail-listing {
  padding: 1rem 0.75rem; }
  .detail-listing + .detail-listing {
    margin-top: 0;
    border-top: 1px solid #eeeced; }
  .detail-listing .col + .col {
    margin-top: 0; }

.detail-listingHeader {
  font-size: 90%;
  padding-top: 2px; }

.detail-listingTitle {
  text-decoration: none;
  font-weight: 600;
  color: #655763;
  display: inline-block;
  line-height: 1.5; }

.detail-listingMeta {
  color: #938c90;
  margin-top: 0.5rem; }

.detail-listingMeta--key {
  font-weight: 600;
  padding-right: 0.5rem; }

.detail-listingMeta--value {
  font-style: italic; }

.detail-authorsListing {
  margin-top: 4rem;
  border-top: 1px solid #eeeced;
  padding-top: 1rem; }

.infoTable td {
  padding: 1rem; }

.infoTable--label {
  font-weight: bold; }

.contentImageFrame {
  max-width: 70%;
  margin: 1rem auto; }
  .contentImageFrame img {
    width: auto;
    height: auto;
    max-height: 40em; }

.groupCaptionBlock {
  padding-top: 1rem;
  border-top: 1px solid #98453c; }

.sidebar-share h4, .sidebar-share ul {
  display: inline-block;
  vertical-align: middle; }

.sidebar-share a {
  color: #3f363e; }
  .sidebar-share a:hover {
    color: #9d4741; }

.sidebar-share ul {
  margin-top: 0; }

.sidebar-share h4 {
  font-size: 90%;
  position: relative;
  top: -2px; }

.sidebar-section {
  padding: 1.1rem 1rem;
  margin-top: 2rem; }
  .sidebar-section + .sidebar-section {
    border-top: 1px solid #cacaca;
    margin-top: 0; }

.social-sidebar {
  font-size: 30px;
  text-align: right; }
  .social-sidebar li {
    display: inline-block;
    margin-left: 10px; }
    .social-sidebar li a {
      text-decoration: none; }

.sidebar-text * {
  font-size: 90%; }

.sidebar-text * + * {
  margin-top: 0.5rem; }

.sidebar-section .simpleCompactListing {
  font-size: 90%; }

.sidebar-section .simpleCompactListing-type {
  color: #938c90; }

.bottomBar {
  line-height: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  box-shadow: inset 0 50px 50px -50px rgba(0, 0, 0, 0.5); }
  @media only screen and (min-width: 64rem) {
    .bottomBar {
      padding-top: 3.5rem;
      padding-bottom: 4.4rem; } }

.bottomBar-copyright {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 1rem;
  color: #eeeced;
  line-height: 1.4; }
  @media only screen and (min-width: 75rem) {
    .bottomBar-copyright {
      margin-top: 1.5rem;
      padding-left: 1rem; } }

.bottomBar-nav {
  padding-top: 0.5rem; }
  .bottomBar-nav ul {
    display: inline-block; }
  .bottomBar-nav li {
    display: inline-block; }
  .bottomBar-nav a {
    text-decoration: none; }
  .bottomBar-nav ul + ul, .bottomBar-nav li + li {
    margin-left: 2rem; }

.bottomBar-mainNav {
  margin-bottom: 0.5rem; }
  .bottomBar-mainNav li {
    display: inline-block;
    font-size: 15px;
    font-size: 0.9375rem;
    text-transform: uppercase;
    font-family: "Sorts Mill Goudy", serif; }

.bottomBar-secondaryNav li {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem; }

.bottomBar-secondaryNav li + li {
  margin-left: 0.5rem; }

.bottomBar-secondaryNav li:first-of-type {
  margin-left: 0; }

.bottomBar-secondaryNav li:last-of-type {
  margin-left: 0.5rem;
  margin-right: 0; }
  .bottomBar-secondaryNav li:last-of-type:before {
    content: '';
    border-left: 1px solid #786b76;
    margin-right: 1rem; }

.bottomBar-social {
  margin-top: 1.5rem; }

.bottomBar-builtBy {
  margin-top: 2rem;
  font-size: 11px;
  font-size: 0.6875rem; }
  .bottomBar-builtBy a {
    text-decoration: none; }

.archive-groups {
  padding-bottom: 3rem; }

.archive-group {
  margin-top: 1rem; }
  .archive-group + .archive-group {
    margin-top: 1.5rem; }

.archive-heading a {
  text-decoration: none; }

.archive-image + .archive-heading {
  margin-top: 1rem; }

.archive-listing {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap; }
  .archive-listing .button-stack {
    margin-top: auto;
    padding-top: 0.75rem; }

.archive-date {
  margin-top: 0.25rem; }

.block-padded--sm {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.block-padded--md, .mfp-ajax-custom .mfp-content {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.block-padded--lg {
  padding-top: 3rem;
  padding-bottom: 3rem; }

.block-padded--xl, .block-quotes, .block-resourceBubbles, .textStyle--default, .block-accountGateway {
  padding-top: 4rem;
  padding-bottom: 4rem; }

.block-padded--xxl, .textStyle--callout {
  padding-top: 5rem;
  padding-bottom: 5rem; }

.block-padded--top-none {
  padding-top: 0; }

.block-padded--bottom-none {
  padding-bottom: 0; }

.block-accountGateway {
  padding-top: 5rem;
  padding-bottom: 4.4rem; }

.accountGateway-columns {
  margin-top: 1.5rem; }
  .accountGateway-columns .col {
    margin-top: 1.5rem; }

.accountGateway-button {
  margin-top: 5rem; }

.breadcrumbs {
  border-bottom: 1px solid #eeeced;
  padding-bottom: 20px;
  position: relative;
  top: -7px; }
  .breadcrumbs ul {
    font-size: 12px;
    font-size: 0.75rem; }
  .breadcrumbs li {
    list-style-type: none;
    display: inline-block; }
  .breadcrumbs li + li:before {
    content: '/';
    padding-left: 7px;
    padding-right: 7px; }
  .breadcrumbs a {
    text-decoration: none; }
  .breadcrumbs span {
    color: #655763;
    font-weight: 600;
    cursor: default; }

.breadcrumbs--simple {
  border-bottom: none;
  padding-bottom: 0; }

.shipping-select label {
  display: block;
  margin-left: 20px;
  color: #655763; }

.shipping-select input {
  display: inline-block;
  margin-left: -20px;
  margin-right: 7px; }

.checkboxGroup {
  border-top: 1px solid #cacaca;
  padding-top: 0.75rem;
  margin-top: 1rem;
  color: #786b76; }
  .checkboxGroup + .checkboxGroup {
    margin-top: 1.75rem; }
  .checkboxGroup label, .checkboxGroup input {
    cursor: pointer; }

.checkboxGroup-heading {
  font-family: "Open Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700; }

.checkboxGroup-inner {
  padding: 0.25rem 0.25rem; }
  .checkboxGroup-inner ul {
    padding: 0;
    margin: 0; }
  .checkboxGroup-inner li {
    list-style-type: none;
    margin-top: 1rem !important; }
    .checkboxGroup-inner li label {
      font-size: 14px;
      font-size: 0.875rem; }
    .checkboxGroup-inner li span {
      color: #d4d4d4;
      float: right; }

.checkboxGroup-toggle {
  margin-top: 0.75rem; }
  .checkboxGroup-toggle button {
    padding-left: 0.75rem;
    font-size: 14px;
    font-size: 0.875rem; }

.checkboxGroup--hierarchical li ul {
  margin-left: 1rem; }

.block-cpEditLink a {
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  color: #fff; }
  .block-cpEditLink a span {
    padding-right: 0.5rem;
    opacity: 0.75;
    filter: alpha(opacity=75); }
  .block-cpEditLink a:hover span {
    opacity: 1;
    filter: alpha(opacity=100); }

.cpEditLinkInline {
  padding-left: 0.5rem;
  text-decoration: none;
  color: currentColor !important;
  opacity: 0.25;
  filter: alpha(opacity=25); }
  .cpEditLinkInline:hover {
    color: #98453c !important;
    opacity: 1;
    filter: alpha(opacity=100); }

.faq-qs .col + .col {
  margin-top: 4rem; }

.faq-qnas {
  border-top: 2px solid #eeeced; }

.faq-qna + .faq-qna {
  margin-top: 5rem; }

.inputAddon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: nowrap row;
      flex-flow: nowrap row;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start; }

input.inputAddon-input {
  padding: 0.55rem;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #655763;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-right: none;
  width: auto;
  -ms-flex: 10;
      flex: 10; }
  .dark input.inputAddon-input {
    border-color: transparent; }
  input.inputAddon-input.left-button {
    border: 1px solid #655763;
    border-left: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px; }

.inputAddon-addon {
  display: inline-block;
  vertical-align: top;
  background-color: #9d4741;
  color: #fff;
  width: 40px;
  height: 40px;
  margin: 0;
  position: relative;
  padding: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 0;
  left: 0; }
  .inputAddon-addon:before {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-size: 1.5rem; }
  .inputAddon-addon.left-button {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }

.inputAddon-simple label {
  display: inline-block;
  color: #655763;
  padding-right: 0.5rem;
  font-size: 110%; }

.inputAddon-simple input {
  display: inline-block;
  width: 100px; }

.block-insetContent,
.block-insetResources {
  padding: 0;
  background-color: #eeeced; }
  @media only screen and (min-width: 20rem) {
    .block-insetContent,
    .block-insetResources {
      background-color: #fff; } }
  .block-insetContent .wrapper, .block-insetContent .mfp-ajax-custom .mfp-content, .mfp-ajax-custom .block-insetContent .mfp-content,
  .block-insetResources .wrapper,
  .block-insetResources .mfp-ajax-custom .mfp-content, .mfp-ajax-custom
  .block-insetResources .mfp-content {
    max-width: 80.25rem !important; }
  .block-insetContent .col.inset-main-col,
  .block-insetResources .col.inset-main-col {
    padding: 1.5rem; }
  .block-insetContent.first,
  .block-insetResources.first {
    padding-top: 3rem; }
    .block-insetContent.first .col.inset-main-col,
    .block-insetResources.first .col.inset-main-col {
      border-top-left-radius: 5px;
      border-top-right-radius: 5px; }
      .block-insetContent.first .col.inset-main-col.bg-white, .block-insetContent.first .col.inset-main-col.well,
      .block-insetResources.first .col.inset-main-col.bg-white,
      .block-insetResources.first .col.inset-main-col.well {
        padding-top: 0; }
  .block-insetContent.last,
  .block-insetResources.last {
    padding-bottom: 2rem; }
    .block-insetContent.last .col.inset-main-col,
    .block-insetResources.last .col.inset-main-col {
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px; }
      .block-insetContent.last .col.inset-main-col.bg-white, .block-insetContent.last .col.inset-main-col.well,
      .block-insetResources.last .col.inset-main-col.bg-white,
      .block-insetResources.last .col.inset-main-col.well {
        padding-bottom: 0; }

.inset-listing + .inset-listing {
  margin-top: 2rem; }

.inset-resource-image {
  text-align: center;
  padding-top: 6px; }
  .inset-resource-image a {
    display: inline-block; }
  .inset-resource-image img {
    display: block; }

h3.inset-heading {
  margin-bottom: 1.5rem; }

/*
Notes:

The plain and simple mastheads do not have a background image.
The simple masthead is taller, and is the same height as the
simple slider masthead.

The masthead content will appear below the masthead content
slider. The masthead content will appear as the masthead for
all other sliders, with their images in the background (where
applicable).
*/
.masthead {
  position: relative; }

.masthead-content {
  position: relative;
  z-index: 2; }

.masthead--plain {
  border-bottom: 1px solid #cacaca; }
  @media only screen and (min-width: 64rem) {
    .masthead--plain {
      padding-top: 133px;
      min-height: 332px; } }
  @media only screen and (min-width: 64rem) {
    .masthead--plain .heading {
      padding-top: 80px;
      padding-bottom: 60px; } }

.masthead--simple {
  border-bottom: 1px solid #cacaca; }

@media only screen and (min-width: 64rem) {
  .masthead--simpleSlider,
  .masthead--simple {
    padding-top: 133px;
    min-height: 396px; } }

.masthead-slides {
  background-color: #222; }

.masthead--simpleSlider .masthead-slides {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.masthead--contentSlider .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch !important;
      align-items: stretch !important; }
  .masthead--contentSlider .slick-track .slick-slide {
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -ms-flex: 1;
        flex: 1;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }

@media only screen and (min-width: 64rem) {
  .masthead--contentSlider .slide {
    padding-top: 133px;
    min-height: 512px; } }

@media only screen and (max-width: 519px) {
  .masthead--contentSlider .slick-prev,
  .masthead--contentSlider .slick-next {
    display: none !important; } }

@media only screen and (min-width: 64rem) {
  .masthead--contentSlider .slick-prev,
  .masthead--contentSlider .slick-next {
    top: calc(50% + 70px); } }

.masthead--contentSlider .slick-prev {
  left: 0.75rem; }
  @media only screen and (min-width: 420px) {
    .masthead--contentSlider .slick-prev {
      left: 1.5rem; } }
  @media only screen and (min-width: 78.75rem) {
    .masthead--contentSlider .slick-prev {
      left: calc( ( 100vw - 78.75rem ) * .5 + 0.75rem); } }

.masthead--contentSlider .slick-next {
  right: 0.75rem; }
  @media only screen and (min-width: 420px) {
    .masthead--contentSlider .slick-next {
      right: 1.5rem; } }
  @media only screen and (min-width: 78.75rem) {
    .masthead--contentSlider .slick-next {
      right: calc( ( 100vw - 78.75rem ) * .5 + 0.75rem); } }

.mastheadSlideContent {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  -ms-flex-pack: center;
      justify-content: center; }

.mastheadSlideContent-heading {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  font-size: 30px;
  font-size: 1.875rem; }
  @media only screen and (min-width: 48rem) {
    .mastheadSlideContent-heading {
      font-size: 40px;
      font-size: 2.5rem; } }
  @media only screen and (min-width: 64rem) {
    .mastheadSlideContent-heading {
      font-size: 60px;
      font-size: 3.75rem; } }

.mastheadSlideContent-caption {
  color: #fff;
  line-height: 1.2;
  font-size: 15px;
  font-size: 0.9375rem; }
  @media only screen and (min-width: 48rem) {
    .mastheadSlideContent-caption {
      font-size: 20px;
      font-size: 1.25rem; } }
  @media only screen and (min-width: 64rem) {
    .mastheadSlideContent-caption {
      font-size: 30px;
      font-size: 1.875rem; } }

.masthead-arrowsWrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .masthead-arrowsWrapper .wrapper, .masthead-arrowsWrapper .mfp-ajax-custom .mfp-content, .mfp-ajax-custom .masthead-arrowsWrapper .mfp-content {
    height: 100%;
    position: relative; }
  .masthead-arrowsWrapper .slick-arrow {
    display: block !important; }

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

.mastheadSlideContent-sideImage--left {
  padding-right: 1rem; }

.mastheadSlideContent-sideImage--right {
  padding-left: 1rem; }

.pagination {
  padding: 3.25rem 1rem;
  text-align: center;
  font-size: 17px;
  font-size: 1.0625rem; }
  .pagination li {
    list-style-type: none;
    display: inline-block; }

.pagination-link {
  display: inline-block;
  line-height: 1;
  padding: 0.25rem 0.25rem 0.2rem;
  margin: 0.35rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center; }
  .pagination--disabled .pagination-link {
    opacity: .4;
    cursor: default; }
  .pagination--active .pagination-link {
    color: #6badad;
    border-bottom: 2px solid #5a9e9d; }

.pagination--prev.pagination--disabled, .pagination--next.pagination--disabled {
  display: none; }

.block-quotes .slick-arrow:before, .block-quotes .slick-arrow:hover:before, .block-quotes .slick-arrow:focus:before {
  color: #eeeced; }

@media only screen and (max-width: 519px) {
  .block-quotes .slick-prev,
  .block-quotes .slick-next {
    height: 40px; }
    .block-quotes .slick-prev:before,
    .block-quotes .slick-next:before {
      font-size: 40px; } }

@media only screen and (max-width: 519px) {
  .block-quotes .slick-prev {
    left: -0.75rem; } }

@media only screen and (max-width: 519px) {
  .block-quotes .slick-next {
    right: -0.75rem; } }

.block-quotes .slick-track {
  -ms-flex-align: start;
      align-items: flex-start; }

.block-quotes .slide {
  border-top: 2px solid #eeeced;
  border-bottom: 2px solid #eeeced;
  padding-top: 1.5rem;
  padding-bottom: 2.35rem;
  margin-top: 0 !important; }

.quotes-quote {
  padding: 0; }

.quotes-text {
  text-align: left;
  font-style: italic; }

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

.quotes-author {
  text-align: right;
  margin-top: 1.1rem;
  font-size: 110%; }

.quotes-authorTitle {
  margin-top: 0.375rem; }

.block-resourceBubbles .row + .row {
  padding-top: 3rem;
  padding-bottom: 0; }

.resourceBubbles {
  text-align: center;
  display: block;
  position: relative;
  font-size: 0; }

.resourceBubble {
  display: block;
  float: left;
  text-decoration: none;
  color: #655763;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
  top: 0;
  margin-top: 0; }
  .resourceBubble:nth-child(even) {
    position: relative;
    margin-top: 8%;
    z-index: 1; }
  @media only screen and (max-width: 48rem) {
    .resourceBubble {
      display: inline-block;
      vertical-align: top;
      float: none;
      width: 157px !important;
      height: 157px !important;
      margin: -30px 0 0 -30px !important;
      top: 20px !important;
      left: 15px !important; } }

.resourceBubbles-intro {
  padding-top: 2rem !important; }

.resourceBubble-inner {
  position: absolute;
  top: 10px;
  left: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  color: #655763;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  padding: 5px; }

.resourceBubble-icon {
  display: block;
  color: #5a9e9d;
  font-size: 20px;
  font-size: 1.25rem; }
  @media only screen and (min-width: 48rem) {
    .resourceBubble-icon {
      font-size: 30px;
      font-size: 1.875rem; } }
  @media only screen and (min-width: 64rem) {
    .resourceBubble-icon {
      font-size: 40px;
      font-size: 2.5rem; } }

.resourceBubble-count {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-top: 2px; }
  @media only screen and (min-width: 48rem) {
    .resourceBubble-count {
      margin-top: 0.25rem; } }
  @media only screen and (min-width: 64rem) {
    .resourceBubble-count {
      margin-top: 1rem; } }

.resourceBubble-name {
  padding-top: 4px;
  display: block;
  font-size: 20px;
  line-height: 1; }

.slides .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end; }

.slides.slick-dotted .slick-dots {
  position: static; }

.slide + .slide {
  margin-top: 0; }
  .no-js .slide + .slide {
    display: none !important; }

.slides--full {
  position: absolute !important;
  height: 100%;
  width: 100%;
  z-index: 1; }
  .slides--full .slick-track, .slides--full .slick-list {
    height: 100% !important; }
  .slides--full .slide {
    display: block;
    height: 100% !important;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    object-fit: cover; }
  .slides--full .slide--anchor-left {
    background-position: left center; }

.block-subNav {
  background-color: #fcf8ed;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem; }
  @media only screen and (min-width: 64rem) {
    .block-subNav {
      padding-bottom: 0; } }

.subNav {
  display: inline-block;
  list-style-type: none;
  padding-left: 0; }
  .subNav li {
    list-style-type: none; }
    @media only screen and (min-width: 64rem) {
      .subNav li {
        display: inline-block; } }
  .subNav li + li {
    margin-top: 0.5rem !important; }
    @media only screen and (min-width: 64rem) {
      .subNav li + li {
        margin-top: 0 !important;
        margin-left: 3.35rem; } }
  .subNav a {
    line-height: 1;
    display: inline-block;
    color: #98453c;
    text-decoration: none;
    font-size: 16px;
    font-size: 1rem;
    padding: 1px;
    border-bottom: 2px solid transparent; }
    .subNav a.selected {
      border-bottom: 2px solid #98453c; }
    @media only screen and (min-width: 64rem) {
      .subNav a {
        padding: 1px 1px 20px;
        border-bottom: 6px solid transparent; }
        .subNav a.selected {
          border-bottom: 6px solid #98453c; } }

.block-topics .row {
  padding-top: 2rem;
  padding-bottom: 4rem; }

.block-topics .col {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.bg-white + .block-topics .row, .well + .block-topics .row {
  border-top: 2px solid #eeeced; }

.gallery-list li {
  display: block;
  padding-right: 18px; }

.gallery-list a {
  display: block; }

.gallery-list a + a {
  margin-top: 0 !important; }

@media only screen and (min-width: 64rem) {
  .js .gallery-list a.selected {
    background-color: #79bab9;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    position: relative;
    outline: 1px solid transparent;
    cursor: default; }
    .js .gallery-list a.selected:after {
      content: '';
      position: absolute;
      right: -18px;
      top: 0;
      width: 36px;
      height: 100%;
      background-image: url(/assets/svg/rotated-square-neptune.svg);
      background-repeat: no-repeat;
      background-size: 36px 100%;
      background-position: right center; } }

.gallery-galleries {
  margin-top: 4rem;
  min-height: 50vh; }
  @media only screen and (min-width: 64rem) {
    .gallery-galleries {
      margin-top: 0; } }

.gallery {
  width: 100%; }
  .gallery + .gallery {
    margin-top: 4rem; }
  @media only screen and (min-width: 64rem) {
    .js .gallery {
      display: none; }
      .js .gallery.selected {
        display: -ms-flexbox;
        display: flex; }
      .js .gallery + .gallery {
        margin-top: 0; } }

.gallery-col {
  margin-top: 1.5rem !important; }

.gallery-item {
  display: block; }
  .gallery-item img {
    display: block; }

.timeline-sub {
  position: relative;
  display: none;
  margin-top: 1rem; }
  .js .timeline-sub {
    display: block; }
  .timeline-sub .slides {
    z-index: 2; }
  .timeline-sub .slick-track {
    -ms-flex-align: end;
        align-items: flex-end; }
  .timeline-sub:before {
    content: ''; }
  .timeline-sub:after {
    content: ''; }

.timeline-timeline {
  position: absolute;
  background-color: #5a9e9d;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 18px; }

.timeline-date-slide {
  margin-top: 0 !important;
  color: #5a9e9d;
  width: 180px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: visible;
  height: 100px !important; }
  .timeline-date-slide:after {
    display: block;
    content: "⚪";
    position: absolute;
    bottom: 12px;
    width: 12px;
    height: 13px;
    text-align: center;
    font-size: 12px;
    background-color: #fff;
    left: 50%;
    margin-left: -6px;
    outline: 5px solid transparent; }
  .timeline-date-slide.slick-current {
    cursor: default; }
    .timeline-date-slide.slick-current:after {
      content: "⚫"; }

.timeline-date-row {
  height: 50px; }

.timeline-date {
  font-size: 33px;
  font-size: 2.0625rem;
  opacity: 0.5;
  filter: alpha(opacity=50);
  letter-spacing: -1px;
  transition: opacity 0.5s linear, font-size 0.5s linear;
  display: inline-block; }
  .slick-current .timeline-date {
    font-size: 50px;
    font-size: 3.125rem;
    opacity: 1;
    filter: alpha(opacity=100); }

.timeline-main {
  margin-top: 2rem; }
  .timeline-main .slick-arrow:before, .timeline-main .slick-arrow:hover:before, .timeline-main .slick-arrow:focus:before {
    color: #5a9e9d; }
  @media only screen and (max-width: 519px) {
    .timeline-main .slick-prev,
    .timeline-main .slick-next {
      height: 40px; }
      .timeline-main .slick-prev:before,
      .timeline-main .slick-next:before {
        font-size: 40px; } }
  @media only screen and (max-width: 519px) {
    .timeline-main .slick-prev {
      left: -0.75rem; } }
  @media only screen and (max-width: 519px) {
    .timeline-main .slick-next {
      right: -0.75rem; } }
  .timeline-main .slick-track {
    -ms-flex-align: start;
        align-items: flex-start; }
  .timeline-main .slide {
    margin-top: 2rem; }
    .js .timeline-main .slide {
      margin-top: 0 !important; }
      .js .timeline-main .slide .timeline-year {
        display: none; }
        .js .timeline-main .slide .timeline-year + * {
          margin-top: 0; }
  .timeline-main .slides:before {
    content: ''; }
  .timeline-main .slides:after {
    content: ''; }

.timeline-image-holder {
  display: block;
  padding-top: 0.3rem; }
  .timeline-image-holder img {
    border-radius: 2px; }

.magHeader {
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
  position: relative;
  z-index: 20; }

.magHeader-heading {
  margin-top: 2rem; }

@media only screen and (min-width: 32.5rem) {
  .magHeader-topButtons {
    text-align: right; } }

@media only screen and (min-width: 48rem) {
  .magHeader-topButtons a {
    margin-top: 0 !important; } }

.magHeader-image {
  margin-top: 1rem; }
  @media only screen and (min-width: 64rem) {
    .magHeader-image {
      position: absolute;
      top: -90px;
      left: 50%;
      transform: translate(-50%, 0); }
      .magHeader-image + .magHeader-heading {
        margin-top: 8rem; } }

.cart-cards {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.cart-card {
  width: 100px;
  height: 80px;
  font-size: 13px;
  font-size: 0.8125rem;
  border: 1px solid #d4d4d4;
  border-radius: 3px;
  margin: 0.75rem !important;
  display: inline-block;
  color: #655763;
  transition: opacity 0.25s, border 0.25s;
  opacity: 0.8;
  filter: alpha(opacity=80); }
  .cart-card div {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center;
    height: 100%;
    width: 100%;
    padding: 5.6px;
    border: 1px solid transparent;
    transition: border 0.25s;
    border-radius: 2px; }
  .cart-card img {
    display: block;
    margin-bottom: auto; }
  .cart-card span {
    margin-top: 0;
    display: block;
    width: 100%;
    text-align: center; }
  .cart-card img + span {
    margin-top: 0.1rem; }
  .cart-card:hover {
    opacity: 0.9;
    filter: alpha(opacity=90); }
  .cart-card.selected {
    opacity: 1;
    filter: alpha(opacity=100);
    border-color: #655763; }
    .cart-card.selected div {
      border-color: #655763; }

ul.address-list {
  list-style: none;
  display: block;
  width: 100%;
  padding-left: 0; }

.address-list * {
  margin-top: 0; }

.address-list li {
  list-style: none;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 1em;
  border-radius: 4px;
  padding: 0.5em; }

.address-list li.selected {
  border-width: 1px;
  border-color: #aaa;
  box-shadow: 5px 5px 5px #eee;
  transition-duration: 0.4s; }

.address-list .address-box {
  display: -ms-flexbox;
  display: flex; }
  .address-list .address-box .address-radio {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    margin-top: 0.3em; }
  .address-list .address-box .address-data {
    -ms-flex-positive: 1;
        flex-grow: 1;
    margin-top: 0; }
  .address-list .address-box label {
    color: #655763; }
  .address-list .address-box .address-edit-button {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    text-align: right; }

.jp-audio {
  padding: 0; }
  @media only screen and (min-width: 64rem) {
    .jp-audio {
      padding-left: 1rem;
      padding-right: 1rem; } }
  .jp-audio .col {
    margin-top: 0 !important; }

.jp-controls {
  -ms-flex: 1;
      flex: 1; }

.jp-progress {
  -ms-flex: 100;
      flex: 100;
  padding-left: 0;
  padding-right: 0; }

.jp-time-holder {
  -ms-flex: 1;
      flex: 1; }

.jp-play,
.jp-pause {
  font-size: 30px;
  font-size: 1.875rem;
  color: #979797; }

.jp-pause {
  margin-top: 0 !important; }

.jp-seek-bar,
.jp-play-bar {
  height: 6px;
  border-radius: 3px;
  cursor: pointer; }

.jp-seek-bar {
  background-color: #eeeced; }

.jp-play-bar {
  background-color: #80797e;
  transition: width 0.25s;
  position: relative; }
  .jp-play-bar .jp-current-time {
    position: absolute;
    font-size: 80%;
    top: -1.25rem;
    right: 0;
    transform: translate(50%, 0);
    cursor: none;
    pointer-events: none;
    display: none; }
    .jp-state-playing .jp-play-bar .jp-current-time {
      display: block; }

.well {
  font-size: 15px;
  font-size: 0.9375rem;
  border: 2px solid #79bab9;
  border-radius: 5px;
  padding: 1rem 1.5rem;
  position: relative; }
  @media only screen and (min-width: 32.5rem) {
    .well {
      padding: 2rem 3rem; } }

.well + .compactListings-holder {
  margin-top: 2rem; }

.well-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  margin: 0; }

.radioGroup label {
  display: inline-block;
  color: #655763; }

.radioGroup--disabled {
  opacity: 0.8;
  filter: alpha(opacity=80); }

.radioGroup-inputHolder {
  width: 10px;
  -ms-flex: 0;
      flex: 0;
  padding-top: 1px; }

.radioGroup-content {
  -ms-flex: 30;
      flex: 30;
  margin-top: 0; }

.results-info {
  color: #655763;
  font-size: 14px;
  font-size: 0.875rem; }

.restoredStateMessage {
  margin-bottom: 2rem; }

.search--clearSearch {
  margin-left: 0.75rem;
  display: inline-block;
  margin-top: 0; }

mark {
  background-color: transparent;
  background-image: linear-gradient(-100deg, rgba(255, 255, 255, 0), rgba(230, 215, 0, 0.7) 65%, rgba(255, 255, 255, 0)); }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-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 {
  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; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("/assets/images/ajax-loader.gif") center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: none;
  height: 75px;
  width: 25px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -37.5px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000;
  text-align: center; }
  .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;
      transition: opacity 0.5s linear, color 0.5s linear;
      color: white; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "chalcedon";
    font-size: 75px;
    font-size: 4.6875rem;
    line-height: 1;
    color: #fff;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    text-align: center;
    display: block;
    position: absolute;
    z-index: 2;
    top: 0; }

.slick-prev {
  left: 0; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: 0; }
  .slick-prev:before {
    content: "❬"; }
    [dir="rtl"] .slick-prev:before {
      content: "❭"; }

.slick-next {
  right: 0; }
  [dir="rtl"] .slick-next {
    left: 0;
    right: auto; }
  .slick-next:before {
    content: "❭"; }
    [dir="rtl"] .slick-next:before {
      content: "❬"; }

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -1.6rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: inline-block;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
      .slick-dots li button:before {
        height: 16px;
        content: "⚪";
        font-family: "chalcedon";
        font-size: 16px;
        text-align: center;
        color: #655763;
        transition: color 0.5s linear;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: #9d4741;
      content: "⚫"; }
  .slick-dots li + li {
    margin-top: 0 !important; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #CCC; }

.mfp-preloader a:hover {
  color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.8;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1; }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #fff; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px; }

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px; }

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444; }

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75); }
  .mfp-arrow-left {
    transform-origin: 0; }
  .mfp-arrow-right {
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-iframe-scaler {
  overflow: visible; }

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.5s ease-out; }

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8; }

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0; }

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.5s ease-out; }

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1; }

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0; }

.mfp-ajax-custom .mfp-content {
  position: relative;
  max-width: 520px; }

.animated {
  animation-duration: 0.25s;
  animation-fill-mode: both; }

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

.animated.hinge {
  animation-duration: 2s; }

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }


.audiobook--chapters span {
  font-size: 16px;
  font-style: italic;
}
.audiobook--chapters p {
  margin-top: 5px;
  margin-bottom: 10px;
}