@charset "UTF-8";
/* @file
 * This file is a custom file that loads all files. Each non-base layer
 * can be disabled.
 *
 * Do not name this file "STARTER.scss". This file should be named
 * THEMENAME.scss.
 *
 * This application file (THEMENAME.scss) is where all the partials are
 * imported.
 *
 * Theme styles are categorized using SMACSS standards. They utilize
 * categorization of styles into various categories. Those categories are the
 * following:
 *
 * - Base: CSS reset/normalize plus HTML element styling.
 * - Layout: Macro arrangement of a web page, including any grid systems.
 * - Modules: Dictate minor layout modules or reusable elements.
 * - States: Describe the appearance of a module in various states.
 * - Theme: Specific customizations for your subtheme.
 * For more information about this new Drupal css file standard, please review
 * the following:
 * - https://drupal.org/node/1887922
 * - http://smacss.com/
 */
/**
 * Foundation for Sites by ZURB
 * Version 6.2.4
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS and IE text size adjust after device orientation change,
   *    without disabling user zoom.
   */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0; }

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

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

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

body {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, Roboto, sans-serif;
  font-weight: normal;
  line-height: 1.3;
  color: #303934;
  background: #004560;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

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

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

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

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

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

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

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

.row {
  max-width: 85.71429rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    margin-left: -0.71429rem;
    margin-right: -0.71429rem; }
    @media screen and (min-width: 40em) {
      .row .row {
        margin-left: -1.07143rem;
        margin-right: -1.07143rem; } }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-left: auto;
      margin-right: auto; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 0.71429rem;
  padding-right: 0.71429rem; }
  @media screen and (min-width: 40em) {
    .column, .columns {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

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

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

.small-1 {
  width: 8.33333%; }

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

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

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

.small-2 {
  width: 16.66667%; }

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

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

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

.small-3 {
  width: 25%; }

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

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

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

.small-4 {
  width: 33.33333%; }

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

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

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

.small-5 {
  width: 41.66667%; }

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

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

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

.small-6 {
  width: 50%; }

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

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

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

.small-7 {
  width: 58.33333%; }

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

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

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

.small-8 {
  width: 66.66667%; }

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

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

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

.small-9 {
  width: 75%; }

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

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

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

.small-10 {
  width: 83.33333%; }

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

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

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

.small-11 {
  width: 91.66667%; }

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

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

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

.small-12 {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.small-centered {
  margin-left: auto;
  margin-right: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

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

@media screen and (min-width: 40em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .expanded.row .medium-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 1.07143rem;
    padding-right: 1.07143rem; }
  .medium-centered {
    margin-left: auto;
    margin-right: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .expanded.row .large-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 1.07143rem;
    padding-right: 1.07143rem; }
  .large-centered {
    margin-left: auto;
    margin-right: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 75em) {
  .xlarge-1 {
    width: 8.33333%; }
  .xlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    width: 16.66667%; }
  .xlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    width: 25%; }
  .xlarge-push-3 {
    position: relative;
    left: 25%; }
  .xlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    width: 33.33333%; }
  .xlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    width: 41.66667%; }
  .xlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    width: 50%; }
  .xlarge-push-6 {
    position: relative;
    left: 50%; }
  .xlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    width: 58.33333%; }
  .xlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    width: 66.66667%; }
  .xlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    width: 75%; }
  .xlarge-push-9 {
    position: relative;
    left: 75%; }
  .xlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    width: 83.33333%; }
  .xlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    width: 91.66667%; }
  .xlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    width: 100%;
    float: left; }
    .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
      float: left; }
  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    width: 50%;
    float: left; }
    .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
      float: left; }
  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
      float: left; }
  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    width: 25%;
    float: left; }
    .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
      float: left; }
  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    width: 20%;
    float: left; }
    .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
      float: left; }
  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
      float: left; }
  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
      float: left; }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
      float: left; }
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .expanded.row .xlarge-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-left: 1.07143rem;
    padding-right: 1.07143rem; }
  .xlarge-centered {
    margin-left: auto;
    margin-right: auto; }
    .xlarge-centered, .xlarge-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 90em) {
  .xxlarge-1 {
    width: 8.33333%; }
  .xxlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xxlarge-offset-0 {
    margin-left: 0%; }
  .xxlarge-2 {
    width: 16.66667%; }
  .xxlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xxlarge-offset-1 {
    margin-left: 8.33333%; }
  .xxlarge-3 {
    width: 25%; }
  .xxlarge-push-3 {
    position: relative;
    left: 25%; }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xxlarge-offset-2 {
    margin-left: 16.66667%; }
  .xxlarge-4 {
    width: 33.33333%; }
  .xxlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xxlarge-offset-3 {
    margin-left: 25%; }
  .xxlarge-5 {
    width: 41.66667%; }
  .xxlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xxlarge-offset-4 {
    margin-left: 33.33333%; }
  .xxlarge-6 {
    width: 50%; }
  .xxlarge-push-6 {
    position: relative;
    left: 50%; }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xxlarge-offset-5 {
    margin-left: 41.66667%; }
  .xxlarge-7 {
    width: 58.33333%; }
  .xxlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xxlarge-offset-6 {
    margin-left: 50%; }
  .xxlarge-8 {
    width: 66.66667%; }
  .xxlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xxlarge-offset-7 {
    margin-left: 58.33333%; }
  .xxlarge-9 {
    width: 75%; }
  .xxlarge-push-9 {
    position: relative;
    left: 75%; }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xxlarge-offset-8 {
    margin-left: 66.66667%; }
  .xxlarge-10 {
    width: 83.33333%; }
  .xxlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xxlarge-offset-9 {
    margin-left: 75%; }
  .xxlarge-11 {
    width: 91.66667%; }
  .xxlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xxlarge-offset-10 {
    margin-left: 83.33333%; }
  .xxlarge-12 {
    width: 100%; }
  .xxlarge-offset-11 {
    margin-left: 91.66667%; }
  .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
    width: 100%;
    float: left; }
    .xxlarge-up-1 > .column:nth-of-type(1n), .xxlarge-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-1 > .column:nth-of-type(1n+1), .xxlarge-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .xxlarge-up-1 > .column:last-child, .xxlarge-up-1 > .columns:last-child {
      float: left; }
  .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
    width: 50%;
    float: left; }
    .xxlarge-up-2 > .column:nth-of-type(1n), .xxlarge-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-2 > .column:nth-of-type(2n+1), .xxlarge-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .xxlarge-up-2 > .column:last-child, .xxlarge-up-2 > .columns:last-child {
      float: left; }
  .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .xxlarge-up-3 > .column:nth-of-type(1n), .xxlarge-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-3 > .column:nth-of-type(3n+1), .xxlarge-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .xxlarge-up-3 > .column:last-child, .xxlarge-up-3 > .columns:last-child {
      float: left; }
  .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
    width: 25%;
    float: left; }
    .xxlarge-up-4 > .column:nth-of-type(1n), .xxlarge-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-4 > .column:nth-of-type(4n+1), .xxlarge-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .xxlarge-up-4 > .column:last-child, .xxlarge-up-4 > .columns:last-child {
      float: left; }
  .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
    width: 20%;
    float: left; }
    .xxlarge-up-5 > .column:nth-of-type(1n), .xxlarge-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-5 > .column:nth-of-type(5n+1), .xxlarge-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .xxlarge-up-5 > .column:last-child, .xxlarge-up-5 > .columns:last-child {
      float: left; }
  .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .xxlarge-up-6 > .column:nth-of-type(1n), .xxlarge-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-6 > .column:nth-of-type(6n+1), .xxlarge-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .xxlarge-up-6 > .column:last-child, .xxlarge-up-6 > .columns:last-child {
      float: left; }
  .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .xxlarge-up-7 > .column:nth-of-type(1n), .xxlarge-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-7 > .column:nth-of-type(7n+1), .xxlarge-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .xxlarge-up-7 > .column:last-child, .xxlarge-up-7 > .columns:last-child {
      float: left; }
  .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .xxlarge-up-8 > .column:nth-of-type(1n), .xxlarge-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-8 > .column:nth-of-type(8n+1), .xxlarge-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .xxlarge-up-8 > .column:last-child, .xxlarge-up-8 > .columns:last-child {
      float: left; }
  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .xxlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .expanded.row .xxlarge-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-left: 1.07143rem;
    padding-right: 1.07143rem; }
  .xxlarge-centered {
    margin-left: auto;
    margin-right: auto; }
    .xxlarge-centered, .xxlarge-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, Roboto, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.3; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    color: #cacaca;
    line-height: 0; }

h1 {
  font-size: 1.71429rem; }

h2 {
  font-size: 1.42857rem; }

h3 {
  font-size: 1.35714rem; }

h4 {
  font-size: 1.28571rem; }

h5 {
  font-size: 1.21429rem; }

h6 {
  font-size: 1.14286rem; }

@media screen and (min-width: 40em) {
  h1 {
    font-size: 2.85714rem; }
  h2 {
    font-size: 1.71429rem; }
  h3 {
    font-size: 1.42857rem; }
  h4 {
    font-size: 1.14286rem; }
  h5 {
    font-size: 1rem; }
  h6 {
    font-size: 0.71429rem; } }

a {
  color: #2199e8;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #1585cf; }
  a img {
    border: 0; }

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

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

li {
  font-size: inherit; }

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

ol {
  margin-left: 1.25rem; }

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

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

blockquote {
  margin: 0 0 1rem;
  padding: 0.64286rem 1.42857rem 0 1.35714rem;
  border-left: 1px solid #cacaca; }
  blockquote, blockquote p {
    line-height: 1.3;
    color: #8a8a8a; }

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

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

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  background-color: #e6e6e6;
  border: 1px solid #cacaca;
  padding: 0.14286rem 0.35714rem 0.07143rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
    margin: 0; }

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

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

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

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.42857rem;
  margin: 1.28571rem 0; }
  .fieldset legend {
    background: #004560;
    padding: 0 0.21429rem;
    margin: 0;
    margin-left: -0.21429rem; }

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

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

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

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

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #2199e8;
  color: #0a0a0a; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #1583cc;
    color: #0a0a0a; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary {
    background-color: #2199e8;
    color: #0a0a0a; }
    .button.primary:hover, .button.primary:focus {
      background-color: #147cc0;
      color: #0a0a0a; }
  .button.secondary {
    background-color: #777;
    color: #0a0a0a; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #5f5f5f;
      color: #0a0a0a; }
  .button.success {
    background-color: #3adb76;
    color: #0a0a0a; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #0a0a0a; }
  .button.warning {
    background-color: #ffae00;
    color: #0a0a0a; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #0a0a0a; }
  .button.alert {
    background-color: #ec5840;
    color: #0a0a0a; }
    .button.alert:hover, .button.alert:focus {
      background-color: #da3116;
      color: #0a0a0a; }
  .button.hollow {
    border: 1px solid #2199e8;
    color: #2199e8; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #0c4d78;
      color: #0c4d78; }
    .button.hollow.primary {
      border: 1px solid #2199e8;
      color: #2199e8; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #0c4d78;
        color: #0c4d78; }
    .button.hollow.secondary {
      border: 1px solid #777;
      color: #777; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #3c3c3c;
        color: #3c3c3c; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #ec5840;
      color: #ec5840; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #881f0e;
        color: #881f0e; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #2199e8;
      color: #0a0a0a; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #2199e8;
        color: #0a0a0a; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #777;
        color: #0a0a0a; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #0a0a0a; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #0a0a0a; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #ec5840;
        color: #0a0a0a; }
  .button.dropdown::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    border-color: #fefefe transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: relative;
    top: 0.4em;
    float: right;
    margin-left: 1em;
    display: inline-block; }
  .button.arrow-only::after {
    margin-left: 0;
    float: none;
    top: -0.1em; }

.accordion {
  list-style-type: none;
  background: #fefefe;
  margin-left: 0; }

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

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

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

.accordion-content {
  padding: 1rem;
  display: none;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  background-color: #fefefe;
  color: #2199e8; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid #e6e6e6; }

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

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

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #2199e8;
  color: #fefefe; }
  .badge.secondary {
    background: #777;
    color: #fefefe; }
  .badge.success {
    background: #3adb76;
    color: #fefefe; }
  .badge.warning {
    background: #ffae00;
    color: #fefefe; }
  .badge.alert {
    background: #ec5840;
    color: #fefefe; }

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

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

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

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

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1; }
  .menu input,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li {
    display: table-cell; }
  .menu.vertical > li {
    display: block; }
  @media screen and (min-width: 40em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-vertical > li {
      display: block; } }
  @media screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-vertical > li {
      display: block; } }
  @media screen and (min-width: 75em) {
    .menu.xlarge-horizontal > li {
      display: table-cell; }
    .menu.xlarge-vertical > li {
      display: block; } }
  @media screen and (min-width: 90em) {
    .menu.xxlarge-horizontal > li {
      display: table-cell; }
    .menu.xxlarge-vertical > li {
      display: block; } }
  .menu.simple li {
    line-height: 1;
    display: inline-block;
    margin-right: 1rem; }
  .menu.simple a {
    padding: 0; }
  .menu.align-right::before, .menu.align-right::after {
    content: ' ';
    display: table; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.expanded {
    width: 100%;
    display: table;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    color: #fefefe;
    background: #2199e8; }

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

.menu-centered {
  text-align: center; }
  .menu-centered > .menu {
    display: inline-block; }

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

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

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

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown.menu.vertical > li > a::after {
  right: 14px;
  margin-top: -3px; }

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

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

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

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

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

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

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

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

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

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 150px;
  z-index: 1;
  background: #fefefe;
  border: 1px solid #cacaca; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px;
    margin-top: -3px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu.js-dropdown-active {
    display: block; }

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

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #2199e8;
  color: #fefefe; }
  .label.secondary {
    background: #777;
    color: #fefefe; }
  .label.success {
    background: #3adb76;
    color: #fefefe; }
  .label.warning {
    background: #ffae00;
    color: #fefefe; }
  .label.alert {
    background: #ec5840;
    color: #fefefe; }

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

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

html,
body {
  height: 100%; }

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

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

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: #004560;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); }

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

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

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

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

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

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

.orbit {
  position: relative; }

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

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

.orbit-figure {
  margin: 0; }

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

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

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

.orbit-previous {
  left: 0; }

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

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

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    content: ' ';
    display: table; }
  .pagination::after {
    clear: both; }
  .pagination li {
    font-size: 1rem;
    margin-right: 0.07143rem;
    border-radius: 0;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media screen and (min-width: 40em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    color: #0a0a0a;
    display: block;
    padding: 0.21429rem 0.71429rem;
    border-radius: 0; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e6e6e6; }
  .pagination .current {
    padding: 0.21429rem 0.71429rem;
    background: #2199e8;
    color: #fefefe;
    cursor: default; }
  .pagination .disabled {
    padding: 0.21429rem 0.71429rem;
    color: #cacaca;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    content: '\2026';
    padding: 0.21429rem 0.71429rem;
    color: #0a0a0a; }

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

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

.progress {
  background-color: #cacaca;
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0; }
  .progress.primary .progress-meter {
    background-color: #2199e8; }
  .progress.secondary .progress-meter {
    background-color: #777; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #ec5840; }

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

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap; }

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

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

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

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

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

.sticky-container {
  position: relative; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0; }
  table thead,
  table tbody,
  table tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  table caption {
    font-weight: bold;
    padding: 0.57143rem 0.71429rem 0.71429rem; }
  table thead {
    background: #f8f8f8;
    color: #303934; }
  table tfoot {
    background: #f1f1f1;
    color: #303934; }
  table thead tr,
  table tfoot tr {
    background: transparent; }
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding: 0.57143rem 0.71429rem 0.71429rem;
    font-weight: bold;
    text-align: left; }
  table tbody tr:nth-child(even) {
    background-color: #f1f1f1; }
  table tbody th,
  table tbody td {
    padding: 0.57143rem 0.71429rem 0.71429rem; }

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

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

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

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

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

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

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

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

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

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

.tabs.primary {
  background: #2199e8; }
  .tabs.primary > li > a {
    color: #fefefe; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #1893e4; }

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

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

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

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

.thumbnail {
  border: solid 4px #fefefe;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: box-shadow 200ms ease-out;
  border-radius: 0;
  margin-bottom: 1rem; }
  .thumbnail:hover, .thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }

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

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

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

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

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

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

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

.top-bar-title {
  float: left;
  margin-right: 1rem; }

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

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

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix::after {
  clear: both; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.field-collection-view-links, .action-links-field-collection-add {
  display: none; }

h1 {
  text-shadow: 1px 1px 2px #004560;
  text-transform: uppercase;
  line-height: 48px; }

h1 {
  color: #ffff00; }

html:not([lang="en"]) .no-passport {
  display: none; }

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  margin-top: -5px; }

.mocko-jumbie {
  white-space: nowrap; }
  .mocko-jumbie > img {
    width: 83px; }
  .mocko-jumbie a img {
    width: 226px; }
  @media screen and (min-width: 40em) {
    .mocko-jumbie > img {
      width: 115px; }
    .mocko-jumbie a img {
      width: 300px; } }

.user-logged-in .main-menu {
  position: relative;
  z-index: 10; }

.main-header {
  background-color: #619ebb;
  background-image: linear-gradient(to bottom, #619ebb, #56B2CF);
  padding-bottom: .25em;
  padding-top: .25em; }
  .main-header a,
  .main-header a:hover,
  .main-header a:visited {
    color: #fefefe; }

.block-linktopromotionspage {
  text-align: right;
  margin-top: 1.6rem; }
  .block-linktopromotionspage .body {
    margin-top: .25em; }

.block-linktopromotionspage .hot-deals {
  background-image: linear-gradient(to bottom, #3e7991, #021d2f);
  border: 1px solid #caeffa;
  color: #fefefe;
  display: inline-block;
  font-size: .9rem;
  font-weight: bold;
  line-height: .8;
  padding: .25em .5em;
  text-transform: uppercase; }
  .block-linktopromotionspage .hot-deals:after {
    content: '\f0da';
    display: inline-block;
    font-family: FontAwesome;
    padding: .25em; }

.block-linktopromotionspage .hot-deals:hover {
  background-image: linear-gradient(to bottom, #f1fbfe, #bbeefe);
  color: #0a0a0a; }

.main-header ul {
  font-weight: bold;
  list-style-type: none;
  text-shadow: 1px 1px 2px #004560;
  text-transform: uppercase;
  margin-left: -5.5rem; }

.show-for-medium div#block-searchform::before {
  display: block;
  position: relative;
  content: '';
  float: left;
  background-image: url(/themes/usvi/images/bird.png);
  height: 34px;
  width: 39px;
  right: -24px;
  top: -24px;
  margin-left: -39px; }

.language-switcher-language-url {
  list-style-type: none;
  margin: 0;
  padding-left: .7rem; }
  .language-switcher-language-url ul {
    list-style-type: none;
    float: right; }

.block-headersubmenu {
  float: right; }

.block-languageswitcher li,
.header-submenu li,
.block-islandsmenu li {
  float: left;
  padding: .25em .5em;
  font-size: .8rem; }

.block-islandsmenu {
  float: right; }
  .block-islandsmenu li {
    font-size: .9rem; }

.header-submenu li:hover,
.block-islandsmenu li:hover {
  background-color: #3e819b; }

.main-header .block-searchform {
  float: right;
  margin-left: 30px; }

.form-search {
  float: left;
  height: 1.28em;
  width: 10em; }

.search-block-form .button {
  color: #0a0a0a;
  height: 1.65em;
  margin-left: .5em;
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle; }

.search-block-form .button:hover {
  color: #0a0a0a; }

.block-languageswitcher {
  clear: both;
  float: right;
  padding: 0;
  position: relative;
  z-index: 1; }
  .block-languageswitcher ul {
    list-style-type: none;
    margin: 0;
    position: relative; }
    .block-languageswitcher ul ul {
      visibility: hidden;
      float: none;
      position: absolute; }
      .block-languageswitcher ul ul li {
        float: none;
        margin-top: 0;
        padding: 0; }

.social-menu ul,
.mobile-social-menu ul {
  list-style-type: none;
  margin: 0; }

.social-menu a {
  color: #fefefe;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 1.3em; }
  .social-menu a:hover, .social-menu a:visited {
    color: #fefefe; }

.sticky {
  width: 100%;
  z-index: 1; }

.top-bar {
  padding: .5rem 0;
  width: 100%; }
  .top-bar .top-bar-left {
    display: inline-block;
    float: none; }
  .top-bar li {
    font-size: .9rem; }

.social-menu,
.mobile-social-menu {
  display: inline-block; }
  .social-menu li,
  .mobile-social-menu li {
    float: left;
    padding-left: .25rem; }
  .social-menu .fa,
  .mobile-social-menu .fa {
    color: #fefefe;
    display: inline-block;
    font-size: 1.6em;
    overflow: hidden;
    white-space: nowrap;
    width: 1.3em; }
    .social-menu .fa:hover, .social-menu .fa:visited,
    .mobile-social-menu .fa:hover,
    .mobile-social-menu .fa:visited {
      color: #fefefe; }
  @media screen and (min-width: 40em) {
    .social-menu,
    .mobile-social-menu {
      padding-bottom: .7rem; } }

.mobile-social-menu > span {
  float: left; }

.mobile-social-menu {
  padding-top: .5rem; }

.fa {
  opacity: .7; }
  .fa:hover {
    opacity: 1; }
  .fa:before {
    display: inline-block;
    text-align: center;
    width: 1.3em; }

.fa.fa-home {
  opacity: 1;
  font-family: Arial, Helvetica, Roboto, sans-serif;
  font-weight: bold; }
  .fa.fa-home:before {
    display: none;
    font-family: fontAwesome; }
  @media screen and (min-width: 40em) {
    .fa.fa-home {
      color: #fefefe;
      opacity: .7;
      overflow: hidden;
      padding: .2rem 0 0;
      width: 2em;
      white-space: nowrap; }
      .fa.fa-home:before {
        display: inline-block;
        font-size: 2em;
        padding-bottom: .7rem;
        text-align: left; } }

.islands-menu li {
  line-height: 0.5rem;
  margin-top: 0.2143rem;
  padding: 0.5rem 0; }
  .islands-menu li:first-child a {
    border-left: 0 none; }
  .islands-menu li a {
    padding: 0 .5rem;
    border-left: 1px solid #a0c6d6; }

.islands-menu li:first-child {
  border-left: 0 none; }

.theme-st-croix .islands-menu li:nth-child(1) a {
  color: #ffff00; }

.theme-st-john .islands-menu li:nth-child(2) a {
  color: #ffff00; }

.theme-st-thomas .islands-menu li:nth-child(3) a {
  color: #ffff00; }

.header-submenu li {
  line-height: 0.5rem;
  margin-top: 0.2143rem;
  padding: 0.5rem 0; }
  .header-submenu li:last-child a {
    border-right: 0 none; }
  .header-submenu li a {
    padding: 0 .5rem;
    border-right: 1px solid #a0c6d6; }

.select-language {
  line-height: .5rem; }
  .select-language > a:after {
    border-style: solid;
    border-width: 4px;
    border-color: #fefefe transparent transparent transparent;
    content: '';
    display: inline-block;
    height: 0;
    margin-left: .5rem;
    vertical-align: sub;
    width: 0; }
  .select-language a {
    display: inline-block;
    padding: .5rem; }
  .select-language:hover ul {
    color: #004560;
    visibility: visible; }
  .select-language a:hover {
    color: #004560;
    background-color: #d1edf8; }
    .select-language a:hover ul {
      background-color: #fefefe; }

.block-languageswitcher {
  margin-top: 0.2143rem; }

.language-selector:hover {
  background-color: #fefefe;
  text-shadow: none; }
  .language-selector:hover a {
    color: #004560; }
    .language-selector:hover a:after {
      border-color: #004560 transparent transparent transparent; }

.language-selector li {
  padding: 0;
  width: 100%; }

.language-selector ul {
  background-color: #fefefe;
  width: 100%; }

.language-selector li ul li {
  border: 0; }
  .language-selector li ul li a {
    text-shadow: none;
    width: 100%; }

@media screen and (max-width: 39.9375em) {
  .breadcrumbs {
    padding: 1rem; }
  h1 {
    line-height: 30px;
    font-size: 2rem; }
  .theme-st-john .full-hero h1::before, .theme-st-croix .full-hero h1::before, .theme-st-thomas .full-hero h1::before {
    display: block;
    line-height: 45px; } }

@media screen and (min-width: 64em) {
  .row.main-menu > .row {
    margin: 0; }
    .row.main-menu > .row > div {
      padding: 0; } }

@media screen and (max-width: 39.9375em) {
  .no-js .top-bar {
    display: none; } }

@media screen and (min-width: 40em) {
  .no-js .title-bar {
    display: none; } }

@media screen and (max-width: 39.9375em) {
  #top-bar-sticky-container .title-bar .title-bar-title {
    width: calc(100% - 32px); }
    #top-bar-sticky-container .title-bar .title-bar-title .no-wrap {
      display: block;
      width: 100%; }
      #top-bar-sticky-container .title-bar .title-bar-title .no-wrap span {
        display: block;
        float: none;
        margin: .2rem auto;
        text-align: center; }
      #top-bar-sticky-container .title-bar .title-bar-title .no-wrap .mobile-social-menu {
        display: block;
        margin: 0 auto;
        width: 196px; } }

.mocko-jumbie > img {
  width: 65px; }

.main-wrapper {
  background-color: #56B2CF; }

.ds-content-wrapper {
  background-image: url(../images/default-repeat.png);
  background-position: 0 -6.143rem;
  background-size: 100% auto; }

.top-bg {
  background-image: url(../images/default-top.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 3.214rem; }

.inner-content {
  background-color: #feffe0;
  padding: 1rem 3rem; }

h3 {
  font-weight: bold; }

.spotlight-text a, .field-content a, .field-wrapper a {
  text-decoration: underline;
  color: #222222;
  word-wrap: break-word; }

.field-content a:hover {
  color: #1585cf; }

a.button {
  text-decoration: none !important; }

.breadcrumbs li:not(:last-child)::after {
  content: "\203A";
  color: #e9ffe9;
  top: -0.07143rem;
  margin: 0 0.4286rem 0 0.2143rem; }

.breadcrumbs ul,
.breadcrumb-half-hero ul {
  padding-left: 3rem;
  padding-right: 3rem; }

@media screen and (min-width: 40em) {
  .breadcrumbs ul,
  .breadcrumb-half-hero ul {
    padding-left: 0rem;
    padding-right: 0rem; } }

.breadcrumbs {
  padding: 1rem 0; }

.breadcrumbs a {
  color: #e9ffe9;
  text-decoration: none; }

.body {
  margin-top: 2.5rem; }

.section-plan-events .paragraph--type--accordion-group {
  background-color: #FEFFE0; }

.node--type-hotel-venue .coe-header {
  color: #004a5f;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px; }

.node--type-home .inner-content {
  background-color: #e5f6fe;
  padding-left: 0;
  padding-right: 0; }
  .node--type-home .inner-content a {
    color: #303934; }

/* BEGIN ST.CROIX STYLES */
.theme-st-croix .theme-target {
  background-color: #2591ce; }

.theme-st-john .theme-target {
  background-color: #1d726d; }

.theme-st-thomas .theme-target {
  background-color: #e5654a; }

.theme-st-croix .hero h1 {
  color: #fe8fdd;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #004560;
  font-size: 2.857rem; }

.theme-st-croix .hero h2 {
  color: #feffe0;
  text-shadow: 1px 1px 2px #004560;
  font-size: 1.643rem;
  line-height: 1.429rem; }

.theme-st-croix .inner-content {
  background-color: #e6f6fe; }

.theme-st-croix .ds-content-wrapper {
  background-color: #0055a6;
  background-image: url("/themes/usvi/images/st-croix-bottom-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom left;
  padding-bottom: 18rem; }

.theme-st-croix .top-bg {
  background-image: url("/themes/usvi/images/bgStCroixTop.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto; }

/* END ST.CROIX STYLES */
/* BEGIN ST.JOHN STYLES */
.theme-st-john .hero h1 {
  color: #d9ff87;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #004560;
  font-size: 2.857rem; }

.theme-st-john .hero h2 {
  color: #feffe0;
  text-shadow: 1px 1px 2px #004560;
  font-size: 1.643rem;
  line-height: 1.429rem; }

.theme-st-john .inner-content {
  background-color: #e9ffe9; }

.theme-st-john .ds-content-wrapper {
  background-color: #8bf47d;
  background-image: url("/themes/usvi/images/st-john-bottom-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom left; }

.theme-st-john .top-bg {
  background-image: url("/themes/usvi/images/bgStJohnTop.jpg") !important;
  background-repeat: no-repeat;
  background-size: 100% auto; }

/* END ST.JOHN STYLES */
/* BEGIN ST.THOMAS STYLES */
.theme-st-thomas .hero h1 {
  color: #ffff00;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #004560;
  font-size: 2.857rem; }

.theme-st-thomas .hero h2 {
  color: #feffe0;
  text-shadow: 1px 1px 2px #004560;
  font-size: 1.643rem;
  line-height: 1.429rem; }

.theme-st-thomas .inner-content {
  background-color: #fdefd8; }

.theme-st-thomas .ds-content-wrapper {
  background-image: url("/themes/usvi/images/st-thomas-bottom-bg.jpg");
  background-color: #fea845;
  background-position: bottom left;
  background-repeat: no-repeat; }

.theme-st-thomas .top-bg {
  background-image: url("/themes/usvi/images/bgStThomasTop.jpg") !important; }

/* END ST.THOMAS STYLES */
@media screen and (min-width: 40em) {
  div.medium-12.column div div.image.quickedit-field, div.medium-12.columns div div.image.quickedit-field {
    float: left;
    width: 24%;
    margin: 2.571rem 1.429rem 0 0; }
  div.medium-12.column div div.body.field.quickedit-field, div.medium-12.columns div div.body.field.quickedit-field {
    float: left;
    width: 71%;
    margin-top: 2.571rem; } }

@media screen and (max-width: 39.9375em) {
  div.medium-12.column div div.image.quickedit-field, div.medium-12.columns div div.image.quickedit-field {
    float: none;
    width: 100%; }
  div.medium-12.column div div.body.field.quickedit-field, div.medium-12.columns div div.body.field.quickedit-field {
    float: none;
    width: 100%; } }

.full-hero-standard {
  color: #fefefe; }
  .full-hero-standard h2 {
    font-weight: bold; }

.mmij-slideshow {
  overflow: hidden; }

.mmij-slider {
  margin: 0; }

.mmij-text {
  margin: 3rem auto 0;
  position: relative; }
  .mmij-text h3 {
    position: relative; }

.mmij-pager {
  margin: 0 auto;
  position: relative;
  width: 640px; }

.ytswap {
  height: 315px;
  margin: 0 auto;
  overflow: hidden;
  width: 560px; }

.bx-default-pager {
  position: absolute;
  text-align: center;
  top: 330px;
  width: 100%; }

.bx-pager-item {
  display: inline-block;
  margin-right: .5em; }

.bx-pager-link {
  border-radius: .4em;
  background-color: #8a8a8a;
  display: inline-block;
  height: .8em;
  text-indent: -9999em;
  width: .8em; }
  .bx-pager-link:hover, .bx-pager-link.active {
    background-color: #2199e8; }

.bx-controls-direction a {
  border-width: 20px;
  border-style: solid;
  display: inline-block;
  height: 0;
  position: absolute;
  top: 140px;
  width: 0;
  text-indent: -9999em; }

.bx-controls-direction .bx-prev {
  border-color: transparent #8a8a8a transparent transparent;
  left: -8px; }
  .bx-controls-direction .bx-prev:hover {
    border-color: transparent #2199e8 transparent transparent; }

.bx-controls-direction .bx-next {
  border-color: transparent transparent transparent #8a8a8a;
  right: -8px; }
  .bx-controls-direction .bx-next:hover {
    border-color: transparent transparent transparent #2199e8; }

.section-explore-islands .top-bg {
  background-image: none; }

.section-explore-islands .ds-content-wrapper {
  background-image: url("/themes/usvi/images/home_bg.jpg");
  background-position: 0 -6.143rem;
  background-size: 100% auto; }

.full-hero-standard {
  padding: 0 !important; }

.section-search ol {
  background-color: #FEFFE0;
  padding: 1.429rem;
  margin: 3.214rem 10.36rem; }

.section-travel-transportation .image, .section-about-the-islands .image, .section-plan-events .image, .theme-st-thomas .image, .theme-st-john .image, .theme-st-croix .image, .spotlight .image, .section-da .image, .section-es div.image {
  float: left;
  margin: 0 1.5rem 1.5rem 0; }

.page-node-302 .spotlight .image {
  float: none;
  margin: 0; }

.node--type-home .inner-content {
  background-color: #E5F6FE; }

.node--type-home .top-bg {
  background-image: none; }

.node--type-home {
  background-image: url("/themes/usvi/images/home_bg.jpg");
  background-position: 0 -6.143rem;
  background-size: 100% auto; }

.node--type-home .ds-content-wrapper {
  background-image: url("/themes/usvi/images/home_bg.jpg");
  background-position: 0 -6.143rem;
  background-size: 100% auto; }

.home-app {
  background-color: #bde1ef;
  margin: 0 1rem; }
  .home-app .home-app-image {
    background-image: url(/themes/usvi/images/home-app.jpg);
    background-repeat: no-repeat;
    float: left;
    height: 65px;
    width: 65px; }
  .home-app .blue-flag-cert {
    background-image: url(/themes/usvi/images/blue-flag.jpg); }

.bxpager {
  float: right; }

.home-app {
  background-color: #bde1ef;
  margin: 0 1rem; }
  .home-app .home-app-image {
    background-image: url(/themes/usvi/images/home-app.jpg);
    background-repeat: no-repeat;
    float: left;
    height: 65px;
    width: 65px; }
  .home-app .blue-flag-cert {
    background-image: url(/themes/usvi/images/blue-flag.jpg); }

.home-app .first-pane,
.home-app .second-pane {
  padding: 1rem; }
  .home-app .first-pane p,
  .home-app .first-pane h4,
  .home-app .second-pane p,
  .home-app .second-pane h4 {
    color: #004560;
    font-size: .9rem;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 5.5rem; }
  .home-app .first-pane a,
  .home-app .first-pane a:visited,
  .home-app .first-pane a:hover,
  .home-app .second-pane a,
  .home-app .second-pane a:visited,
  .home-app .second-pane a:hover {
    color: #004560;
    font-weight: bold; }
  .home-app .first-pane a:after,
  .home-app .second-pane a:after {
    content: '';
    display: inline-block;
    border-width: 4px;
    border-style: solid;
    border-color: transparent transparent transparent #004560;
    margin-left: .5em; }

.hotel-venue-content .field-label {
  float: left; }

.hotel-venue-content .field-label::after {
  content: ': '; }

._request-for-proposal-thanks .inner-content {
  padding: 0 !important;
  background: none !important; }

._request-for-proposal-thanks .top-bg {
  height: 410px; }

._request-for-proposal-thanks .body {
  margin: 0 !important; }

@media screen and (max-width: 39.9375em) {
  .inner-content a {
    overflow-wrap: break-word;
    word-wrap: break-word; }
  .inner-content .field-wrapper h3 img {
    display: block;
    float: none;
    margin: 0 auto 0.5rem !important; } }

@media screen and (max-width: 63.9375em) {
  .ytswap {
    height: auto;
    margin: 0 auto;
    max-width: 560px;
    overflow: hidden;
    position: relative;
    width: 100%; }
    .ytswap:before {
      content: '';
      display: block;
      padding-top: 56.25%;
      position: relative;
      width: 100%; }
    .ytswap img {
      left: 0;
      position: absolute;
      top: 0;
      z-index: 2; }
    .ytswap p {
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
      .ytswap p iframe {
        height: 100%;
        width: 100%; }
  .mmij-text {
    height: 110px;
    margin: .5rem auto 0 auto; }
    .mmij-text h3 {
      font-size: .8rem;
      line-height: .8rem; }
    .mmij-text p {
      font-size: .75rem;
      line-height: .9rem; }
  .bx-default-pager {
    bottom: -10px;
    top: auto; }
  .bx-controls-direction a {
    top: calc(35% - 38px); } }

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

.block-footer {
  text-align: center; }
  .block-footer ul {
    display: inline-block; }
    .block-footer ul li {
      display: inline;
      font-size: 0.7857rem;
      font-weight: bold;
      width: 100%;
      margin: 0 0.3571rem; }
      .block-footer ul li a {
        color: #ced5e2; }

.bottom-bar {
  color: #ced5e2;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 0.8571rem; }

#block-footer ul li a:hover, .bottom-bar a:hover {
  color: #ffffff; }

.top-bar {
  background-color: #fefefe;
  font-weight: bold;
  padding-bottom: 0 !important; }
  .top-bar ul {
    background-color: #fefefe;
    list-style-type: none; }
  .top-bar #search-block-form input {
    height: 25px;
    margin-right: 0rem; }
  .top-bar #search-block-form input.button {
    height: 25px;
    margin-top: -37px; }
  .top-bar .language-selector {
    margin-top: -23px; }
    .top-bar .language-selector li {
      display: inline;
      margin-left: 0;
      padding: 0;
      width: auto; }
      .top-bar .language-selector li ul {
        width: auto;
        float: none;
        display: inline;
        margin-left: 0px; }
        .top-bar .language-selector li ul li {
          width: auto; }
          .top-bar .language-selector li ul li a {
            width: auto; }
  .top-bar .select-language > a::after {
    display: none !important; }
  .top-bar .block-headersubmenu,
  .top-bar .block-islandsmenu {
    float: none; }
    .top-bar .block-headersubmenu .header-submenu,
    .top-bar .block-islandsmenu .header-submenu {
      margin: 0 0 0 8px; }
    .top-bar .block-headersubmenu li:focus, .top-bar .block-headersubmenu li:hover, .top-bar .block-headersubmenu li:visited,
    .top-bar .block-headersubmenu a:focus,
    .top-bar .block-headersubmenu a:hover,
    .top-bar .block-headersubmenu a:visited,
    .top-bar .block-islandsmenu li:focus,
    .top-bar .block-islandsmenu li:hover,
    .top-bar .block-islandsmenu li:visited,
    .top-bar .block-islandsmenu a:focus,
    .top-bar .block-islandsmenu a:hover,
    .top-bar .block-islandsmenu a:visited {
      background-color: #d1edf8 !important;
      color: #004560 !important; }
  .top-bar .top-bar-left .is-drilldown a:focus, .top-bar .top-bar-left .is-drilldown a:hover {
    background-color: #d1edf8 !important;
    color: #004560 !important; }
  @media screen and (min-width: 40em) {
    .top-bar {
      padding-top: 1rem;
      background-color: #004560;
      color: #fefefe; }
      .top-bar ul {
        background-color: #004560; }
      .top-bar a:link, .top-bar a:focus, .top-bar a:hover, .top-bar a:visited {
        color: #fefefe; }
      .top-bar .submenu {
        background-color: #fefefe; }
        .top-bar .submenu li:hover {
          background-color: #d1edf8; }
        .top-bar .submenu a {
          color: #3e819b; }
          .top-bar .submenu a:link, .top-bar .submenu a:focus, .top-bar .submenu a:visited {
            color: #092e70; } }

.no-wrap {
  float: left;
  white-space: nowrap; }
  .no-wrap img {
    float: left; }
  .no-wrap span {
    float: left;
    margin-top: .8rem; }

#main-menu .opens-right > a::after {
  border-color: #ffff00 transparent transparent; }

#main-menu .opens-right > a:hover::after {
  border-color: #092e70 transparent transparent; }

#main-menu .is-dropdown-submenu-item.opens-right > a::after {
  border-color: transparent transparent transparent #3e819b; }

#main-menu .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
  padding-right: 2.25rem; }

#main-menu .dropdown.menu.medium-horizontal > li:hover.is-dropdown-submenu-parent > a {
  background-color: #fefefe;
  color: #092e70; }

#main-menu .dropdown.menu.medium-horizontal > li:hover.is-dropdown-submenu-parent > a::after {
  border-color: #092e70 transparent transparent; }

.title-bar-title img {
  float: left;
  margin-right: .5rem; }

#main-menu .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
  min-width: 0;
  width: 100%;
  top: 92%;
  border: none; }
  #main-menu .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu a {
    color: #3e819b; }
    #main-menu .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu a:hover, #main-menu .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu a:focus, #main-menu .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu a:active {
      color: #092e70; }

#main-menu .menu .is-submenu-item a {
  padding-left: 2rem; }

#main-menu .menu .menulink-parentlanding a, #main-menu .menu .js-drilldown-back a {
  padding-left: 1rem; }

.block-islandsmenu {
  float: none; }

.block-islandsmenu ul {
  margin: 0.2rem 0.5rem; }

@media screen and (min-width: 40em) {
  #main-menu .menu .is-submenu-item a {
    padding-left: 1rem; }
  #main-menu .menu .menulink-parentlanding a {
    display: none; }
  .block-islandsmenu {
    float: right; }
  .block-islandsmenu ul {
    margin: 0 0 1rem -5.5rem; }
  .header-submenu li:last-child a {
    border-right: 1px solid #a0c6d6; } }

#block-bookatripwidget {
  background: #e4f6ff;
  border: 1px solid #c5cdd1;
  display: block;
  overflow: hidden;
  padding: 10px 20px;
  position: relative; }
  #block-bookatripwidget .block-title {
    clear: left;
    color: #004560;
    display: block;
    float: left;
    font-size: 18px;
    line-height: 47px;
    margin: 0;
    text-transform: uppercase; }
    #block-bookatripwidget .block-title:before {
      background-image: url(/themes/usvi/images/stars-titles.png);
      content: '';
      display: inline-block;
      height: 22px;
      margin-right: .25em;
      vertical-align: sub;
      width: 17px; }
    #block-bookatripwidget .block-title + div {
      clear: right;
      display: block;
      float: right;
      width: 77.548%; }
  #block-bookatripwidget .switch {
    display: none; }
  #block-bookatripwidget #book-a-trip {
    font-size: 0; }
  #block-bookatripwidget .date_from,
  #block-bookatripwidget .date_to,
  #block-bookatripwidget .adults,
  #block-bookatripwidget .search {
    display: inline-block;
    margin: 0 3.63% 0 0;
    min-height: 33px;
    position: relative;
    text-align: left;
    vertical-align: top;
    width: 22.272%; }
    #block-bookatripwidget .date_from label,
    #block-bookatripwidget .date_to label,
    #block-bookatripwidget .adults label,
    #block-bookatripwidget .search label {
      color: #000000;
      display: block;
      font-size: 11px;
      font-weight: bold;
      line-height: 1;
      padding: 0;
      text-align: left; }
    #block-bookatripwidget .date_from input,
    #block-bookatripwidget .date_from select,
    #block-bookatripwidget .date_to input,
    #block-bookatripwidget .date_to select,
    #block-bookatripwidget .adults input,
    #block-bookatripwidget .adults select,
    #block-bookatripwidget .search input,
    #block-bookatripwidget .search select {
      border: 1px solid #c5cdd1;
      box-sizing: border-box;
      font-size: 14px;
      height: 36px;
      line-height: 36px;
      margin: 0;
      padding: 0 10px;
      text-indent: 6px;
      transition: border-color 0.2s ease 0s;
      width: 100%; }
    #block-bookatripwidget .date_from button,
    #block-bookatripwidget .date_to button,
    #block-bookatripwidget .adults button,
    #block-bookatripwidget .search button {
      display: block;
      height: 36px;
      padding: 0 5px 0 0;
      position: absolute;
      text-align: right;
      top: 12px;
      vertical-align: top;
      width: 100%; }
  #block-bookatripwidget .search {
    margin: 0; }
    #block-bookatripwidget .search input {
      background: #c2e6ef;
      background: linear-gradient(to bottom, #c2e6ef 0%, #79c1d3 100%);
      border: none;
      color: #00465E;
      cursor: pointer;
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c2e6ef', endColorstr='#79c1d3',GradientType=0 );
      font-size: 13px;
      font-weight: bold;
      height: 36px;
      margin-top: 11px;
      text-transform: uppercase;
      transition: color 0.25s ease 0s, background 0.25s ease 0s;
      width: 100%; }
      #block-bookatripwidget .search input:hover {
        background: #E7F0F3;
        background: linear-gradient(to bottom, #E7F0F3 0%, #A3DDEC 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E7F0F3', endColorstr='#A3DDEC',GradientType=0 ); }
  @media screen and (max-width: 63.9375em) {
    #block-bookatripwidget .block-title {
      float: none;
      left: 20px;
      position: absolute;
      top: 10px; }
      #block-bookatripwidget .block-title + div {
        display: block;
        float: none;
        margin: 0;
        overflow: hidden;
        padding-top: 47px;
        width: 100%; }
    #block-bookatripwidget .switch {
      background: url(/themes/usvi/images/arrow.gif) no-repeat center center;
      cursor: pointer;
      display: block;
      height: 47px;
      line-height: 47px;
      margin: 0;
      padding: 0 20px;
      padding: 0;
      position: absolute;
      right: 20px;
      text-align: center;
      top: 10px;
      width: 47px; }
    #block-bookatripwidget #book-a-trip {
      display: block;
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease 0s; }
      #block-bookatripwidget #book-a-trip.open {
        max-height: 110px; }
    #block-bookatripwidget .date_from,
    #block-bookatripwidget .date_to,
    #block-bookatripwidget .adults,
    #block-bookatripwidget .search {
      margin: 0;
      width: 49%; }
      #block-bookatripwidget .date_from:nth-child(odd),
      #block-bookatripwidget .date_to:nth-child(odd),
      #block-bookatripwidget .adults:nth-child(odd),
      #block-bookatripwidget .search:nth-child(odd) {
        clear: left;
        float: left; }
      #block-bookatripwidget .date_from:nth-child(even),
      #block-bookatripwidget .date_to:nth-child(even),
      #block-bookatripwidget .adults:nth-child(even),
      #block-bookatripwidget .search:nth-child(even) {
        clear: right;
        float: right; }
    #block-bookatripwidget .date_from,
    #block-bookatripwidget .date_to {
      margin: 0 0 1.5% 0; } }
  @media screen and (max-width: 414px) {
    #block-bookatripwidget #book-a-trip.open {
      max-height: 250px; }
    #block-bookatripwidget .date_from,
    #block-bookatripwidget .date_to,
    #block-bookatripwidget .adults,
    #block-bookatripwidget .search {
      width: 100%; }
      #block-bookatripwidget .date_from:nth-child(odd),
      #block-bookatripwidget .date_to:nth-child(odd),
      #block-bookatripwidget .adults:nth-child(odd),
      #block-bookatripwidget .search:nth-child(odd) {
        clear: both;
        float: none; }
      #block-bookatripwidget .date_from:nth-child(even),
      #block-bookatripwidget .date_to:nth-child(even),
      #block-bookatripwidget .adults:nth-child(even),
      #block-bookatripwidget .search:nth-child(even) {
        clear: both;
        float: none; }
    #block-bookatripwidget .date_from,
    #block-bookatripwidget .date_to,
    #block-bookatripwidget .adults {
      margin: 0 0 5% 0; }
    #block-bookatripwidget .search input {
      margin: 0; } }

#ui-datepicker-div {
  background: #ffffff; }

.datepicker.hasDatepicker::-ms-clear {
  display: none !important;
  width: 0 !important;
  height: 0 !important; }

.main-wrapper .button,
.search-block-form .button {
  background-image: linear-gradient(to bottom, #bfe4ee, #7cc3d4);
  border: 0;
  color: #00465E;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase; }

.button:hover,
.button:active {
  background-image: linear-gradient(to bottom, #e7f5f9, #a2d5e1); }

.theme-st-croix .hero a,
.theme-st-john .hero a,
.theme-st-thomas .hero a {
  color: #fefefe; }

.theme-target {
  position: relative; }

.half-hero {
  max-width: none;
  overflow: hidden; }
  .half-hero img {
    max-width: none;
    width: 206%; }
  @media screen and (min-width: 64em) {
    .half-hero img {
      width: 100%; }
    .half-hero h2 {
      text-shadow: 1px 1px 2px #004560; } }

.node--view-mode-no-hero img,
.full-hero img {
  width: 100%; }

.full-hero-standard {
  padding: 2em 0; }

.section-travel-transportation .full-hero-standard {
  padding: 0; }

.half-hero {
  position: relative;
  width: 100%; }

.hero-nest {
  padding-left: 3rem;
  padding-right: 3rem; }
  @media screen and (min-width: 40em) {
    .hero-nest {
      padding-left: 8.33333333333333%;
      padding-right: 8.33333333333333%; } }
  @media screen and (min-width: 64em) {
    .hero-nest {
      width: 50%;
      left: 50%;
      padding-left: 3%;
      padding-right: 10%;
      position: absolute;
      top: 0; }
      .hero-nest h2,
      .hero-nest p {
        color: #fefefe;
        font-weight: bold;
        text-shadow: 1px 1px 2px #004560; }
      .hero-nest h1 {
        margin-top: 4.166666666667%; } }

#main .full-hero-standard .full-hero {
  padding-left: 3rem;
  padding-right: 3rem; }
  @media screen and (min-width: 40em) {
    #main .full-hero-standard .full-hero {
      padding-left: 0;
      padding-right: 0; } }

@media screen and (min-width: 64em) {
  .section-es .hero-nest {
    padding-right: 9%; } }

.theme-target .full-hero .field-wrapper div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  font-size: 0;
  overflow: hidden; }
  .theme-target .full-hero .field-wrapper div:before {
    content: '';
    display: block;
    overflow: hidden;
    padding-top: 22.352%;
    width: 100%; }
  @media screen and (max-width: 74.9375em) {
    .theme-target .full-hero .field-wrapper div:before {
      padding-top: 266px; } }

.theme-target .half-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 266px;
  overflow: hidden; }
  @media screen and (max-width: 63.9375em) {
    .theme-target .half-hero {
      background-position: top left;
      background-size: auto 266px;
      height: auto; } }
  .theme-target .half-hero > .field-wrapper:first-child {
    display: none; }

.theme-target .hero-nest {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 266px;
  position: relative;
  top: 50%;
  transform: perspective(1px) translateY(-50%); }
  @media screen and (max-width: 63.9375em) {
    .theme-target .hero-nest {
      background-image: none;
      margin-top: 291px;
      min-height: auto;
      top: 0;
      transform: none; } }

#hih_gadget {
  left: 0;
  position: relative;
  top: 0;
  width: 100%; }

.inner-content #hih_gadget_wrap {
  float: none;
  height: 75px;
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  z-index: 1; }

@media screen and (max-width: 971px) and (min-width: 506px) {
  .inner-content #hih_gadget_wrap {
    height: 120px; } }

@media screen and (max-width: 505px) and (min-width: 385px) {
  .inner-content #hih_gadget_wrap {
    height: 160px; } }

@media screen and (max-width: 384px) and (min-width: 368px) {
  .inner-content #hih_gadget_wrap {
    height: 150px; } }

@media screen and (max-width: 367px) {
  .inner-content #hih_gadget_wrap {
    height: 180px; } }

.callout {
  margin: 0; }

.promotions-details h2 {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1.429rem;
  font-weight: bold;
  margin-bottom: 0.5rem; }

.views-field-field-st-croix-hotels ul,
.views-field-field-st-john-hotels ul,
.views-field-field-st-thomas-hotels ul {
  list-style: none;
  margin-left: 0;
  padding-left: 1em;
  text-indent: -1em; }

.views-field-field-st-croix-hotels li:before,
.views-field-field-st-john-hotels li:before,
.views-field-field-st-thomas-hotels li:before {
  content: "– \020"; }

/*div.views-field.views-field-field-st-croix-hotels.clearfix div.field-content,div.views-field.views-field-field-st-john-hotels.clearfix div.field-content,div.views-field.views-field-field-st-thomas-hotels.clearfix div.field-content {
		float:left;
	}*/
.views-field-field-st-croix-hotels li,
.views-field-field-st-john-hotels li,
.views-field-field-st-thomas-hotels li {
  float: left;
  margin-right: 3%;
  width: 47%; }

.views-field-field-st-croix-hotels li:nth-child(2n+1),
.views-field-field-st-john-hotels li:nth-child(2n+1),
.views-field-field-st-thomas-hotels li:nth-child(2n+1) {
  clear: left; }

.views-label-field-st-croix-hotels,
.views-label-field-st-john-hotels,
.views-label-field-st-thomas-hotels {
  text-transform: uppercase;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  float: left;
  letter-spacing: -0.07rem;
  display: block;
  width: 7.5rem;
  text-align: right;
  margin-bottom: 0.75rem; }

.views-label-field-st-croix-hotels {
  background-color: #0F88BF; }

.views-label-field-st-john-hotels {
  background-color: #48C05C; }

.views-label-field-st-thomas-hotels {
  background-color: #E0713C; }

.views-field-field-st-john-hotels,
.views-field-field-st-thomas-hotels {
  border-top: 0.1429rem dotted #C3C8B6;
  padding: 0.7143rem 0; }

.views-field-field-st-croix-hotels {
  padding: 0.7143rem 0; }

.views-field-field-partners {
  border-top: 0.1429rem dotted #C3C8B6;
  padding: 0.7143rem 0; }

.views-label-field-partners {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1.429rem;
  font-weight: bold; }

.field-content ul li a {
  color: #303934; }

.field-content ul li a:hover {
  color: #303934;
  text-decoration: underline; }

.field-content img {
  border: 0.4286rem solid #ffffff; }

.image-wrapper {
  float: left;
  padding-right: 1.071rem;
  width: 47%; }

.promotions-details {
  float: left;
  width: 53%; }

.views-field-field-text-block {
  background-color: #F8F6CD;
  padding: 1.071rem;
  margin: 2.357rem 0; }

@media screen and (min-width: 40em) {
  .usvi-promo .views-field-field-partners ul {
    overflow: hidden;
    width: 100%; }
  .usvi-promo .views-field-field-partners li {
    float: left;
    width: 50%;
    padding: 0 2rem; } }

@media screen and (min-width: 64em) {
  .usvi-promo .promo-hotels > div {
    overflow: hidden;
    width: calc(100% - 7.5rem); }
    .usvi-promo .promo-hotels > div ul {
      float: left;
      width: 100%; }
      .usvi-promo .promo-hotels > div ul li {
        width: 50%;
        padding: 0 2rem;
        margin: 0; }
  .usvi-promo .views-field-field-partners li {
    width: 33%; } }

@media screen and (max-width: 39.9375em) {
  .image-wrapper {
    float: none;
    margin-bottom: 1.429rem;
    padding-right: 0;
    width: 100%; }
  .promotions-details {
    float: none;
    margin-bottom: 1.429rem;
    width: 100%; }
  .views-label-field-st-croix-hotels,
  .views-label-field-st-john-hotels,
  .views-label-field-st-thomas-hotels {
    text-transform: uppercase;
    color: #ffffff;
    padding: 0.2857rem 0.7857rem;
    letter-spacing: -0.07143rem;
    display: block;
    width: 7.143rem;
    text-align: right;
    margin-bottom: 0.7143rem; }
  .views-label-field-st-croix-hotels {
    background-color: #0F88BF; }
  .views-label-field-st-john-hotels {
    background-color: #48C05C; }
  .views-label-field-st-thomas-hotels {
    background-color: #E0713C; }
  .views-field-field-st-croix-hotels li,
  .views-field-field-st-john-hotels li,
  .views-field-field-st-thomas-hotels li {
    float: none;
    margin-right: 0;
    width: 100%; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .image-wrapper {
    float: none;
    margin-bottom: 1.429rem;
    padding-right: 0;
    width: 100%; }
  .promotions-details {
    float: none;
    margin-bottom: 1.429rem;
    width: 100%; } }

.views-field.views-field-nothing .field-content {
  font-size: 1.429rem;
  font-weight: 700 !important;
  text-transform: uppercase; }

.views-field.views-field-field-st-croix .views-label-field-st-croix {
  background-color: #0F88BF; }

.views-field.views-field-field-st-john .views-label-field-st-john {
  background-color: #48C05C; }

.views-field.views-field-field-st-thomas .views-label-field-st-thomas {
  background-color: #E0713C; }

.views-field.views-field-field-st-croix, .views-field.views-field-field-st-john, .views-field.views-field-field-st-thomas {
  padding: 0.7143rem 0; }
  .views-field.views-field-field-st-croix span, .views-field.views-field-field-st-john span, .views-field.views-field-field-st-thomas span {
    color: #ffffff;
    display: block;
    float: left;
    letter-spacing: -0.07rem;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.8rem;
    text-align: right;
    text-transform: uppercase;
    width: 7.5rem; }
  .views-field.views-field-field-st-croix .field-content, .views-field.views-field-field-st-john .field-content, .views-field.views-field-field-st-thomas .field-content {
    overflow: hidden;
    width: calc(100% - 7.5rem); }
    .views-field.views-field-field-st-croix .field-content ul, .views-field.views-field-field-st-john .field-content ul, .views-field.views-field-field-st-thomas .field-content ul {
      float: left;
      padding-left: 1em;
      width: 100%; }
      .views-field.views-field-field-st-croix .field-content ul li, .views-field.views-field-field-st-john .field-content ul li, .views-field.views-field-field-st-thomas .field-content ul li {
        float: left;
        margin: 0;
        padding: 0 2rem;
        position: relative;
        width: 50%; }
        .views-field.views-field-field-st-croix .field-content ul li:before, .views-field.views-field-field-st-john .field-content ul li:before, .views-field.views-field-field-st-thomas .field-content ul li:before {
          content: "– \020";
          display: inline-block;
          float: left;
          left: 16px;
          position: absolute; }
        .views-field.views-field-field-st-croix .field-content ul li .paragraph, .views-field.views-field-field-st-john .field-content ul li .paragraph, .views-field.views-field-field-st-thomas .field-content ul li .paragraph {
          display: contents;
          float: left;
          padding-left: 6px;
          word-wrap: break-word; }

.views-field.views-field-field-partners .field-content ul li {
  padding: 0 2rem; }
  .views-field.views-field-field-partners .field-content ul li .paragraph {
    position: relative; }
    .views-field.views-field-field-partners .field-content ul li .paragraph:after {
      content: "– \020";
      display: inline-block;
      left: -14px;
      position: absolute;
      top: 0; }

.views-field.views-field-field-st-john, .views-field.views-field-field-st-thomas {
  border-top: 0.1429rem dotted #C3C8B6; }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .views-field.views-field-field-st-croix .field-content ul li, .views-field.views-field-field-st-john .field-content ul li, .views-field.views-field-field-st-thomas .field-content ul li {
    clear: both;
    display: block;
    float: none;
    overflow: hidden;
    width: auto; }
    .views-field.views-field-field-st-croix .field-content ul li:before, .views-field.views-field-field-st-john .field-content ul li:before, .views-field.views-field-field-st-thomas .field-content ul li:before {
      content: "– \020";
      display: inline-block;
      float: left; }
    .views-field.views-field-field-st-croix .field-content ul li .paragraph, .views-field.views-field-field-st-john .field-content ul li .paragraph, .views-field.views-field-field-st-thomas .field-content ul li .paragraph {
      display: contents;
      float: left;
      padding-left: 6px;
      word-wrap: break-word; } }

@media screen and (max-width: 39.9375em) {
  .views-field.views-field-field-st-croix span, .views-field.views-field-field-st-john span, .views-field.views-field-field-st-thomas span {
    float: none; }
  .views-field.views-field-field-st-croix .field-content, .views-field.views-field-field-st-john .field-content, .views-field.views-field-field-st-thomas .field-content {
    overflow: hidden;
    width: 100%; }
    .views-field.views-field-field-st-croix .field-content ul, .views-field.views-field-field-st-john .field-content ul, .views-field.views-field-field-st-thomas .field-content ul {
      float: none;
      padding-left: 0;
      width: 100%; }
      .views-field.views-field-field-st-croix .field-content ul li, .views-field.views-field-field-st-john .field-content ul li, .views-field.views-field-field-st-thomas .field-content ul li {
        clear: both;
        display: block;
        float: none;
        overflow: hidden;
        width: auto; }
        .views-field.views-field-field-st-croix .field-content ul li:before, .views-field.views-field-field-st-john .field-content ul li:before, .views-field.views-field-field-st-thomas .field-content ul li:before {
          content: "– \020";
          display: inline-block;
          float: left; }
        .views-field.views-field-field-st-croix .field-content ul li .paragraph, .views-field.views-field-field-st-john .field-content ul li .paragraph, .views-field.views-field-field-st-thomas .field-content ul li .paragraph {
          display: contents;
          float: left;
          padding-left: 6px;
          word-wrap: break-word; } }

.pager {
  text-align: center; }

.pagination {
  display: inline-block;
  margin: 0 auto 1rem !important; }
  .pagination li a {
    padding-left: 0.4rem;
    padding-right: 0.4rem; }
  .pagination li.current {
    padding: 0; }

.page-node-302 .paragraph--type--homepage-coe .views-row,
.page-node-302 .paragraph-st-croix .views-row,
.page-node-302 .paragraph-st-john .views-row,
.page-node-302 .paragraph-st-thomas .views-row {
  color: #333333;
  font-size: 0.8571rem;
  font-weight: bold;
  line-height: 0;
  padding: 0.3571rem 0.7143rem 1.071rem; }

.page-node-302 .paragraph--type--homepage-coe .field-wrapper:first-child,
.page-node-302 .paragraph-st-croix .coe-header,
.page-node-302 .paragraph-st-john .coe-header,
.page-node-302 .paragraph-st-thomas .coe-header {
  font-size: 1.071rem; }

.page-node-302 .paragraph-group .column-target:nth-child(2) .paragraph--type--homepage-coe .coe-header,
.page-node-302 .paragraph-group .column-target:nth-child(2) .paragraph--type--homepage-coe .field-wrapper:first-child,
.page-node-302 .paragraph-group .paragraph-st-croix .coe-header,
.page-node-302 .paragraph-group .paragraph-st-croix .field-wrapper:first-child {
  background-color: #0674b3;
  border-bottom: 1px solid #04558a;
  color: #fefefe;
  margin-bottom: -1rem;
  position: relative; }

.page-node-302 .paragraph-st-croix .coe-header:after,
.page-node-302 .paragraph-st-john .coe-header:after,
.page-node-302 .paragraph-st-thomas .coe-header:after {
  content: "\25B6";
  display: block;
  padding-right: .25em;
  position: absolute;
  right: .25em;
  text-align: right;
  text-shadow: 1px 1px 2px #004560; }

.page-node-302 .paragraph--type--homepage-coe .field-wrapper:first-child a {
  color: #fefefe;
  display: block;
  font-weight: bold;
  line-height: 2.5;
  padding-left: .5rem;
  position: relative;
  text-decoration: none;
  width: 100%; }
  .page-node-302 .paragraph--type--homepage-coe .field-wrapper:first-child a:after {
    content: "\25B6";
    display: block;
    padding-right: .25em;
    position: absolute;
    right: .25em;
    top: 50%;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    text-shadow: 1px 1px 2px #004560; }

.page-node-302 .paragraph-group .column-target .views-row a {
  display: block;
  width: 100%; }

.page-node-302 .paragraph-group .column-target:nth-child(2) .field-wrapper:first-child:hover,
.page-node-302 .paragraph-st-croix .coe-header:hover {
  background: #04568A; }

.page-node-302 .column-target:nth-child(2) .views-row,
.page-node-302 .paragraph-st-croix .views-row {
  background: #cfe9f6;
  border-top: 0.07143rem solid #93bdd5; }

.page-node-302 .paragraph-group .column-target:nth-child(2) .views-row:hover,
.page-node-302 .paragraph-st-croix .views-row:hover {
  background: #A8D2E8; }

.page-node-302 .column-target:nth-child(2) h5 a,
.page-node-302 .paragraph-st-croix h5 a {
  color: #3a759d;
  font-size: 1.071rem;
  font-weight: bold;
  text-decoration: none; }

.page-node-302 .column-target:nth-child(3) .paragraph--type--homepage-coe .field-wrapper:first-child,
.page-node-302 .paragraph-st-john .coe-header {
  background: #00a549;
  border-bottom: 0.07143rem solid #017842;
  color: #ffffff;
  display: block;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: -1rem;
  position: relative; }

.page-node-302 .paragraph-group .column-target:nth-child(3) .field-wrapper:first-child:hover,
.page-node-302 .paragraph-st-john .coe-header:hover {
  background: #009747; }

.page-node-302 .column-target:nth-child(3) .views-row,
.page-node-302 .paragraph-st-john .views-row {
  background: #ddffde;
  border-top: 1px solid #9ad7ae; }

.page-node-302 .paragraph-group .column-target:nth-child(3) .views-row:hover,
.page-node-302 .paragraph-st-john .views-row:hover {
  background: #B2EDBF; }

.page-node-302 .column-target:nth-child(3) h5 a,
.page-node-302 .paragraph-st-john h5 a {
  color: #017743;
  font-size: 1.071rem;
  font-weight: bold;
  text-decoration: none; }

.page-node-302 .column-target:nth-child(4) .paragraph--type--homepage-coe .field-wrapper:first-child,
.page-node-302 .paragraph-st-thomas .coe-header {
  background-color: #e66949;
  border-bottom: 0.07143rem solid #bc1d43;
  color: #ffffff;
  display: block;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: -1rem;
  position: relative; }

.page-node-302 .paragraph-group .column-target:nth-child(4) .field-wrapper:first-child:hover,
.page-node-302 .paragraph-st-thomas .coe-header:hover {
  background: #DB5C3C; }

.page-node-302 .column-target:nth-child(4) .views-row,
.page-node-302 .paragraph-st-thomas .views-row {
  background-color: #feefd8;
  border-top: 0.07143rem solid #e9afab; }

.page-node-302 .paragraph-group .column-target:nth-child(4) .views-row:hover,
.page-node-302 .paragraph-st-thomas .views-row:hover {
  background: #F7D3BB; }

.page-node-302 .column-target:nth-child(4) h5 a,
.page-node-302 .paragraph-st-thomas h5 a {
  color: #bd1f42;
  font-size: 1.071rem;
  font-weight: bold;
  text-decoration: none; }

.home-coe .column-target {
  width: 80%;
  margin: 0 auto 2rem; }

@media screen and (min-width: 64em) {
  .home-coe .column-target {
    width: 33.33333%;
    float: left;
    padding-left: 0.71429rem;
    padding-right: 0.71429rem; } }
  @media screen and (min-width: 64em) and (min-width: 40em) {
    .home-coe .column-target {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }

@media screen and (min-width: 64em) {
    .home-coe .column-target:last-child:not(:first-child) {
      float: right; }
    .home-coe .column-target:first-child {
      width: 100%;
      float: left;
      padding-left: 0.71429rem;
      padding-right: 0.71429rem; } }
    @media screen and (min-width: 64em) and (min-width: 40em) {
      .home-coe .column-target:first-child {
        padding-left: 1.07143rem;
        padding-right: 1.07143rem; } }

@media screen and (min-width: 64em) {
      .home-coe .column-target:first-child:last-child:not(:first-child) {
        float: right; } }

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-radius: 0; }

.coe-usvi-accordion h3.ui-accordion-header a {
  border: none;
  color: #fff;
  font-weight: bold; }

.date-wrapper, .time-wrapper, .social-wrapper {
  float: left;
  width: 33%; }

.date-wrapper .month {
  font-size: 2.5rem; }

.social-wrapper {
  margin: 0 0 1.429rem 2.143rem; }

.theme-st-croix .coe-usvi-accordion h3.ui-accordion-header {
  background-color: #0674b2;
  border-bottom: 0.07143rem solid #04558a;
  border-top: 0.07143rem solid #acc7e1;
  color: #fff;
  font-weight: bold;
  padding: 0.7857rem 2.143rem 0.6429rem;
  margin: 0; }

.theme-st-croix .coe-usvi-accordion h3.ui-accordion-header:hover {
  background-color: #04568a; }

.theme-st-croix .coe-usvi-accordion h3.ui-state-active {
  background-color: #04568a; }

.theme-st-croix .date-wrapper {
  width: 8.929rem;
  text-transform: uppercase;
  font-size: 1.143rem;
  font-weight: bold;
  color: #fff;
  background-color: #04568A;
  text-align: center;
  padding: 1.071rem; }

.theme-st-croix .time-wrapper {
  color: #0674b2;
  font-size: 1.429rem;
  font-weight: bold;
  margin: 0 0 10px 2.143rem; }

.theme-st-croix .coe-usvi-accordion h5 a {
  color: #0674b2;
  font-size: 1.429rem;
  font-weight: bold; }

.theme-st-john .coe-usvi-accordion h3.ui-accordion-header {
  background-color: #00a549;
  border-bottom: 0.07143rem solid #086f40;
  border-top: 0.07143rem solid #62ce82;
  color: #fff;
  font-weight: bold;
  padding: 0.7857rem 2.143rem 0.6429rem;
  margin: 0; }

.theme-st-john .coe-usvi-accordion h3.ui-accordion-header:hover {
  background-color: #086f40; }

.theme-st-john .coe-usvi-accordion h3.ui-state-active {
  background-color: #086f40; }

.theme-st-john .date-wrapper {
  width: 8.929rem;
  text-transform: uppercase;
  font-size: 1.143rem;
  font-weight: bold;
  color: #fff;
  background-color: #086f40;
  text-align: center;
  padding: 1.071rem; }

.theme-st-john .time-wrapper {
  color: #00a549;
  font-size: 1.429rem;
  font-weight: bold;
  margin: 0 0 10px 2.143rem; }

.theme-st-john .coe-usvi-accordion h5 a {
  color: #00a549;
  font-size: 1.429rem;
  font-weight: bold; }

.theme-st-thomas .coe-usvi-accordion h3.ui-accordion-header {
  background-color: #e6694a;
  border-bottom: 0.07143rem solid #bc1e43;
  border-top: 0.07143rem solid #eb876e;
  color: #fff;
  font-weight: bold;
  padding: 0.7857rem 2.143rem 0.6429rem;
  margin: 0; }

.theme-st-thomas .coe-usvi-accordion h3.ui-accordion-header:hover {
  background-color: #bc1e43; }

.theme-st-thomas .coe-usvi-accordion h3.ui-state-active {
  background-color: #bc1e43; }

.theme-st-thomas .date-wrapper {
  width: 8.929rem;
  text-transform: uppercase;
  font-size: 1.143rem;
  font-weight: bold;
  color: #fff;
  background-color: #bc1e43;
  text-align: center;
  padding: 1.071rem; }

.theme-st-thomas .time-wrapper {
  color: #e6694a;
  font-size: 1.429rem;
  font-weight: bold;
  margin: 0 0 10px 2.143rem; }

.theme-st-thomas .coe-usvi-accordion h5 a {
  color: #e6694a;
  font-size: 1.429rem;
  font-weight: bold; }

.node--type-coe-landing .paragraph-group {
  margin: -51px -42px -14px; }

.node--type-coe-landing .inner-content {
  margin-top: 51px; }

.coe-usvi-accordion h3.ui-accordion-header {
  background-image: url("/themes/usvi/images/coe_arrows.png");
  background-repeat: no-repeat;
  background-position: 967px 13px; }

.coe-usvi-accordion h3.ui-state-active,
.coe-usvi-accordion h3.ui-state-hover {
  background-position: 967px -69px; }

.coe-usvi-accordion .ui-accordion-header-icon {
  display: none; }

.coe-accordion-content .row {
  margin: 10px 0 0 0; }

.ui-accordion .coe-accordion-content.ui-accordion-content {
  margin-right: 0;
  padding: 1em; }

.node--type-meetings-incentives .paragraph--type--accordion-group {
  background-color: transparent; }

.node--type-meetings-incentives .coe-header {
  font-size: 1.14286rem;
  font-weight: bold; }

.path-trip-planner section h1,
.path-trip-planner section h3 {
  width: 83.3333%;
  margin: 10px auto; }

.path-trip-planner section .item {
  border-bottom: 0.1429rem dotted #004a5f;
  float: left;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  margin: 0 1.5rem 1.5rem 0;
  padding-bottom: 0.7143rem;
  width: 100%; }
  @media screen and (min-width: 40em) {
    .path-trip-planner section .item {
      width: 47%; } }

.path-trip-planner section #trip-planner-contact-form {
  clear: both;
  margin: 0 auto; }
  .path-trip-planner section #trip-planner-contact-form input {
    float: inherit;
    width: auto; }
  .path-trip-planner section #trip-planner-contact-form label {
    float: inherit;
    text-align: left;
    width: 80%; }
    @media screen and (min-width: 40em) {
      .path-trip-planner section #trip-planner-contact-form label {
        width: 33%; } }
  .path-trip-planner section #trip-planner-contact-form #edit-categories--wrapper legend {
    text-align: left; }
  .path-trip-planner section #trip-planner-contact-form #edit-categories--wrapper label,
  .path-trip-planner section #trip-planner-contact-form #edit-categories--wrapper input {
    padding: 0;
    font-weight: normal; }
  .path-trip-planner section #trip-planner-contact-form .js-form-type-textfield,
  .path-trip-planner section #trip-planner-contact-form .js-form-type-email {
    clear: none !important;
    float: left;
    width: 100%;
    margin: 0 5%; }
    .path-trip-planner section #trip-planner-contact-form .js-form-type-textfield input,
    .path-trip-planner section #trip-planner-contact-form .js-form-type-textfield label,
    .path-trip-planner section #trip-planner-contact-form .js-form-type-email input,
    .path-trip-planner section #trip-planner-contact-form .js-form-type-email label {
      width: 100%; }
    @media screen and (min-width: 40em) {
      .path-trip-planner section #trip-planner-contact-form .js-form-type-textfield,
      .path-trip-planner section #trip-planner-contact-form .js-form-type-email {
        width: 40%; } }

.path-trip-planner ._trip-planner_thanks,
.path-trip-planner ._es_trip-planner_thanks,
.path-trip-planner ._da_trip-planner_thanks {
  background-color: #feffe0;
  padding: 2rem; }
  @media screen and (min-width: 64em) {
    .path-trip-planner ._trip-planner_thanks,
    .path-trip-planner ._es_trip-planner_thanks,
    .path-trip-planner ._da_trip-planner_thanks {
      margin: 0 auto 5rem;
      width: 80%; } }

.trip-planner {
  color: #004560;
  padding: .25em .5em .25em 0; }
  .trip-planner:before {
    border-right: 1px solid #fafafa;
    content: '\f067';
    font-family: fontAwesome;
    font-weight: normal;
    padding-left: .5em;
    padding-right: .5em;
    margin-right: .5em;
    text-align: center; }

.trip-planner.active:before {
  content: '\f068'; }

.contact-view:nth-child(2n+1) {
  clear: both; }

.views-row ul {
  list-style-type: none;
  margin: 0; }

.contact-view .views-field-field-image {
  width: 129px; }

@media screen and (min-width: 40em) {
  .section-travel-transportation .views-row, ._es_travel-transportation_island-hopping .views-row, ._da_travel-transportation_island-hopping .views-row, .section-official-business .views-row, ._es_travel-transportation_from-here .views-row, ._da_travel-transportation_from-here .views-row {
    float: left;
    margin: 0 1.5rem 1.5rem 0;
    width: 47%;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 0.875rem;
    font-weight: normal;
    border-bottom: 0.1429rem dotted #004a5f;
    padding-bottom: 0.7143rem; }
  .section-travel-transportation .views-row:nth-child(2n+1), .section-da .views-row:nth-child(2n+1), .section-es .views-row:nth-child(2n+1), .section-official-business .views-row:nth-child(2n+1), ._es_travel-transportation_island-hopping .views-row:nth-child(2n+1), ._da_travel-transportation_island-hopping .views-row:nth-child(2n+1), ._es_travel-transportation_from-here .views-row:nth-child(2n+1), ._da_travel-transportation_from-here .views-row:nth-child(2n+1) {
    clear: left; }
  .section-travel-transportation .views-row .field-content:first-child, .section-da .views-row span.field-content, .section-es .views-row span.field-content, .section-official-business span.field-content {
    font-weight: bold; }
  .section-travel-transportation p,
  .section-travel-transportation .views-field-field-phone span,
  .section-travel-transportation .views-field-field-link a,
  .section-travel-transportation .views-field-field-contact div {
    font-weight: normal !important; } }

@media screen and (min-width: 40em) and (max-width: 39.9375em) {
  .section-travel-transportation .views-row, .section-da .views-row, .section-es .views-row, .section-official-business .views-row, ._es_travel-transportation_island-hopping .views-row, ._da_travel-transportation_island-hopping .views-row, ._es_travel-transportation_from-here .views-row, ._da_travel-transportation_from-here .views-row {
    width: 100%; } }

.section-travel-transportation .coe-header, ._es_travel-transportation_from-here .coe-header, ._da_travel-transportation_from-here .coe-header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px; }

._da_where-to-stay_stjohn .views-row .views-field.views-field-field-link,
._da_where-to-stay_stjohn .views-row .views-field.views-field-field-date-time,
._da_where-to-stay_stjohn .views-row .views-field.views-field-field-can-add-to-trip-planner,
._da_where-to-stay_stjohn .views-row .views-field.views-field-title,
._da_where-to-stay_stjohn .views-row .views-field.views-field-field-phone,
._da_where-to-stay_stjohn .views-row .views-field-field-descriptive-text,
._da_where-to-stay_stjohn .views-row .views-field-field-toll-free,
._da_where-to-stay_stjohn .views-row .views-field-field-fax,
._da_where-to-stay_stjohn .views-row .views-field-field-location, ._es_where-to-stay_stjohn .views-row .views-field.views-field-field-link,
._es_where-to-stay_stjohn .views-row .views-field.views-field-field-date-time,
._es_where-to-stay_stjohn .views-row .views-field.views-field-field-can-add-to-trip-planner,
._es_where-to-stay_stjohn .views-row .views-field.views-field-title,
._es_where-to-stay_stjohn .views-row .views-field.views-field-field-phone,
._es_where-to-stay_stjohn .views-row .views-field-field-descriptive-text,
._es_where-to-stay_stjohn .views-row .views-field-field-toll-free,
._es_where-to-stay_stjohn .views-row .views-field-field-fax,
._es_where-to-stay_stjohn .views-row .views-field-field-location, ._where-to-stay_stjohn .views-row .views-field.views-field-field-link,
._where-to-stay_stjohn .views-row .views-field.views-field-field-date-time,
._where-to-stay_stjohn .views-row .views-field.views-field-field-can-add-to-trip-planner,
._where-to-stay_stjohn .views-row .views-field.views-field-title,
._where-to-stay_stjohn .views-row .views-field.views-field-field-phone,
._where-to-stay_stjohn .views-row .views-field-field-descriptive-text,
._where-to-stay_stjohn .views-row .views-field-field-toll-free,
._where-to-stay_stjohn .views-row .views-field-field-fax,
._where-to-stay_stjohn .views-row .views-field-field-location {
  margin-left: 150px; }

@media screen and (max-width: 39.9375em) {
  .paragraph--type--tab-group .views-row {
    margin-bottom: 20px !important; }
    .paragraph--type--tab-group .views-row:last-child {
      margin-bottom: 0px !important; }
  .paragraph--type--tab-group .views-field.views-field-field-image {
    clear: both;
    display: block;
    overflow: hidden; }
  .paragraph--type--tab-group .views-field.views-field-field-can-add-to-trip-planner, .paragraph--type--tab-group .views-field.views-field-field-link, .paragraph--type--tab-group .views-field.views-field-field-phone, .paragraph--type--tab-group .views-field.views-field-field-toll-free, .paragraph--type--tab-group .views-field.views-field-title {
    clear: both;
    display: block;
    overflow: hidden;
    margin-left: 0; }
  ._da_where-to-stay_stjohn .views-row .views-field.views-field-field-can-add-to-trip-planner, ._da_where-to-stay_stjohn .views-row .views-field.views-field-field-link, ._da_where-to-stay_stjohn .views-row .views-field.views-field-field-phone, ._da_where-to-stay_stjohn .views-row .views-field.views-field-field-toll-free, ._da_where-to-stay_stjohn .views-row .views-field.views-field-title,
  ._es_where-to-stay_stjohn .views-row .views-field.views-field-field-can-add-to-trip-planner,
  ._es_where-to-stay_stjohn .views-row .views-field.views-field-field-link,
  ._es_where-to-stay_stjohn .views-row .views-field.views-field-field-phone,
  ._es_where-to-stay_stjohn .views-row .views-field.views-field-field-toll-free,
  ._es_where-to-stay_stjohn .views-row .views-field.views-field-title,
  ._where-to-stay_stjohn .views-row .views-field.views-field-field-can-add-to-trip-planner,
  ._where-to-stay_stjohn .views-row .views-field.views-field-field-link,
  ._where-to-stay_stjohn .views-row .views-field.views-field-field-phone,
  ._where-to-stay_stjohn .views-row .views-field.views-field-field-toll-free,
  ._where-to-stay_stjohn .views-row .views-field.views-field-title {
    margin-left: 0; } }

.page-node-1262 .inner-content,
.page-node-1263 .inner-content,
.page-node-1264 .inner-content {
  padding: 0; }

.page-node-1262 .content-wrapper > .body,
.page-node-1263 .content-wrapper > .body,
.page-node-1264 .content-wrapper > .body {
  margin: 0; }

.page-node-1262 iframe,
.page-node-1263 iframe,
.page-node-1264 iframe {
  width: 100%; }

@media screen and (max-width: 39.9375em) {
  .page-node-1262 iframe,
  .page-node-1263 iframe,
  .page-node-1264 iframe {
    display: block;
    margin: 2rem auto;
    width: 85% !important; } }

.page-node-1262 .column-target,
.page-node-1263 .column-target,
.page-node-1264 .column-target {
  width: 100%; }
  .page-node-1262 .column-target .paragraph--type--image-spotlight,
  .page-node-1263 .column-target .paragraph--type--image-spotlight,
  .page-node-1264 .column-target .paragraph--type--image-spotlight {
    width: 80%;
    margin: 0 auto; }
  @media screen and (min-width: 64em) {
    .page-node-1262 .column-target,
    .page-node-1263 .column-target,
    .page-node-1264 .column-target {
      width: 33.33333%;
      float: left;
      padding-left: 0.71429rem;
      padding-right: 0.71429rem; } }
  @media screen and (min-width: 64em) and (min-width: 40em) {
    .page-node-1262 .column-target,
    .page-node-1263 .column-target,
    .page-node-1264 .column-target {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }
  @media screen and (min-width: 64em) {
      .page-node-1262 .column-target:last-child:not(:first-child),
      .page-node-1263 .column-target:last-child:not(:first-child),
      .page-node-1264 .column-target:last-child:not(:first-child) {
        float: right; } }

#edit-markup-elements, #edit-standard-elements, #edit-html5-elements, #edit-date-elements, #edit-custom-elements, #edit-drupal-elements {
  border: 0.07143rem solid #eedb94;
  clear: both;
  margin: 1.429rem 0;
  padding: 1.429rem; }

.details-title {
  background-color: #feffe0;
  color: #8a8a8a;
  font-size: 1.143rem;
  font-weight: bold;
  padding: 0.2143rem;
  position: relative;
  top: -2.214rem; }

.details-title:hover {
  color: #8a8a8a; }

label, .fieldset-legend {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #000000; }

.form-textarea,
.form-text,
.for-tel,
.form-select,
.form-email,
.form-number,
.form-url,
.form-date,
.form-time,
.form-search,
#edit-select,
#edit-weight {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: normal;
  color: #0a0a0a;
  padding: 0 0.4286rem; }

select {
  background-position: right center; }

.form-composite .form-item {
  padding: 0; }

label.form-required:after {
  content: '*';
  color: red;
  font-weight: bold; }

.main-wrapper .yamlform-submission-survey-form .yaml-checkboxes legend,
.main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes legend,
.main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes legend {
  width: 100%;
  float: left;
  padding-left: 0.71429rem;
  padding-right: 0.71429rem;
  clear: both;
  text-align: left; }
  @media screen and (min-width: 40em) {
    .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes legend,
    .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes legend,
    .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes legend {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes legend:last-child:not(:first-child),
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes legend:last-child:not(:first-child),
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes legend:last-child:not(:first-child) {
    float: right; }

.main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper,
.main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper,
.main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper {
  max-width: 85.71429rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  float: left;
  padding-left: 0.71429rem;
  padding-right: 0.71429rem;
  width: 100%;
  float: left;
  padding-left: 0.71429rem;
  padding-right: 0.71429rem; }
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper::before, .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper::after,
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper::before,
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper::after,
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper::before,
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper::after {
    content: ' ';
    display: table; }
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper::after,
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper::after,
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper::after {
    clear: both; }
  @media screen and (min-width: 40em) {
    .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper,
    .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper,
    .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper:last-child:not(:first-child),
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper:last-child:not(:first-child),
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper:last-child:not(:first-child) {
    float: right; }
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper, .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper:last-child,
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper,
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper:last-child,
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper,
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper:last-child {
    float: none; }
  @media screen and (min-width: 40em) {
    .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper,
    .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper,
    .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper:last-child:not(:first-child),
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper:last-child:not(:first-child),
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper:last-child:not(:first-child) {
    float: right; }
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper input,
  .main-wrapper .yamlform-submission-survey-form .yaml-checkboxes .fieldset-wrapper label,
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper input,
  .main-wrapper .yamlform-submission-encuesta-form .yaml-checkboxes .fieldset-wrapper label,
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper input,
  .main-wrapper .yamlform-submission-sporgeskema-form .yaml-checkboxes .fieldset-wrapper label {
    display: inline;
    float: none;
    width: auto; }

.main-wrapper #yamlform-submission-procrastination-pays-form #edit-actions,
.main-wrapper #yamlform-submission-la-dilacion-pays-form #edit-actions,
.main-wrapper #yamlform-submission-family-reunion-form #edit-actions,
.main-wrapper #yamlform-submission-hooked-on-st-croix-form #edit-actions,
.main-wrapper #yamlform-submission-hooked-on-st-croix-spanish-form #edit-actions,
.main-wrapper #yamlform-submission-smoleri-pays-form #edit-actions,
.main-wrapper #yamlform-submission-reunion-familiar-form #edit-actions,
.main-wrapper #yamlform-submission-familiesammenforingn-form #edit-actions,
.main-wrapper #yamlform-submission-hooked-on-st-croix-danish-form #edit-actions {
  clear: both;
  padding-top: 90px; }

.main-wrapper #yamlform-submission-contact-form #edit-other-destinations--wrapper,
.main-wrapper #yamlform-submission-contactenos-form #edit-other-destinations--wrapper,
.main-wrapper #yamlform-submission-kontakt-os-form #edit-other-destinations--wrapper,
.main-wrapper #yamlform-submission-contactenos-form #edit-would-you-like-to-receive-information-about-special-promotions--wrapper,
.main-wrapper #yamlform-submission-kontakt-os-form #edit-would-you-like-to-receive-information-about-special-promotions--wrapper {
  clear: both !important; }

.main-wrapper #yamlform-submission-survey-form input,
.main-wrapper #yamlform-submission-survey-form label,
.main-wrapper .yamlform-submission-encuesta-form input,
.main-wrapper .yamlform-submission-encuesta-form label,
.main-wrapper .yamlform-submission-sporgeskema-form input,
.main-wrapper .yamlform-submission-sporgeskema-form label,
.main-wrapper #yamlform-submission-cruise-ship-form input,
.main-wrapper #yamlform-submission-cruise-ship-form label {
  display: inline !important;
  float: none !important;
  width: auto !important; }

.main-wrapper #yamlform-submission-survey-form fieldset,
.main-wrapper .yamlform-submission-encuesta-form fieldset,
.main-wrapper .yamlform-submission-sporgeskema-form fieldset,
.main-wrapper #yamlform-submission-cruise-ship-form fieldset {
  margin: 20px 0; }

.main-wrapper #yamlform-submission-survey-form .fieldset-wrapper,
.main-wrapper .yamlform-submission-encuesta-form .fieldset-wrapper,
.main-wrapper .yamlform-submission-sporgeskema-form .fieldset-wrapper,
.main-wrapper #yamlform-submission-cruise-ship-form .fieldset-wrapper {
  display: inline-block;
  float: left; }

.main-wrapper #yamlform-submission-survey-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-yo,
.main-wrapper #yamlform-submission-survey-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-you,
.main-wrapper #yamlform-submission-survey-form #edit-12-is-there-anything-else-you-would-like-to-share-with-us-about-,
.main-wrapper .yamlform-submission-encuesta-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-yo,
.main-wrapper .yamlform-submission-encuesta-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-you,
.main-wrapper .yamlform-submission-encuesta-form #edit-12-is-there-anything-else-you-would-like-to-share-with-us-about-,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-yo,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-you,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-12-is-there-anything-else-you-would-like-to-share-with-us-about-,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-yo,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-is-there-anything-else-you-would-like-to-share-with-us-about-you,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-12-is-there-anything-else-you-would-like-to-share-with-us-about- {
  width: 100%; }

.main-wrapper #yamlform-submission-survey-form #edit-survey-name--wrapper,
.main-wrapper #yamlform-submission-survey-form #edit-your-email-address,
.main-wrapper #yamlform-submission-survey-form #edit-address--wrapper,
.main-wrapper #yamlform-submission-survey-form .form-item-telephone,
.main-wrapper #yamlform-submission-survey-form #edit-name--wrapper,
.main-wrapper #yamlform-submission-survey-form #edit-email,
.main-wrapper #yamlform-submission-survey-form #edit-address--wrapper,
.main-wrapper #yamlform-submission-survey-form .form-item-phone,
.main-wrapper .yamlform-submission-encuesta-form #edit-survey-name--wrapper,
.main-wrapper .yamlform-submission-encuesta-form #edit-your-email-address,
.main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper,
.main-wrapper .yamlform-submission-encuesta-form .form-item-telephone,
.main-wrapper .yamlform-submission-encuesta-form #edit-name--wrapper,
.main-wrapper .yamlform-submission-encuesta-form #edit-email,
.main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper,
.main-wrapper .yamlform-submission-encuesta-form .form-item-phone,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-survey-name--wrapper,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-your-email-address,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper,
.main-wrapper .yamlform-submission-sporgeskema-form .form-item-telephone,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-name--wrapper,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-email,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper,
.main-wrapper .yamlform-submission-sporgeskema-form .form-item-phone,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-survey-name--wrapper,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-your-email-address,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper,
.main-wrapper #yamlform-submission-cruise-ship-form .form-item-telephone,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-name--wrapper,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-email,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper,
.main-wrapper #yamlform-submission-cruise-ship-form .form-item-phone {
  width: 100%;
  display: block; }
  .main-wrapper #yamlform-submission-survey-form #edit-survey-name--wrapper fieldset,
  .main-wrapper #yamlform-submission-survey-form #edit-your-email-address fieldset,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper fieldset,
  .main-wrapper #yamlform-submission-survey-form .form-item-telephone fieldset,
  .main-wrapper #yamlform-submission-survey-form #edit-name--wrapper fieldset,
  .main-wrapper #yamlform-submission-survey-form #edit-email fieldset,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper fieldset,
  .main-wrapper #yamlform-submission-survey-form .form-item-phone fieldset,
  .main-wrapper .yamlform-submission-encuesta-form #edit-survey-name--wrapper fieldset,
  .main-wrapper .yamlform-submission-encuesta-form #edit-your-email-address fieldset,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper fieldset,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-telephone fieldset,
  .main-wrapper .yamlform-submission-encuesta-form #edit-name--wrapper fieldset,
  .main-wrapper .yamlform-submission-encuesta-form #edit-email fieldset,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper fieldset,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-phone fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-survey-name--wrapper fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-your-email-address fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-telephone fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-name--wrapper fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-email fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper fieldset,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-phone fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-survey-name--wrapper fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-your-email-address fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-telephone fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-name--wrapper fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-email fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper fieldset,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-phone fieldset {
    width: 100% !important; }
  .main-wrapper #yamlform-submission-survey-form #edit-survey-name--wrapper legend,
  .main-wrapper #yamlform-submission-survey-form #edit-your-email-address legend,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper legend,
  .main-wrapper #yamlform-submission-survey-form .form-item-telephone legend,
  .main-wrapper #yamlform-submission-survey-form #edit-name--wrapper legend,
  .main-wrapper #yamlform-submission-survey-form #edit-email legend,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper legend,
  .main-wrapper #yamlform-submission-survey-form .form-item-phone legend,
  .main-wrapper .yamlform-submission-encuesta-form #edit-survey-name--wrapper legend,
  .main-wrapper .yamlform-submission-encuesta-form #edit-your-email-address legend,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper legend,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-telephone legend,
  .main-wrapper .yamlform-submission-encuesta-form #edit-name--wrapper legend,
  .main-wrapper .yamlform-submission-encuesta-form #edit-email legend,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper legend,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-phone legend,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-survey-name--wrapper legend,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-your-email-address legend,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper legend,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-telephone legend,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-name--wrapper legend,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-email legend,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper legend,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-phone legend,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-survey-name--wrapper legend,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-your-email-address legend,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper legend,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-telephone legend,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-name--wrapper legend,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-email legend,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper legend,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-phone legend {
    display: none; }
  .main-wrapper #yamlform-submission-survey-form #edit-survey-name--wrapper label,
  .main-wrapper #yamlform-submission-survey-form #edit-your-email-address label,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper label,
  .main-wrapper #yamlform-submission-survey-form .form-item-telephone label,
  .main-wrapper #yamlform-submission-survey-form #edit-name--wrapper label,
  .main-wrapper #yamlform-submission-survey-form #edit-email label,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper label,
  .main-wrapper #yamlform-submission-survey-form .form-item-phone label,
  .main-wrapper .yamlform-submission-encuesta-form #edit-survey-name--wrapper label,
  .main-wrapper .yamlform-submission-encuesta-form #edit-your-email-address label,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper label,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-telephone label,
  .main-wrapper .yamlform-submission-encuesta-form #edit-name--wrapper label,
  .main-wrapper .yamlform-submission-encuesta-form #edit-email label,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper label,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-phone label,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-survey-name--wrapper label,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-your-email-address label,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper label,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-telephone label,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-name--wrapper label,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-email label,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper label,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-phone label,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-survey-name--wrapper label,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-your-email-address label,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper label,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-telephone label,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-name--wrapper label,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-email label,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper label,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-phone label {
    clear: both;
    float: left;
    width: 280px; }
  .main-wrapper #yamlform-submission-survey-form #edit-survey-name--wrapper input,
  .main-wrapper #yamlform-submission-survey-form #edit-survey-name--wrapper select,
  .main-wrapper #yamlform-submission-survey-form #edit-your-email-address input,
  .main-wrapper #yamlform-submission-survey-form #edit-your-email-address select,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper input,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper select,
  .main-wrapper #yamlform-submission-survey-form .form-item-telephone input,
  .main-wrapper #yamlform-submission-survey-form .form-item-telephone select,
  .main-wrapper #yamlform-submission-survey-form #edit-name--wrapper input,
  .main-wrapper #yamlform-submission-survey-form #edit-name--wrapper select,
  .main-wrapper #yamlform-submission-survey-form #edit-email input,
  .main-wrapper #yamlform-submission-survey-form #edit-email select,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper input,
  .main-wrapper #yamlform-submission-survey-form #edit-address--wrapper select,
  .main-wrapper #yamlform-submission-survey-form .form-item-phone input,
  .main-wrapper #yamlform-submission-survey-form .form-item-phone select,
  .main-wrapper .yamlform-submission-encuesta-form #edit-survey-name--wrapper input,
  .main-wrapper .yamlform-submission-encuesta-form #edit-survey-name--wrapper select,
  .main-wrapper .yamlform-submission-encuesta-form #edit-your-email-address input,
  .main-wrapper .yamlform-submission-encuesta-form #edit-your-email-address select,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper input,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper select,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-telephone input,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-telephone select,
  .main-wrapper .yamlform-submission-encuesta-form #edit-name--wrapper input,
  .main-wrapper .yamlform-submission-encuesta-form #edit-name--wrapper select,
  .main-wrapper .yamlform-submission-encuesta-form #edit-email input,
  .main-wrapper .yamlform-submission-encuesta-form #edit-email select,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper input,
  .main-wrapper .yamlform-submission-encuesta-form #edit-address--wrapper select,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-phone input,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-phone select,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-survey-name--wrapper input,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-survey-name--wrapper select,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-your-email-address input,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-your-email-address select,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper input,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper select,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-telephone input,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-telephone select,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-name--wrapper input,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-name--wrapper select,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-email input,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-email select,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper input,
  .main-wrapper .yamlform-submission-sporgeskema-form #edit-address--wrapper select,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-phone input,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-phone select,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-survey-name--wrapper input,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-survey-name--wrapper select,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-your-email-address input,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-your-email-address select,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper input,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper select,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-telephone input,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-telephone select,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-name--wrapper input,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-name--wrapper select,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-email input,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-email select,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper input,
  .main-wrapper #yamlform-submission-cruise-ship-form #edit-address--wrapper select,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-phone input,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-phone select {
    float: left;
    width: 300px !important; }

.main-wrapper #yamlform-submission-survey-form #edit-actions,
.main-wrapper .yamlform-submission-encuesta-form #edit-actions,
.main-wrapper .yamlform-submission-sporgeskema-form #edit-actions,
.main-wrapper #yamlform-submission-cruise-ship-form #edit-actions {
  padding-top: 65px; }

.main-wrapper #yamlform-submission-survey-form .form-item-subs,
.main-wrapper .yamlform-submission-encuesta-form .form-item-subs,
.main-wrapper .yamlform-submission-sporgeskema-form .form-item-subs,
.main-wrapper #yamlform-submission-cruise-ship-form .form-item-subs {
  clear: both; }
  .main-wrapper #yamlform-submission-survey-form .form-item-subs input,
  .main-wrapper .yamlform-submission-encuesta-form .form-item-subs input,
  .main-wrapper .yamlform-submission-sporgeskema-form .form-item-subs input,
  .main-wrapper #yamlform-submission-cruise-ship-form .form-item-subs input {
    width: auto !important;
    float: left;
    margin: 3px 20px  0 20px; }

@media screen and (min-width: 64em) {
  .main-wrapper .form-item legend,
  .main-wrapper .form-item label {
    width: 25%;
    clear: both;
    text-align: right;
    float: left;
    padding: 7px 10px 0 0; }
  .main-wrapper .form-item input,
  .main-wrapper .form-item select,
  .main-wrapper .form-item textarea,
  .main-wrapper .form-item .visually-hidden-labels {
    float: left;
    width: 50%;
    display: inline; }
    .main-wrapper .form-item input select,
    .main-wrapper .form-item select select,
    .main-wrapper .form-item textarea select,
    .main-wrapper .form-item .visually-hidden-labels select {
      float: none; }
    .main-wrapper .form-item input div,
    .main-wrapper .form-item select div,
    .main-wrapper .form-item textarea div,
    .main-wrapper .form-item .visually-hidden-labels div {
      padding: 0; }
  .main-wrapper .form-item .visually-hidden-labels {
    padding: 0; }
  .main-wrapper .form-item #edit-wedding-location--wrapper input,
  .main-wrapper .form-item #edit-wedding-location--wrapper label,
  .main-wrapper .form-item #edit-date-flexibility--wrapper input,
  .main-wrapper .form-item #edit-date-flexibility--wrapper label,
  .main-wrapper .form-item #edit-hotel-reservations-needed--wrapper input,
  .main-wrapper .form-item #edit-hotel-reservations-needed--wrapper label,
  .main-wrapper .form-item #edit-group-interests--wrapper input,
  .main-wrapper .form-item #edit-group-interests--wrapper label,
  .main-wrapper .form-item #edit-other-destinations input,
  .main-wrapper .form-item #edit-other-destinations label {
    display: inline;
    float: none;
    width: auto; }
  .main-wrapper .form-item #edit-hotel-reservations-needed--wrapper,
  .main-wrapper .form-item #edit-date-flexibility--wrapper {
    width: 100%; }
  .main-wrapper .form-item #edit-group-interests--wrapper,
  .main-wrapper .form-item #edit-send-more-information--wrapper {
    clear: both !important; }
  .main-wrapper .form-item #edit-send-more-information--wrapper legend {
    margin-top: 3px; }
  .main-wrapper .form-item #edit-send-more-information--wrapper label {
    display: inline-block !important; }
  .main-wrapper .form-item #edit-group-interests--wrapper .fieldset-wrapper,
  .main-wrapper .form-item #edit-wedding-location--wrapper .fieldset-wrapper,
  .main-wrapper .form-item #edit-other-destinations {
    display: block;
    float: left; }
  .main-wrapper .form-item .fieldset-wrapper .form-item-would-you-like-to-receive-information-about-special-promotions-1 input {
    width: auto;
    float: none; }
  .main-wrapper .form-item .fieldset-wrapper .form-item-would-you-like-to-receive-information-about-special-promotions-1 .option:last-child {
    display: inline-block;
    width: auto;
    float: none; }
  .main-wrapper .form-item .form-item-subscribe input,
  .main-wrapper .form-item .form-item-subscribe label {
    display: inline;
    float: none;
    padding-left: 0;
    width: auto; }
  .main-wrapper .form-item #edit-send-more-information--wrapper input {
    display: inline;
    width: auto;
    float: none; }
  .main-wrapper .form-item #edit-send-more-information--wrapper label {
    display: block;
    float: none;
    width: auto; } }

.main-wrapper #yamlform-submission-wedding-request-for-proposal-form .form-item legend:first-child,
.main-wrapper #yamlform-submission-solicitud-para-celebrar-una-boda-form .form-item legend:first-child,
.main-wrapper #yamlform-submission-prisforesporgsel-pa-jeres-bryllu-form .form-item legend:first-child,
.main-wrapper #yamlform-submission-request-for-proposal-form .form-item legend:first-child,
.main-wrapper #yamlform-submission-recibir-un-presupuesto-de-evento-form .form-item legend:first-child,
.main-wrapper #yamlform-submission-prisforesporgsel-form .form-item legend:first-child {
  float: none;
  width: 100%;
  text-align: left;
  border-bottom: 0.1429rem dotted #c3c8b6; }

.main-wrapper #yamlform-submission-wedding-request-for-proposal-form .fieldset-wrapper,
.main-wrapper #yamlform-submission-solicitud-para-celebrar-una-boda-form .fieldset-wrapper,
.main-wrapper #yamlform-submission-prisforesporgsel-pa-jeres-bryllu-form .fieldset-wrapper,
.main-wrapper #yamlform-submission-request-for-proposal-form .fieldset-wrapper,
.main-wrapper #yamlform-submission-recibir-un-presupuesto-de-evento-form .fieldset-wrapper,
.main-wrapper #yamlform-submission-prisforesporgsel-form .fieldset-wrapper {
  clear: both; }
  .main-wrapper #yamlform-submission-wedding-request-for-proposal-form .fieldset-wrapper legend:first-child,
  .main-wrapper #yamlform-submission-solicitud-para-celebrar-una-boda-form .fieldset-wrapper legend:first-child,
  .main-wrapper #yamlform-submission-prisforesporgsel-pa-jeres-bryllu-form .fieldset-wrapper legend:first-child,
  .main-wrapper #yamlform-submission-request-for-proposal-form .fieldset-wrapper legend:first-child,
  .main-wrapper #yamlform-submission-recibir-un-presupuesto-de-evento-form .fieldset-wrapper legend:first-child,
  .main-wrapper #yamlform-submission-prisforesporgsel-form .fieldset-wrapper legend:first-child {
    border-bottom: none;
    width: 25%;
    text-align: left;
    float: left; }
    @media screen and (min-width: 40em) {
      .main-wrapper #yamlform-submission-wedding-request-for-proposal-form .fieldset-wrapper legend:first-child,
      .main-wrapper #yamlform-submission-solicitud-para-celebrar-una-boda-form .fieldset-wrapper legend:first-child,
      .main-wrapper #yamlform-submission-prisforesporgsel-pa-jeres-bryllu-form .fieldset-wrapper legend:first-child,
      .main-wrapper #yamlform-submission-request-for-proposal-form .fieldset-wrapper legend:first-child,
      .main-wrapper #yamlform-submission-recibir-un-presupuesto-de-evento-form .fieldset-wrapper legend:first-child,
      .main-wrapper #yamlform-submission-prisforesporgsel-form .fieldset-wrapper legend:first-child {
        text-align: right; } }

/*
#edit-submit {
	background: transparent url("/sites/default/files/btnSubmit.png") no-repeat scroll 0 0;
    border: 0 none;
    cursor: pointer;
    height: 35px;
    width: 75px;
	float: right;
	text-indent: -9999px;
}
#edit-submit:hover {
	background: transparent url("/sites/default/files/btnSubmit_over.png") no-repeat scroll 0 0;
    border: 0 none;
    cursor: pointer;
    height: 35px;
    width: 75px;
	float: right;
}
*/
/* Horizontal */
.spotlight .column-target {
  margin-bottom: 1.5rem; }
  .spotlight .column-target .spotlight h4 {
    font-weight: bold;
    margin-bottom: 0; }
  .spotlight .column-target .spotlight .image {
    max-width: 100%; }
  @media screen and (min-width: 64em) {
    .spotlight .column-target .spotlight .image {
      width: 33.33333%;
      float: left;
      padding-left: 0.71429rem;
      padding-right: 0.71429rem; } }
  @media screen and (min-width: 64em) and (min-width: 40em) {
    .spotlight .column-target .spotlight .image {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }
  @media screen and (min-width: 64em) {
      .spotlight .column-target .spotlight .image:last-child:not(:first-child) {
        float: right; }
    .spotlight .column-target .spotlight .spotlight-text {
      width: 66.66667%;
      float: left;
      padding-left: 0.71429rem;
      padding-right: 0.71429rem; } }
  @media screen and (min-width: 64em) and (min-width: 40em) {
    .spotlight .column-target .spotlight .spotlight-text {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }
  @media screen and (min-width: 64em) {
      .spotlight .column-target .spotlight .spotlight-text:last-child:not(:first-child) {
        float: right; } }

.home-spotlights .column-target:last-child .coe-header {
  height: 3rem; }
  @media screen and (min-width: 64em) {
    .home-spotlights .column-target:last-child .coe-header {
      margin-top: -2.3rem; } }

@media screen and (min-width: 64em) {
  .home-spotlights .column-target h4 {
    height: 3rem; }
  .home-spotlights .column-target .spotlight .field-wrapper {
    height: 4rem; } }

.home-spotlights .column-target {
  margin: 0 auto;
  width: 80%; }
  .home-spotlights .column-target:first-child {
    height: 3rem;
    height: auto; }

@media screen and (min-width: 64em) {
  .home-spotlights .column-target {
    width: 25%;
    float: left;
    padding-left: 0.71429rem;
    padding-right: 0.71429rem; } }
  @media screen and (min-width: 64em) and (min-width: 40em) {
    .home-spotlights .column-target {
      padding-left: 1.07143rem;
      padding-right: 1.07143rem; } }

@media screen and (min-width: 64em) {
    .home-spotlights .column-target:last-child:not(:first-child) {
      float: right; }
    .home-spotlights .column-target:first-child {
      width: 100%;
      float: left;
      padding-left: 0.71429rem;
      padding-right: 0.71429rem; } }
    @media screen and (min-width: 64em) and (min-width: 40em) {
      .home-spotlights .column-target:first-child {
        padding-left: 1.07143rem;
        padding-right: 1.07143rem; } }

@media screen and (min-width: 64em) {
      .home-spotlights .column-target:first-child:last-child:not(:first-child) {
        float: right; } }

.home-coe .column-target:first-child {
  margin-bottom: .5rem; }

.home-coe .paragraph--type--basic-title-and-field .coe-header,
.home-spotlights .paragraph--type--basic-title-and-field .coe-header {
  color: #004560;
  font-size: 18px;
  margin-bottom: .5em;
  margin-top: .5em;
  text-transform: uppercase; }
  .home-coe .paragraph--type--basic-title-and-field .coe-header:before,
  .home-spotlights .paragraph--type--basic-title-and-field .coe-header:before {
    content: '';
    display: inline-block;
    background-image: url(/themes/usvi/images/stars-titles.png);
    height: 22px;
    margin-right: .25em;
    vertical-align: sub;
    width: 17px; }

.paragraph--type--title-with-image-and-pdf div.image {
  float: left;
  margin-right: 1.429rem; }

.paragraph--type--title-with-image-and-pdf div:nth-child(2) {
  font-weight: bold; }

@media screen and (min-width: 64em) {
  .node--type-meetings-incentives .column-target > div {
    float: none;
    padding: 0;
    width: 100%; } }

.spotlight-text h4 {
  margin-top: 10px;
  font-weight: bold; }

/*
Why was this put here? This hides the title on all pages under plan events, talk to me about this if it breaks what you've done. tn
.section-plan-events h1 {
	display:none;
}
*/
.paragraph--type--spotlight .spotlight-text div {
  min-height: 5rem; }

._plan-events_cruises .paragraph--type--spotlight .spotlight-text div, ._es_plan-events_cruises .paragraph--type--spotlight .spotlight-text div, ._da_plan-events_cruises .paragraph--type--spotlight .spotlight-text div {
  min-height: 10rem; }

.section-about-the-islands .paragraph--type--spotlight .spotlight-text div,
._es_about-the-islands_download-brochures .paragraph--type--spotlight .spotlight-text div,
._da_about-the-islands_download-brochures .paragraph--type--spotlight .spotlight-text div,
._es_where-to-stay .paragraph--type--spotlight .spotlight-text div,
._da_where-to-stay .paragraph--type--spotlight .spotlight-text div {
  min-height: auto; }

._about-the-islands_download-brochures .spotlight .image,
._es_about-the-islands_download-brochures .spotlight .image,
._da_about-the-islands_download-brochures .spotlight .image {
  float: none; }
  @media screen and (min-width: 40em) {
    ._about-the-islands_download-brochures .spotlight .image,
    ._es_about-the-islands_download-brochures .spotlight .image,
    ._da_about-the-islands_download-brochures .spotlight .image {
      float: left; } }

@media screen and (min-width: 40em) {
  .theme-st-croix .paragraph--type--spotlight, .theme-st-john .paragraph--type--spotlight, .theme-st-thomas .paragraph--type--spotlight, .section-where-to-stay .paragraph--type--spotlight, .section-plan-events .paragraph--type--spotlight,
  ._es_plan-events_cruises .paragraph--type--spotlight, ._da_plan-events_cruises .paragraph--type--spotlight {
    float: left;
    width: 33%;
    padding: 10px; } }

@media screen and (max-width: 39.9375em) {
  .theme-st-croix .paragraph--type--spotlight, .theme-st-john .paragraph--type--spotlight, .theme-st-thomas .paragraph--type--spotlight, .section-where-to-stay .paragraph--type--spotlight, .section-plan-events .paragraph--type--spotlight,
  ._es_plan-events_cruises .paragraph--type--spotlight, ._da_plan-events_cruises .paragraph--type--spotlight {
    float: none;
    width: 100%; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .theme-st-croix .paragraph--type--spotlight, .theme-st-john .paragraph--type--spotlight, .theme-st-thomas .paragraph--type--spotlight, .section-where-to-stay .paragraph--type--spotlight, .section-plan-events .paragraph--type--spotlight,
  ._es_plan-events_cruises .paragraph--type--spotlight, ._da_plan-events_cruises .paragraph--type--spotlight {
    float: none;
    width: 100%; } }

@media screen and (max-width: 39.9375em) {
  .paragraph.paragraph--type--spotlight.paragraph--view-mode--default.spotlight.clearfix,
  .paragraph.paragraph--type--spotlight-with-file-download.spotlight.clearfix,
  .paragraph-book-en-tur,
  .paragraph-reserve-un-viaje,
  .paragraph-book-a-trip {
    margin: 10px auto 0;
    max-width: 265px; }
  .spotlight .image {
    margin-right: 0; }
  .spotlight-text {
    clear: left;
    margin-bottom: 15px;
    max-width: 265px; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .paragraph.paragraph--type--spotlight.paragraph--view-mode--default.spotlight.clearfix,
  .paragraph.paragraph--type--spotlight-with-file-download.spotlight.clearfix,
  .paragraph-book-en-tur,
  .paragraph-reserve-un-viaje,
  .paragraph-book-a-trip {
    margin: 10px auto 0;
    max-width: 265px; }
  .spotlight .image {
    margin-right: 0; }
  .spotlight-text {
    clear: left;
    margin-bottom: 15px;
    max-width: 265px; } }

.ui-accordion-header {
  background: none;
  border: none;
  margin-bottom: 0.625rem; }

.ui-accordion-header a {
  color: #004a5f;
  font-size: 1.429rem;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 0.1429rem dotted #004a5f; }

.ui-accordion-header a div {
  color: #004a5f;
  font-size: 1.429rem;
  font-weight: bold !important;
  text-decoration: none;
  border-bottom: 0.1429rem dotted #004a5f; }

.ui-accordion-content {
  margin: 0 1.5rem 1.5rem 0;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  background-color: #feffe0;
  border: none; }

.ui-widget-content {
  background: none; }

.usvi-accordion div.field-wrapper,
.usvi-tabs div.field-wrapper,
.usvi-fake-tabs div.field-wrapper {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: normal; }

.usvi-accordion div.quickedit-field h2,
.usvi-tabs div.quickedit-field h2,
.usvi-fake-tabs div.quickedit-field h2 {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1.429rem;
  font-weight: bold; }

.usvi-accordion div.field-wrapper h4,
.usvi-tabs div.field-wrapper h4,
.usvi-fake-tabs div.field-wrapper h4 {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: bold; }

.usvi-accordion .ui-state-default,
.usvi-tabs .ui-state-default,
.usvi-fake-tabs .ui-state-default {
  background: #FEFFE0;
  border: 0;
  color: #555555;
  font-weight: normal; }

.usvi-accordion .ui-state-active,
.usvi-tabs .ui-state-active,
.usvi-fake-tabs .ui-state-active {
  background: #FEFFE0;
  border: 0;
  color: #212121;
  font-weight: normal; }

.usvi-accordion .ui-accordion .ui-accordion-content,
.usvi-tabs .ui-accordion .ui-accordion-content,
.usvi-fake-tabs .ui-accordion .ui-accordion-content {
  border: 0 none; }

.usvi-accordion .accordion-item a, .usvi-accordion .accordion-item a:link, .usvi-accordion .accordion-item a:visited,
.usvi-tabs .accordion-item a,
.usvi-tabs .accordion-item a:link,
.usvi-tabs .accordion-item a:visited,
.usvi-fake-tabs .accordion-item a,
.usvi-fake-tabs .accordion-item a:link,
.usvi-fake-tabs .accordion-item a:visited {
  border-bottom: 0.1429rem dotted #004a5f;
  color: #004a5f;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
  text-decoration: none; }

.usvi-accordion .views-field-title a,
.usvi-tabs .views-field-title a,
.usvi-fake-tabs .views-field-title a {
  font-family: Arial,Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: normal; }

.usvi-accordion .views-field-title a:hover,
.usvi-tabs .views-field-title a:hover,
.usvi-fake-tabs .views-field-title a:hover {
  text-decoration: underline;
  color: #222222; }

.usvi-accordion .paragraph--view-mode--default div,
.usvi-tabs .paragraph--view-mode--default div,
.usvi-fake-tabs .paragraph--view-mode--default div {
  margin: 0; }

.ui-accordion-content div.views-row, .paragraph--type--accordion-item div.views-row {
  float: left;
  margin: 0 1.5% 1.5rem 1.5%;
  width: 47%;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  border-bottom: 0.1429rem dotted #004a5f;
  padding-bottom: 0.7143rem; }

.ui-accordion-content div.views-row:nth-child(2n+1), .paragraph--type--accordion-item div.views-row:nth-child(2n+1) {
  clear: left; }

.views-row .views-field:first-child span.field-content {
  font-weight: bold !important; }

.views-row span.field-content, .views-row span.field-content a {
  font-weight: normal !important; }

.js-pager__items {
  clear: both;
  font-weight: bold; }

.theme-st-croix .js-pager__items li {
  color: #e239b1; }

@media screen and (max-width: 39.9375em) {
  .ui-accordion-content div.views-row, .paragraph--type--accordion-item div.views-row {
    width: 100%; } }

.usvi-fake-tabs a,
.usvi-fake-tabs span {
  float: none;
  text-align: center;
  display: block;
  margin: 1px 0;
  padding: 0.5em 1em;
  text-decoration: none;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    .usvi-fake-tabs a,
    .usvi-fake-tabs span {
      text-align: left;
      display: inline;
      float: left;
      margin: 0; } }

.ui-widget-header {
  background: none;
  border: 0; }

.ui-widget-content {
  border: none; }

.ui-tabs .ui-tabs-nav {
  padding: 0; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  padding-bottom: 0; }

.ui-tabs .ui-tabs-nav li {
  margin: 0.07143rem 0.1em 0 0; }

.ui-tabs .ui-tabs-nav li {
  text-align: center;
  display: block;
  float: none; }
  @media screen and (min-width: 64em) {
    .ui-tabs .ui-tabs-nav li {
      text-align: left;
      display: inline;
      float: left; } }
  .ui-tabs .ui-tabs-nav li a {
    width: 100%;
    margin: 1px 0; }
    @media screen and (min-width: 64em) {
      .ui-tabs .ui-tabs-nav li a {
        width: auto;
        margin: 0; } }

.ui-tabs-anchor {
  background-color: none;
  padding: 0.8571rem 0 0.5714rem;
  text-align: center;
  text-transform: uppercase; }

.paragraph--type--tab-content-group {
  background-color: #FAF9B3; }

.usvi-tabs {
  background-image: none;
  background-color: transparent;
  margin: 0 -45px; }
  @media screen and (min-width: 40em) {
    .usvi-tabs {
      margin: 0; } }
  .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .usvi-tabs .ui-widget-content {
    padding: 1.4rem; }

.usvi-fake-tabs .ui-widget-header .ui-state-default a,
.usvi-fake-tabs .ui-widget-header .ui-state-default span,
.usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #019cc9;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem;
  margin-right: 1px; }

.usvi-fake-tabs .ui-widget-header .ui-state-active a,
.usvi-fake-tabs .ui-widget-header .ui-state-default span,
.usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #faf9b3;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.paragraph--type--accordion-group {
  background-color: #faf9b3;
  padding: 1.4rem; }

.section-about-the-islands .paragraph--type--accordion-group {
  background-color: #FEFFE0; }

.theme-st-croix .usvi-tabs {
  background-image: none;
  background-color: transparent; }
  .theme-st-croix .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .theme-st-croix .usvi-tabs .ui-widget-content {
    background-color: #D5EFFF;
    padding: 1.4rem; }

.theme-st-croix .usvi-fake-tabs .ui-widget-header .ui-state-default a,
.theme-st-croix .usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #024771;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem; }

.theme-st-croix .usvi-fake-tabs .ui-widget-header .ui-state-active a,
.theme-st-croix .usvi-fake-tabs .ui-widget-header .ui-state-active span,
.theme-st-croix .usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #D5EFFF;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.theme-st-croix .paragraph--type--accordion-group, .theme-st-croix .paragraph--type--basic-title-image-and-text {
  background-color: #D5EFFF;
  padding: 1.4rem; }

.theme-st-croix .column-target .column-target {
  background-color: #D5EFFF; }

.theme-st-john .usvi-tabs {
  background-image: none;
  background-color: transparent; }
  .theme-st-john .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .theme-st-john .usvi-tabs .ui-widget-content {
    background-color: #CAF8CA;
    padding: 1.4rem; }

.theme-st-john .usvi-fake-tabs .ui-widget-header .ui-state-default a,
.theme-st-john .usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #016235;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem; }

.theme-st-john .usvi-fake-tabs .ui-widget-header .ui-state-active a,
.theme-st-john .usvi-fake-tabs .ui-widget-header .ui-state-active span,
.theme-st-john .usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #CAF8CA;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.theme-st-john .paragraph--type--accordion-group, .theme-st-john .paragraph--type--basic-title-image-and-text {
  background-color: #CAF8CA;
  padding: 1.4rem; }

.theme-st-john .column-target .column-target {
  background-color: #CAF8CA; }

.theme-st-thomas .usvi-tabs {
  background-image: none;
  background-color: transparent; }
  .theme-st-thomas .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .theme-st-thomas .usvi-tabs .ui-widget-content {
    background-color: #FDE3C2;
    padding: 1.4rem; }

.theme-st-thomas .usvi-fake-tabs .ui-widget-header .ui-state-default a,
.theme-st-thomas .usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #A20E32;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem; }

.theme-st-thomas .usvi-fake-tabs .ui-widget-header .ui-state-active a,
.theme-st-thomas .usvi-fake-tabs .ui-widget-header .ui-state-active span,
.theme-st-thomas .usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #FDE3C2;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.theme-st-thomas .paragraph--type--accordion-group, .theme-st-thomas .paragraph--type--basic-title-image-and-text {
  background-color: #FDE3C2;
  padding: 1.4rem; }

.theme-st-thomas .column-target .column-target {
  background-color: #FDE3C2; }

.usvi-fake-tabs .ui-state-default a,
.usvi-fake-tabs .ui-state-default a:link,
.usvi-fake-tabs .ui-state-default a:visited,
.usvi-tabs .ui-state-default a,
.usvi-tabs .ui-state-default a:link,
.usvi-tabs .ui-state-default a:visited {
  color: #FEFFE0;
  font-weight: bold; }

.usvi-tabs div.views-row div.views-field.views-field-field-location div.field-content ul {
  list-style-type: none;
  margin: 0; }

.usvi-tabs div.views-row div.views-field.views-field-title span.field-content, .paragraph--type--fake-tab-group .paragraph--type--basic-title span.field-content {
  font-weight: bold !important; }

.paragraph--type--basic-title-and-field .views-row span.field-content {
  font-weight: bold; }

.usvi-accordion .ui-state-default {
  background: none; }

.theme-st-croix .paragraph--type--basic-title-and-field, .theme-st-john .paragraph--type--basic-title-and-field, .theme-st-thomas .paragraph--type--basic-title-and-field {
  padding: 1.4rem; }

.theme-st-croix .views-row, .theme-st-john .views-row, .theme-st-thomas .views-row, .paragraph--type--tab-content div.views-row {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
  width: 47%;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  border-bottom: 0.1429rem dotted #004a5f;
  padding-bottom: 0.7143rem; }

.theme-st-croix .views-row:nth-child(2n+1), .paragraph--type--tab-content .views-row:nth-child(2n+1) {
  clear: left; }

@media screen and (max-width: 39.9375em) {
  .theme-st-croix .views-row, .section-stjohn .views-row, .section-stthomas .views-row, .paragraph--type--tab-content div.views-row {
    width: 100%; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .theme-st-croix .views-row, .section-stjohn .views-row, .section-stthomas .views-row, .paragraph--type--tab-content div.views-row {
    width: 100%; } }

ul.js-pager__items {
  list-style-type: none; }

ul.js-pager__items li {
  float: left; }

.trip-planner {
  margin-top: 0.3571rem; }

.pagination-heading {
  clear: both; }

.paragraph--type--title-link-with-image-and-text {
  padding: 1.429rem;
  background-color: #FAF9B3; }

.paragraph--type--title-link-with-image-and-text .image {
  float: left;
  width: 15.14rem;
  margin-right: 1.429rem; }

.paragraph--type--title-link-with-image-and-text a {
  font-weight: bold; }

.section-todo .column-target .column-target {
  overflow: hidden; }

.paragraph--type--fake-tab-group .views-row {
  width: 100% !important; }

.paragraph--type--tab-content img {
  float: left;
  margin-right: 1.5rem; }

.content-wrapper .body h2 {
  color: #303934;
  font-size: 1.429rem;
  line-height: 1.571rem;
  margin-bottom: 1.429rem;
  font-weight: bold; }

div.content-wrapper div.body.field.quickedit-field h3 {
  color: #303934;
  font-size: 1.286rem;
  font-weight: bold; }

.views-element-container p {
  margin: 0; }

.node--type-home div.large-10.medium-centered.clearfix {
  background-color: #E5F6FE; }

@media screen and (min-width: 40em) {
  .section-caribbean-deals .image {
    float: left;
    width: 15.14rem;
    margin-right: 1.429rem; }
  .section-caribbean-deals .body {
    overflow: hidden; } }

@media screen and (max-width: 39.9375em) {
  .section-caribbean-deals .image {
    float: none;
    width: 100%;
    margin-right: 0; }
  .section-caribbean-deals .body {
    overflow: visible; } }

.usvi-fake-tabs a,
.usvi-fake-tabs span {
  float: none;
  text-align: center;
  display: block;
  margin: 1px 0;
  padding: 0.5em 1em;
  text-decoration: none;
  text-transform: uppercase; }
  @media screen and (min-width: 40em) {
    .usvi-fake-tabs a,
    .usvi-fake-tabs span {
      text-align: left;
      display: inline;
      float: left;
      margin: 0; } }

.ui-widget-header {
  background: none;
  border: 0; }

.ui-widget-content {
  border: none; }

.ui-tabs .ui-tabs-nav {
  padding: 0; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  padding-bottom: 0; }

.ui-tabs .ui-tabs-nav li {
  margin: 0.07143rem 0.1em 0 0; }

.ui-tabs .ui-tabs-nav li {
  text-align: center;
  display: block;
  float: none; }
  @media screen and (min-width: 64em) {
    .ui-tabs .ui-tabs-nav li {
      text-align: left;
      display: inline;
      float: left; } }
  .ui-tabs .ui-tabs-nav li a {
    width: 100%;
    margin: 1px 0; }
    @media screen and (min-width: 64em) {
      .ui-tabs .ui-tabs-nav li a {
        width: auto;
        margin: 0; } }

.ui-tabs-anchor {
  background-color: none;
  padding: 0.8571rem 0 0.5714rem;
  text-align: center;
  text-transform: uppercase; }

.paragraph--type--tab-content-group {
  background-color: #FAF9B3; }

.usvi-tabs {
  background-image: none;
  background-color: transparent;
  margin: 0 -45px; }
  @media screen and (min-width: 40em) {
    .usvi-tabs {
      margin: 0; } }
  .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .usvi-tabs .ui-widget-content {
    padding: 1.4rem; }

.usvi-fake-tabs .ui-widget-header .ui-state-default a,
.usvi-fake-tabs .ui-widget-header .ui-state-default span,
.usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #019cc9;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem;
  margin-right: 1px; }

.usvi-fake-tabs .ui-widget-header .ui-state-active a,
.usvi-fake-tabs .ui-widget-header .ui-state-default span,
.usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #faf9b3;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.paragraph--type--accordion-group {
  background-color: #faf9b3;
  padding: 1.4rem; }

.section-about-the-islands .paragraph--type--accordion-group {
  background-color: #FEFFE0; }

.theme-st-croix .usvi-tabs {
  background-image: none;
  background-color: transparent; }
  .theme-st-croix .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .theme-st-croix .usvi-tabs .ui-widget-content {
    background-color: #D5EFFF;
    padding: 1.4rem; }

.theme-st-croix .usvi-fake-tabs .ui-widget-header .ui-state-default a,
.theme-st-croix .usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #024771;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem; }

.theme-st-croix .usvi-fake-tabs .ui-widget-header .ui-state-active a,
.theme-st-croix .usvi-fake-tabs .ui-widget-header .ui-state-active span,
.theme-st-croix .usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #D5EFFF;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.theme-st-croix .paragraph--type--accordion-group, .theme-st-croix .paragraph--type--basic-title-image-and-text {
  background-color: #D5EFFF;
  padding: 1.4rem; }

.theme-st-croix .column-target .column-target {
  background-color: #D5EFFF; }

.theme-st-john .usvi-tabs {
  background-image: none;
  background-color: transparent; }
  .theme-st-john .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .theme-st-john .usvi-tabs .ui-widget-content {
    background-color: #CAF8CA;
    padding: 1.4rem; }

.theme-st-john .usvi-fake-tabs .ui-widget-header .ui-state-default a,
.theme-st-john .usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #016235;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem; }

.theme-st-john .usvi-fake-tabs .ui-widget-header .ui-state-active a,
.theme-st-john .usvi-fake-tabs .ui-widget-header .ui-state-active span,
.theme-st-john .usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #CAF8CA;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.theme-st-john .paragraph--type--accordion-group, .theme-st-john .paragraph--type--basic-title-image-and-text {
  background-color: #CAF8CA;
  padding: 1.4rem; }

.theme-st-john .column-target .column-target {
  background-color: #CAF8CA; }

.theme-st-thomas .usvi-tabs {
  background-image: none;
  background-color: transparent; }
  .theme-st-thomas .usvi-tabs h3 {
    color: #303934;
    font-size: 1.3rem;
    font-weight: bold; }
  .theme-st-thomas .usvi-tabs .ui-widget-content {
    background-color: #FDE3C2;
    padding: 1.4rem; }

.theme-st-thomas .usvi-fake-tabs .ui-widget-header .ui-state-default a,
.theme-st-thomas .usvi-tabs .ui-widget-header .ui-state-default a {
  background-color: #A20E32;
  font-weight: bold;
  text-shadow: 0.07143rem 0.07143rem 0.1429rem #004560;
  font-size: 1.143rem; }

.theme-st-thomas .usvi-fake-tabs .ui-widget-header .ui-state-active a,
.theme-st-thomas .usvi-fake-tabs .ui-widget-header .ui-state-active span,
.theme-st-thomas .usvi-tabs .ui-widget-header .ui-state-active a {
  background-color: #FDE3C2;
  color: #004560 !important;
  font-weight: normal !important;
  font-size: 1.143rem;
  text-shadow: none; }

.theme-st-thomas .paragraph--type--accordion-group, .theme-st-thomas .paragraph--type--basic-title-image-and-text {
  background-color: #FDE3C2;
  padding: 1.4rem; }

.theme-st-thomas .column-target .column-target {
  background-color: #FDE3C2; }

.usvi-fake-tabs .ui-state-default a,
.usvi-fake-tabs .ui-state-default a:link,
.usvi-fake-tabs .ui-state-default a:visited,
.usvi-tabs .ui-state-default a,
.usvi-tabs .ui-state-default a:link,
.usvi-tabs .ui-state-default a:visited {
  color: #FEFFE0;
  font-weight: bold; }

.usvi-tabs div.views-row div.views-field.views-field-field-location div.field-content ul {
  list-style-type: none;
  margin: 0; }

.usvi-tabs div.views-row div.views-field.views-field-title span.field-content, .paragraph--type--fake-tab-group .paragraph--type--basic-title span.field-content {
  font-weight: bold !important; }

.paragraph--type--basic-title-and-field .views-row span.field-content {
  font-weight: bold; }

.usvi-accordion .ui-state-default {
  background: none; }

.theme-st-croix .paragraph--type--basic-title-and-field, .theme-st-john .paragraph--type--basic-title-and-field, .theme-st-thomas .paragraph--type--basic-title-and-field {
  padding: 1.4rem; }

.theme-st-croix .views-row, .theme-st-john .views-row, .theme-st-thomas .views-row, .paragraph--type--tab-content div.views-row {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
  width: 47%;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  border-bottom: 0.1429rem dotted #004a5f;
  padding-bottom: 0.7143rem; }

.theme-st-croix .views-row:nth-child(2n+1), .paragraph--type--tab-content .views-row:nth-child(2n+1) {
  clear: left; }

@media screen and (max-width: 39.9375em) {
  .theme-st-croix .views-row, .section-stjohn .views-row, .section-stthomas .views-row, .paragraph--type--tab-content div.views-row {
    width: 100%; } }

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .theme-st-croix .views-row, .section-stjohn .views-row, .section-stthomas .views-row, .paragraph--type--tab-content div.views-row {
    width: 100%; } }

ul.js-pager__items {
  list-style-type: none; }

ul.js-pager__items li {
  float: left; }

.trip-planner {
  margin-top: 0.3571rem; }

.pagination-heading {
  clear: both; }

.paragraph--type--title-link-with-image-and-text {
  padding: 1.429rem;
  background-color: #FAF9B3; }

.paragraph--type--title-link-with-image-and-text .image {
  float: left;
  width: 15.14rem;
  margin-right: 1.429rem; }

.paragraph--type--title-link-with-image-and-text a {
  font-weight: bold; }

.section-todo .column-target .column-target {
  overflow: hidden; }

.paragraph--type--fake-tab-group .views-row {
  width: 100% !important; }

.paragraph--type--tab-content img {
  float: left;
  margin-right: 1.5rem; }

.theme-st-croix .full-hero h1,
.theme-st-john .full-hero h1,
.theme-st-thomas .full-hero h1 {
  color: #fefefe;
  font-size: 2rem; }
  .theme-st-croix .full-hero h1:before,
  .theme-st-john .full-hero h1:before,
  .theme-st-thomas .full-hero h1:before {
    font-size: 3.5rem;
    padding-right: .5rem;
    text-shadow: 1px 1px 2px #004560; }

@media screen and (min-width: 64em) {
  .theme-st-croix .full-hero .island-theme,
  .theme-st-john .full-hero .island-theme,
  .theme-st-thomas .full-hero .island-theme {
    background-repeat: no-repeat;
    height: 110px;
    padding-left: 200px; } }

.theme-st-croix .full-hero h1:before {
  content: 'St. Croix';
  color: #fe8fdd; }

@media screen and (min-width: 64em) {
  .theme-st-croix .full-hero .island-theme {
    background-image: url(/themes/usvi/images/st-croix-island.png); } }

.theme-st-john .full-hero h1:before {
  content: 'St. John';
  color: #d9ff87; }

@media screen and (min-width: 64em) {
  .theme-st-john .full-hero .island-theme {
    background-image: url(/themes/usvi/images/st-john-island.png); } }

.theme-st-thomas .full-hero h1:before {
  content: 'St. Thomas';
  color: #d9ff87; }

@media screen and (min-width: 64em) {
  .theme-st-thomas .full-hero .island-theme {
    background-image: url(/themes/usvi/images/st-thomas-island.png); } }

.bxslider,
.bxpager {
  margin: 0;
  list-style-type: none; }

.bx-slider-main {
  float: left;
  overflow: hidden;
  width: 75%; }

.bx-slider-thumb {
  float: right;
  width: 25%; }
  .bx-slider-thumb .pager {
    display: block;
    height: 110px;
    margin-bottom: .72rem;
    overflow: hidden; }
    .bx-slider-thumb .pager.active img {
      margin-top: -110px; }

.bx-slider-main li {
  height: 350px;
  background-color: #004560; }
  .bx-slider-main li:first-child {
    position: relative;
    z-index: 10; }
  .bx-slider-main li div {
    display: block;
    height: 100%;
    position: relative;
    width: 100%; }
    .bx-slider-main li div.slide-wrapper {
      color: #fff;
      font-size: 2.2rem;
      left: 0;
      padding: 7rem 2rem 2rem 2rem;
      position: absolute;
      text-shadow: 2px 2px 2px #969696;
      text-transform: uppercase;
      top: 0;
      width: 444px; }
      .bx-slider-main li div.slide-wrapper p {
        font-size: 1.1rem;
        line-height: 1.7rem;
        margin-top: 0.5rem;
        text-transform: initial; }
      .bx-slider-main li div.slide-wrapper a {
        background: #fff;
        bottom: 1.8rem;
        clear: both;
        color: #000;
        display: block;
        font-size: 1rem;
        opacity: 0.75;
        padding: 0.4rem 1rem;
        position: absolute;
        text-decoration: none;
        text-shadow: none;
        text-transform: uppercase;
        transition: all 0.5s ease; }
        .bx-slider-main li div.slide-wrapper a:after {
          background: #fff;
          content: '';
          display: block;
          height: 21px;
          position: absolute;
          right: -11px;
          top: 4px;
          transform: rotate(45deg);
          width: 21px; }
        .bx-slider-main li div.slide-wrapper a:hover {
          opacity: 1; }

@media screen and (max-width: 63.9375em) {
  .bx-slider-main {
    float: none;
    width: 100%; }
    .bx-slider-main li div.slide-wrapper {
      padding: 3rem 2rem;
      width: 100%; }
      .bx-slider-main li div.slide-wrapper a {
        bottom: 4rem; }
  .bx-slider-thumb {
    bottom: 10px;
    display: block;
    float: none;
    height: 15px;
    overflow: hidden;
    position: absolute;
    width: 100%; }
    .bx-slider-thumb div {
      display: block;
      height: 15px;
      overflow: hidden;
      text-align: center; }
    .bx-slider-thumb .bxpager {
      display: inline-block;
      float: none;
      height: 15px;
      margin: 0 auto;
      overflow: hidden; }
    .bx-slider-thumb li {
      display: inline-block;
      margin-right: 15px; }
      .bx-slider-thumb li:last-child {
        margin-right: 0; }
      .bx-slider-thumb li .pager {
        background: white;
        border-radius: 50%;
        display: block;
        height: 15px;
        margin: 0;
        opacity: .5;
        overflow: hidden;
        transition: all 250ms ease-in-out;
        width: 15px; }
        .bx-slider-thumb li .pager.active, .bx-slider-thumb li .pager:hover {
          opacity: 1; }
        .bx-slider-thumb li .pager img {
          display: none; }
  .theme-target .hide-for-large,
  .position-image .hide-for-large {
    display: none; }
  .theme-target .show-for-large,
  .position-image .show-for-large {
    display: block !important; } }

@media screen and (min-width: 40em) {
  .search-help-link {
    display: none; }
  .search-form {
    display: none; }
  ._search_node h2, ._es_search_node h2, ._da_search_node h2,
  ._search_site h2, ._es_search_site h2, ._da_search_site h2 {
    font-size: 2.85714rem;
    line-height: 0;
    text-shadow: 1px 1px 2px #004560;
    text-transform: uppercase;
    color: #ffff00;
    margin-left: 140px; }
  ._search_node ol, ._es_search_node ol, ._da_search_node ol,
  ._search_site ol, ._es_search_site ol, ._da_search_site ol {
    list-style: none;
    padding: 45px;
    background-color: #feffe0;
    margin: 3.214rem 10.36rem; }
  .pagination {
    margin-left: 140px; }
  nav.pager {
    margin-top: -30px; } }

@media screen and (max-width: 39.9375em) {
  .search-help-link {
    display: none; }
  .search-form {
    display: none; }
  ._search_node h2, ._es_search_node h2, ._da_search_node h2,
  ._search_site h2, ._es_search_site h2, ._da_search_site h2 {
    color: #ffff00;
    font-size: 1.71429rem;
    line-height: 0;
    margin: 20px 0 0 20px;
    text-shadow: 1px 1px 2px #004560;
    text-transform: uppercase; }
  ._search_node ol, ._es_search_node ol, ._da_search_node ol,
  ._search_site ol, ._es_search_site ol, ._da_search_site ol {
    list-style: none;
    margin: 20px; } }

._plan-events_centennial-commemoration .inner-content,
._es_plan-events_centennial-commemoration .inner-content,
._da_plan-events_centennial-commemoration .inner-content {
  padding: 0; }

._plan-events_centennial-commemoration .body,
._es_plan-events_centennial-commemoration .body,
._da_plan-events_centennial-commemoration .body {
  margin: 0; }

._plan-events_centennial-commemoration .ds-content-wrapper,
._es_plan-events_centennial-commemoration .ds-content-wrapper,
._da_plan-events_centennial-commemoration .ds-content-wrapper {
  background-image: none;
  padding: 0; }
  ._plan-events_centennial-commemoration .ds-content-wrapper h2,
  ._es_plan-events_centennial-commemoration .ds-content-wrapper h2,
  ._da_plan-events_centennial-commemoration .ds-content-wrapper h2 {
    font-size: 2rem;
    line-height: 1.2; }
  ._plan-events_centennial-commemoration .ds-content-wrapper h1,
  ._es_plan-events_centennial-commemoration .ds-content-wrapper h1,
  ._da_plan-events_centennial-commemoration .ds-content-wrapper h1 {
    color: #ffff00;
    font-size: 3rem;
    line-height: 1.3; }
    ._plan-events_centennial-commemoration .ds-content-wrapper h1:before,
    ._es_plan-events_centennial-commemoration .ds-content-wrapper h1:before,
    ._da_plan-events_centennial-commemoration .ds-content-wrapper h1:before {
      content: '';
      display: none; }

.cen-com .page-nav {
  padding-left: 0;
  font-size: .8rem; }
  .cen-com .page-nav a {
    color: #0a0a0a;
    display: inline-block;
    padding: 0 0 0 1rem;
    text-decoration: none;
    white-space: nowrap; }
    .cen-com .page-nav a:hover {
      background-color: #004560;
      color: #fefefe; }
    .cen-com .page-nav a:after {
      content: '|';
      margin-right: -3px;
      padding-left: 1rem; }
  .cen-com .page-nav a:last-child:after {
    content: ''; }
  @media screen and (min-width: 40em) {
    .cen-com .page-nav {
      font-size: 1rem;
      padding-left: 2rem; } }

.cen-com .banner {
  background-color: #8dbcdb;
  padding: 1rem .5rem; }

.cen-com .banner-img-left {
  float: left;
  width: 180px; }

.cen-com .banner-img-right {
  float: right;
  width: 120px; }

.cen-com .small-centered {
  clear: both;
  text-align: center; }
  .cen-com .small-centered h2 {
    color: #fefefe; }
  @media screen and (min-width: 40em) {
    .cen-com .small-centered {
      padding-top: 2rem; } }
  @media screen and (min-width: 64em) {
    .cen-com .small-centered {
      clear: none;
      max-width: 60%; } }

@media screen and (min-width: 40em) {
  .cen-com .banner-img-left,
  .cen-com .banner-img-right {
    width: auto; } }

.cen-com .transfer-blurb {
  padding: 1rem 2rem;
  text-align: center; }
  .cen-com .transfer-blurb p {
    font-family: serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.2;
    padding-top: 1rem;
    text-align: left; }
  @media screen and (min-width: 64em) {
    .cen-com .transfer-blurb img {
      float: right;
      padding-left: 1.5rem;
      width: 33%; }
    .cen-com .transfer-blurb p {
      padding-top: 2.5rem; } }

.cen-com .tryptic {
  padding: 0 2rem;
  text-align: center; }
  .cen-com .tryptic h3, .cen-com .tryptic p {
    text-align: left; }
  .cen-com .tryptic h3 {
    font-size: 1.2rem;
    margin-top: .5rem; }
  .cen-com .tryptic .box {
    margin-top: .5rem; }
  @media screen and (min-width: 64em) {
    .cen-com .tryptic {
      text-align: justify; }
      .cen-com .tryptic:after {
        display: inline-block;
        height: 0;
        width: 100%; }
      .cen-com .tryptic .box {
        display: inline-block;
        vertical-align: top;
        width: 32%; } }

.cen-com .booking,
.cen-com .events,
.cen-com .fun-facts {
  padding: 3rem 2rem 3rem; }

.cen-com .events {
  background-color: #fefefe; }

.cen-com .fun-facts ul {
  list-style-type: none;
  margin: 0; }
