@charset "UTF-8";
/*
body {
    background: #0147A7;
    color: #fff;
}
a {
    color: #03A9F4;
}
*/
/**
UTILITY FUNCTIONS
**/
/*GULP_UIBUILD_PATH_START*/
/*GULP_UIBUILD_PATH_END*/
/** COLOURS **/
/** TYPE **/
/** GRID BREAKPOINTS **/
/** MISC DIMENSIONS **/
/* Overrides Bootstrap defaults */
/*
clearfix

Based on UIKit's "uk-clearfix".

`table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
`table` is used again with `:after` because `clear` only works with block elements.
Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari

Styleguide 2.5.7
*/
/*
hovercraft

A button/link helper for handling "hover,focus,active" psuedo styles, taking into account touch devices and touch+mouse devices, which are added in JS by calling "utils.addMouseTouchStates".
All psuedo classes will only work if the button is 'not-disabled'.

- $useFocus (boolean/true):         should be `true` if you want your styles to be included on the native 'focus' pseudo class. Otherwise it should be `false`.
- $useTouchActive (boolean/true):   should be `true` if you want your styles to be included on the native 'active' pseudo class when "is-touchuser" state exists. Otherwise it should be `false`.
- $useFocusUL (boolean/false):      should be `true` if you want a text-underline added on focus to links only. Otherwise it should be `false`.
- $useOffset (boolean/false):       should be `true` if you want a 1px vertical offset added when the native 'active' pseudo class exists, useful for making buttons feel like they've done something. Otherwise it should be `false`.
- $site-wrap-cls (string/false):    allows you to add a custom CSS class to the '.sitewrap' element, which is the same element that all the touch and mouse states get added to. Omit this if not needed.
- $custom-cls (string/false):       allows you to add a custom CSS class to the button element you're affecting. Useful if you have custom states that should behave the same as the pseudo classes and don't want to repeat everything twice. Omit this if not needed.
- $parent-cls (string/false):       allows you to add a custom CSS class at a higher level than you affected selector, but lower than the touch/mouse states.

*/
/*
btn

Based on UIKit "Button" Component.

See "u-BtnNude" for example markup.

$useFocusUL (boolean/false)         - Show an underline on :focus
$useOffset (boolean/false)          - 1px vertical offset on :active
$applyClrs (boolean/false)          - Apply simple colours 
$button-height (height/line-height) - Example 1.5rem, 15px

*/
/*
 * Break inside (for CSS multi-column column).
 * Keeps an element together, so it doesn't break badly when in  a multi-column.
 */
/*
 * For retina display
 */
/*
  create css triangle
*/
/**
 * This mixin will add a border-bottom to your text, allowing you to colour the underline with a custom colour.
 * Multi-line will need to be display:inline to work.
 * If you need to adjust the position of the underline you should make `$offset` the value of the offset. For example `-4px`.
 * If `$offset` is used, you should also use the JS utility `ulOffset` to generate the extra markup required. 
 * The utility basically adds another transparent text element over the top of your text and adds the border to that, so it can be adjusted.
 */
/* Paragraphs */
/* Headings */
/**
By default, breakpoint mixins are mobile first (uses min-width).
Use $variant to change that:
- "dt": will apply a desktop-first approach (uses max-width)
- "own": will ensure that only the specified breakpoint is used (using mobile-first approach) and will be restricted before the next breakpoint
**/
/**
UTILITY FUNCTIONS
**/
/*
Useful mixin for controlling nested selectors, when using trailing "&", like ".mysel &".
If just passing $sel, will append this to the existing selector, regardless of whether you are nested inside a trailing "&".
If passing $outer-sel as well, this will append to the specified $outer-sel with a space and then the specified $sel, followed by the rest of the existing selector.

Example 1:
.mywg {
  &-cont {
    .is-wide & {

      a:hover {
        background-color: black;
        
        @include selWrap(".is-bright") {
            background-color: yellow;
        }
      }
    }
  }
}

outputs:
.is-wide .skatebtn-cont a:hover { background-color: black; }
.is-wide.is-bright .skatebtn-cont a:hover { background-color: yellow; }
(note there is no space between ".is-wide" and ".is-bright")


Example 2:
.mywg {
  &-cont {
    .is-wide & {

      a:hover {
        background-color: black;
        
        @include selWrap(".is-bright", ".is-wide") {
            background-color: yellow;
        }
      }
    }
  }
}

outputs:
.is-wide .skatebtn-cont a:hover { background-color: black; }
.is-wide .is-bright .skatebtn-cont a:hover { background-color: yellow; }
(note the space between ".is-wide" and ".is-bright")
*/
/*
Useful for adding 'modifier' selecters (based on SUIT-CSS syntax)

Example 1:
.myWg {
  &-childSel {
    @include mod("--wide") {
        background-color: yellow;
    }
  }
}

outputs:
.myWg--wide .myWg-childSel { background-color: yellow; }
*/
/*GULP_UIBUILD_PATH_START*/
/*GULP_UIBUILD_PATH_END*/
/** COLOURS **/
/** TYPE **/
/** GRID BREAKPOINTS **/
/** MISC DIMENSIONS **/
/* Overrides Bootstrap defaults */
/*######################################################
  animation
#######################################################*/
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #000;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear; }

.loader,
.loader:after {
  border-radius: 50%;
  width: 60px;
  height: 60px; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*
Icons

Styleguide 9.0.0
*/
/*
Font Icons

- We're using 'gulp-iconfont' to convert svgs into an icon font. Ref: https://www.npmjs.com/package/gulp-iconfont
- Make sure SVGs have a height of around 500px, or else they'll compress badly and look horrible.
- Use lower case with hyphens for file names.
- Class name will follow this convention `icon-my-icon-name`.
- Fill colour should be black.
- We chose a font icon over SVG definitions because it's you can add them purely via CSS, which comes in handy for things like before/after pseudo classes.


Styleguide 9.1.0
*/
@font-face {
  font-family: "chc-icons";
  src: url("../font/chc-icons.eot");
  src: url("../font/chc-icons.eot?#iefix") format("eot"), url("../font/chc-icons.woff") format("woff"), url("../font/chc-icons.ttf") format("truetype"); }

.icon-arrows:before, .icon-close:before, .icon-communication-aids:before, .crd-icon.is-icon-1:before, .icon-computer-devices:before, .crd-icon.is-icon-2:before, .icon-counselling-support:before, .crd-icon.is-icon-3:before, .icon-dropdown:before, .icon-education:before, .crd-icon.is-icon-4:before, .icon-ellipsis:before, .icon-email:before, .icon-facebook:before, .icon-font-size:before, .icon-gallery-arrow-left:before, .icon-gallery-arrow-right:before, .icon-gardening:before, .crd-icon.is-icon-5:before, .icon-getting-connected:before, .crd-icon.is-icon-6:before, .icon-google-plus:before, .icon-health-tracker:before, .crd-icon.is-icon-8:before, .icon-healthcare-professional:before, .crd-icon.is-icon-7:before, .icon-home-safety:before, .crd-icon.is-icon-9:before, .icon-home-services:before, .crd-icon.is-icon-10:before, .icon-instagram:before, .icon-legal-finance:before, .crd-icon.is-icon-11:before, .icon-lifestyle-connection:before, .crd-icon.is-icon-12:before, .icon-linkedin:before, .icon-map-marker:before, .icon-memory-assistance:before, .crd-icon.is-icon-13:before, .icon-minus:before, .icon-mobile-menu:before, .icon-mobility-aids:before, .crd-icon.is-icon-14:before, .crd-icon.is-icon-15:before, .icon-monitoring:before, .crd-icon.is-icon-16:before, .icon-pagination-arrow-left:before, .icon-pagination-arrow-right:before, .icon-pastoral-care:before, .crd-icon.is-icon-17:before, .icon-personal-care:before, .crd-icon.is-icon-18:before, .icon-personal-hygiene:before, .crd-icon.is-icon-19:before, .icon-pet-care:before, .crd-icon.is-icon-20:before, .icon-phone:before, .icon-play:before, .is-card-video .crd-image:before, .icon-plus:before, .icon-print:before, .icon-remove:before, .icon-search:before, .icon-shopping-services:before, .crd-icon.is-icon-21:before, .icon-tick:before, .crd-checkbox input[type="checkbox"]:before, .icon-transport:before, .crd-icon.is-icon-22:before, .icon-twitter:before, .icon-wellness-info:before, .crd-icon.is-icon-23:before, .icon-youtube-play:before, .btn-back:before, .dropdown-toggle > .bs-caret > .caret:before, .dropdown-default .dropdown-toggle .caret:before,
.dropdown-default .btn-default:active .caret:before,
.dropdown-default .u-wysiwygArea > a:active:not(.wysIconBtn) .caret:before,
.dropdown-default .u-wysiwygArea > button:active:not(.wysIconBtn) .caret:before,
.dropdown-default .u-wysiwygArea .wysIconBtn:active .caret:before, .u-wysiwygArea
.dropdown-default .wysIconBtn:active .caret:before,
.dropdown-default .btn-default.active .caret:before,
.dropdown-default .u-wysiwygArea > a.active:not(.wysIconBtn) .caret:before,
.dropdown-default .u-wysiwygArea > button.active:not(.wysIconBtn) .caret:before,
.dropdown-default .u-wysiwygArea .active.wysIconBtn .caret:before, .u-wysiwygArea
.dropdown-default .active.wysIconBtn .caret:before,
.dropdown-default.open > .btn-default.dropdown-toggle .caret:before,
.u-wysiwygArea.dropdown-default.open > a.dropdown-toggle:not(.wysIconBtn) .caret:before,
.u-wysiwygArea.dropdown-default.open > button.dropdown-toggle:not(.wysIconBtn) .caret:before, .u-wysiwygArea
.dropdown-default.open > .dropdown-toggle.wysIconBtn .caret:before, .default-dropdown-toggle .caret:before, .brcr-list > li + li:before, .apHd-gTrans .goog-te-gadget-simple:before, .pgn-prev:before, .pgn-next:before, .pgn-ellipsis:before, .rmCal .noUi-handle:before {
  font-family: "chc-icons";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
  display: block;
  font-size: 0.8125rem; }
  .icon-arrows:before, .icon-close:before, .icon-communication-aids:before, .crd-icon.is-icon-1:before, .icon-computer-devices:before, .crd-icon.is-icon-2:before, .icon-counselling-support:before, .crd-icon.is-icon-3:before, .icon-dropdown:before, .icon-education:before, .crd-icon.is-icon-4:before, .icon-ellipsis:before, .icon-email:before, .icon-facebook:before, .icon-font-size:before, .icon-gallery-arrow-left:before, .icon-gallery-arrow-right:before, .icon-gardening:before, .crd-icon.is-icon-5:before, .icon-getting-connected:before, .crd-icon.is-icon-6:before, .icon-google-plus:before, .icon-health-tracker:before, .crd-icon.is-icon-8:before, .icon-healthcare-professional:before, .crd-icon.is-icon-7:before, .icon-home-safety:before, .crd-icon.is-icon-9:before, .icon-home-services:before, .crd-icon.is-icon-10:before, .icon-instagram:before, .icon-legal-finance:before, .crd-icon.is-icon-11:before, .icon-lifestyle-connection:before, .crd-icon.is-icon-12:before, .icon-linkedin:before, .icon-map-marker:before, .icon-memory-assistance:before, .crd-icon.is-icon-13:before, .icon-minus:before, .icon-mobile-menu:before, .icon-mobility-aids:before, .crd-icon.is-icon-14:before, .crd-icon.is-icon-15:before, .icon-monitoring:before, .crd-icon.is-icon-16:before, .icon-pagination-arrow-left:before, .icon-pagination-arrow-right:before, .icon-pastoral-care:before, .crd-icon.is-icon-17:before, .icon-personal-care:before, .crd-icon.is-icon-18:before, .icon-personal-hygiene:before, .crd-icon.is-icon-19:before, .icon-pet-care:before, .crd-icon.is-icon-20:before, .icon-phone:before, .icon-play:before, .is-card-video .crd-image:before, .icon-plus:before, .icon-print:before, .icon-remove:before, .icon-search:before, .icon-shopping-services:before, .crd-icon.is-icon-21:before, .icon-tick:before, .crd-checkbox input[type="checkbox"]:before, .icon-transport:before, .crd-icon.is-icon-22:before, .icon-twitter:before, .icon-wellness-info:before, .crd-icon.is-icon-23:before, .icon-youtube-play:before, .btn-back:before, .dropdown-toggle > .bs-caret > .caret:before, .dropdown-default .dropdown-toggle .caret:before,
  .dropdown-default .btn-default:active .caret:before,
  .dropdown-default .u-wysiwygArea > a:active:not(.wysIconBtn) .caret:before,
  .dropdown-default .u-wysiwygArea > button:active:not(.wysIconBtn) .caret:before,
  .dropdown-default .u-wysiwygArea .wysIconBtn:active .caret:before, .u-wysiwygArea
  .dropdown-default .wysIconBtn:active .caret:before,
  .dropdown-default .btn-default.active .caret:before,
  .dropdown-default .u-wysiwygArea > a.active:not(.wysIconBtn) .caret:before,
  .dropdown-default .u-wysiwygArea > button.active:not(.wysIconBtn) .caret:before,
  .dropdown-default .u-wysiwygArea .active.wysIconBtn .caret:before, .u-wysiwygArea
  .dropdown-default .active.wysIconBtn .caret:before,
  .dropdown-default.open > .btn-default.dropdown-toggle .caret:before,
  .u-wysiwygArea.dropdown-default.open > a.dropdown-toggle:not(.wysIconBtn) .caret:before,
  .u-wysiwygArea.dropdown-default.open > button.dropdown-toggle:not(.wysIconBtn) .caret:before, .u-wysiwygArea
  .dropdown-default.open > .dropdown-toggle.wysIconBtn .caret:before, .default-dropdown-toggle .caret:before, .brcr-list > li + li:before, .apHd-gTrans .goog-te-gadget-simple:before, .pgn-prev:before, .pgn-next:before, .pgn-ellipsis:before, .rmCal .noUi-handle:before {
    display: block;
    font-size: inherit; }

/*
Icon list

List of icons in the custom 'awi-icons' font.

markup:
<table class="u-table u-table--striped">
  <tr><!-- START ROW -->
          <td>
          <span class="icon-arrows"></span>
        </td>
        <td>
          <span class="icon-close"></span>
        </td>
        <td>
          <span class="icon-communication-aids"></span>
        </td>
        <td>
          <span class="icon-computer-devices"></span>
        </td>
        <td>
          <span class="icon-counselling-support"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-dropdown"></span>
        </td>
        <td>
          <span class="icon-education"></span>
        </td>
        <td>
          <span class="icon-ellipsis"></span>
        </td>
        <td>
          <span class="icon-email"></span>
        </td>
        <td>
          <span class="icon-facebook"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-font-size"></span>
        </td>
        <td>
          <span class="icon-gallery-arrow-left"></span>
        </td>
        <td>
          <span class="icon-gallery-arrow-right"></span>
        </td>
        <td>
          <span class="icon-gardening"></span>
        </td>
        <td>
          <span class="icon-getting-connected"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-google-plus"></span>
        </td>
        <td>
          <span class="icon-health-tracker"></span>
        </td>
        <td>
          <span class="icon-healthcare-professional"></span>
        </td>
        <td>
          <span class="icon-home-safety"></span>
        </td>
        <td>
          <span class="icon-home-services"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-instagram"></span>
        </td>
        <td>
          <span class="icon-legal-finance"></span>
        </td>
        <td>
          <span class="icon-lifestyle-connection"></span>
        </td>
        <td>
          <span class="icon-linkedin"></span>
        </td>
        <td>
          <span class="icon-map-marker"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-memory-assistance"></span>
        </td>
        <td>
          <span class="icon-minus"></span>
        </td>
        <td>
          <span class="icon-mobile-menu"></span>
        </td>
        <td>
          <span class="icon-mobility-aids"></span>
        </td>
        <td>
          <span class="icon-monitoring"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-pagination-arrow-left"></span>
        </td>
        <td>
          <span class="icon-pagination-arrow-right"></span>
        </td>
        <td>
          <span class="icon-pastoral-care"></span>
        </td>
        <td>
          <span class="icon-personal-care"></span>
        </td>
        <td>
          <span class="icon-personal-hygiene"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-pet-care"></span>
        </td>
        <td>
          <span class="icon-phone"></span>
        </td>
        <td>
          <span class="icon-play"></span>
        </td>
        <td>
          <span class="icon-plus"></span>
        </td>
        <td>
          <span class="icon-print"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-remove"></span>
        </td>
        <td>
          <span class="icon-search"></span>
        </td>
        <td>
          <span class="icon-shopping-services"></span>
        </td>
        <td>
          <span class="icon-tick"></span>
        </td>
        <td>
          <span class="icon-transport"></span>
        </td>
      </tr><!-- END ROW -->
      <tr><!-- START ROW -->
          <td>
          <span class="icon-twitter"></span>
        </td>
        <td>
          <span class="icon-wellness-info"></span>
        </td>
        <td>
          <span class="icon-youtube-play"></span>
        </td>
      </tr><!-- last row -->  
</table>

Styleguide 9.1.1
*/
.icon-arrows:before {
  content: ""; }

.icon-close:before {
  content: ""; }

.icon-communication-aids:before, .crd-icon.is-icon-1:before {
  content: ""; }

.icon-computer-devices:before, .crd-icon.is-icon-2:before {
  content: ""; }

.icon-counselling-support:before, .crd-icon.is-icon-3:before {
  content: ""; }

.icon-dropdown:before {
  content: ""; }

.icon-education:before, .crd-icon.is-icon-4:before {
  content: ""; }

.icon-ellipsis:before {
  content: ""; }

.icon-email:before {
  content: ""; }

.icon-facebook:before {
  content: ""; }

.icon-font-size:before {
  content: ""; }

.icon-gallery-arrow-left:before {
  content: ""; }

.icon-gallery-arrow-right:before {
  content: ""; }

.icon-gardening:before, .crd-icon.is-icon-5:before {
  content: ""; }

.icon-getting-connected:before, .crd-icon.is-icon-6:before {
  content: ""; }

.icon-google-plus:before {
  content: ""; }

.icon-health-tracker:before, .crd-icon.is-icon-8:before {
  content: ""; }

.icon-healthcare-professional:before, .crd-icon.is-icon-7:before {
  content: ""; }

.icon-home-safety:before, .crd-icon.is-icon-9:before {
  content: ""; }

.icon-home-services:before, .crd-icon.is-icon-10:before {
  content: ""; }

.icon-instagram:before {
  content: ""; }

.icon-legal-finance:before, .crd-icon.is-icon-11:before {
  content: ""; }

.icon-lifestyle-connection:before, .crd-icon.is-icon-12:before {
  content: ""; }

.icon-linkedin:before {
  content: ""; }

.icon-map-marker:before {
  content: ""; }

.icon-memory-assistance:before, .crd-icon.is-icon-13:before {
  content: ""; }

.icon-minus:before {
  content: ""; }

.icon-mobile-menu:before {
  content: ""; }

.icon-mobility-aids:before, .crd-icon.is-icon-14:before, .crd-icon.is-icon-15:before {
  content: ""; }

.icon-monitoring:before, .crd-icon.is-icon-16:before {
  content: ""; }

.icon-pagination-arrow-left:before {
  content: ""; }

.icon-pagination-arrow-right:before {
  content: ""; }

.icon-pastoral-care:before, .crd-icon.is-icon-17:before {
  content: ""; }

.icon-personal-care:before, .crd-icon.is-icon-18:before {
  content: ""; }

.icon-personal-hygiene:before, .crd-icon.is-icon-19:before {
  content: ""; }

.icon-pet-care:before, .crd-icon.is-icon-20:before {
  content: ""; }

.icon-phone:before {
  content: ""; }

.icon-play:before, .is-card-video .crd-image:before {
  content: ""; }

.icon-plus:before {
  content: ""; }

.icon-print:before {
  content: ""; }

.icon-remove:before {
  content: ""; }

.icon-search:before {
  content: ""; }

.icon-shopping-services:before, .crd-icon.is-icon-21:before {
  content: ""; }

.icon-tick:before, .crd-checkbox input[type="checkbox"]:before {
  content: ""; }

.icon-transport:before, .crd-icon.is-icon-22:before {
  content: ""; }

.icon-twitter:before {
  content: ""; }

.icon-wellness-info:before, .crd-icon.is-icon-23:before {
  content: ""; }

.icon-youtube-play:before {
  content: ""; }

/**
 * DO NOT EDIT THIS FILE. THESE STYLES COME STRAIGHT FROM EPISERVER AS DEFAULTS. YOU SHOULD OVERRIDE THEM IN components/_form-epi.scss
 */
.EPiServerForms .Form__Description {
  margin-bottom: 1rem; }

.EPiServerForms .FormImageSubmitButton {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none; }

.EPiServerForms .Form__Status .Form__Status__Message {
  display: block;
  padding: 1rem;
  margin: 1rem 0; }

.EPiServerForms .Form__Status .Form__Success__Message {
  background-color: #84c8e4;
  color: #333; }

.EPiServerForms .Form__Status .Form__Warning__Message {
  background-color: #fff8aa;
  color: red; }

.EPiServerForms .Form__Status .Form__Readonly__Message {
  display: block;
  padding: 1rem;
  margin: 1rem 0;
  background-color: #fff8aa;
  color: red; }

.EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action {
  display: inline-block;
  padding: inherit;
  vertical-align: middle;
  text-align: center;
  border: 1px solid rgba(41, 128, 189, 0.5);
  border-radius: 4px;
  font-size: inherit;
  height: 2em;
  width: 10em;
  max-width: 10rem;
  color: initial;
  background-image: linear-gradient(top, #fff, #e6e6e6);
  background-image: -webkit-linear-gradient(top, #fff, #e6e6e6); }

.EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:disabled {
  color: GrayText; }

.EPiServerForms .Form__NavigationBar .Form__NavigationBar__ProgressBar {
  display: inline-block;
  border: 1px solid rgba(41, 128, 189, 0.5);
  vertical-align: middle;
  width: 40%; }

.EPiServerForms .Form__NavigationBar .Form__NavigationBar__ProgressBar .Form__NavigationBar__ProgressBar--Progress {
  background-color: rgba(41, 128, 189, 0.5);
  width: 0%;
  height: 1rem; }

.EPiServerForms .Form__NavigationBar .Form__NavigationBar__ProgressBar .Form__NavigationBar__ProgressBar--Text {
  display: none; }

.EPiServerForms .FormStep .FormStep__Description {
  margin-bottom: 1rem; }

.EPiServerForms .Form__Element {
  margin: 0 0 1.5rem 0; }

.EPiServerForms .Form__Element .Form__Element__Caption {
  display: inline-block;
  min-width: 15%;
  vertical-align: top; }

.EPiServerForms .Form__Element .Form__Element__ValidationError, .EPiServerForms .Form__Element .xform .field-validation-valid, .xform .EPiServerForms .Form__Element .field-validation-valid {
  color: red;
  display: block;
  word-wrap: break-word; }

.EPiServerForms .hide {
  display: none; }

.EPiServerForms .FormCaptcha .FormTextbox__Input, .EPiServerForms .FormCaptcha .xform input[type="text"], .xform .EPiServerForms .FormCaptcha input[type="text"], .EPiServerForms .FormCaptcha .xform textarea, .xform .EPiServerForms .FormCaptcha textarea, .EPiServerForms .FormCaptcha .xform input[type="password"], .xform .EPiServerForms .FormCaptcha input[type="password"], .EPiServerForms .FormCaptcha .xform input[type="email"], .xform .EPiServerForms .FormCaptcha input[type="email"], .EPiServerForms .FormCaptcha .xform input[type="number"], .xform .EPiServerForms .FormCaptcha input[type="number"] {
  width: 8rem; }

.EPiServerForms .FormCaptcha .FormCaptcha__Refresh {
  font-size: 1em;
  width: auto;
  height: auto; }

.EPiServerForms .FormChoice--Image .hidden {
  visibility: hidden; }

.EPiServerForms .FormChoice--Image .FormChoice--Image__Item {
  display: inline-block;
  max-width: 40%;
  text-align: center;
  margin: 0.5rem; }

.EPiServerForms .FormChoice--Image .FormChoice__Input:checked ~ img {
  border: 1px solid rgba(41, 128, 189, 0.5); }

.EPiServerForms .FormRange .FormRange__Input {
  max-width: 60%;
  display: inline; }

.EPiServerForms .EditView__InvisibleElement.FormStep {
  display: block;
  border-radius: 4px;
  border-color: rgba(184, 192, 197, 0.6);
  background-color: rgba(184, 192, 197, 0.6);
  color: #000;
  padding: 0.2rem;
  font-family: Verdana;
  box-shadow: 3px 3px 5px #ccc; }

.EPiServerForms .EditView__InvisibleElement.FormStep .FormStep__Warning {
  color: red;
  background-color: #fff8aa;
  display: block;
  word-wrap: break-word; }

.EPiServerForms .EditView__InvisibleElement.FormHidden {
  display: inline-block;
  border-radius: 4px;
  border: 1.5px outset rgba(184, 192, 197, 0.6);
  padding: 0.2rem 1rem;
  min-width: 18rem; }

.EPiServerForms .Warning {
  color: red;
  background-color: #fff8aa;
  display: block;
  word-wrap: break-word; }

.EPiServerForms .Form__Warning {
  color: red;
  background-color: #fff8aa;
  display: block;
  word-wrap: break-word; }

/*!
 * Custom Bootstrap import
 *
 */
/* Overrides Bootstrap defaults */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a {
  background-color: transparent; }

a:active,
a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .navbar {
    display: none; }
  .btn > .caret, .FormSubmitButton > .caret, .xform input[type="submit"] > .caret, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action > .caret, .u-wysiwygArea > a:not(.wysIconBtn) > .caret, .u-wysiwygArea > button:not(.wysIconBtn) > .caret, .u-wysiwygArea .wysIconBtn > .caret,
  .dropup > .btn > .caret,
  .dropup > .FormSubmitButton > .caret, .xform
  .dropup > input[type="submit"] > .caret, .EPiServerForms .Form__NavigationBar
  .dropup > .Form__NavigationBar__Action > .caret,
  .u-wysiwygArea.dropup > a:not(.wysIconBtn) > .caret,
  .u-wysiwygArea.dropup > button:not(.wysIconBtn) > .caret, .u-wysiwygArea
  .dropup > .wysIconBtn > .caret {
    border-top-color: #000 !important; }
  .label {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important; } }

* {
  box-sizing: border-box; }

*:before,
*:after {
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent; }

body {
  font-family: "ProximaNova-Regular", sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #000;
  background-color: #fff; }

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

a {
  color: #3D7EDB;
  text-decoration: none;
  /**
   * Jim Doyle: removed this because it makes it difficult to override
   */ }

figure {
  margin: 0; }

img {
  vertical-align: middle; }

.img-responsive, .slick-slide img, .crd-image img, .crsl-inner img, .hro-image img {
  display: block;
  max-width: 100%;
  height: auto; }

.img-rounded {
  border-radius: 6px; }

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto; }

.img-circle {
  border-radius: 50%; }

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #F3F2F1; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto; }

[role="button"] {
  cursor: pointer; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit; }
  h1 small,
  h1 .small, h2 small,
  h2 .small, h3 small,
  h3 .small, h4 small,
  h4 .small, h5 small,
  h5 .small, h6 small,
  h6 .small,
  .h1 small,
  .h1 .small, .h2 small,
  .h2 .small, .h3 small,
  .h3 .small, .h4 small,
  .h4 .small, .h5 small,
  .h5 .small, .h6 small,
  .h6 .small {
    font-weight: normal;
    line-height: 1;
    color: #e7e7e7; }

h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px; }
  h1 small,
  h1 .small, .h1 small,
  .h1 .small,
  h2 small,
  h2 .small, .h2 small,
  .h2 .small,
  h3 small,
  h3 .small, .h3 small,
  .h3 .small {
    font-size: 65%; }

h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px; }
  h4 small,
  h4 .small, .h4 small,
  .h4 .small,
  h5 small,
  h5 .small, .h5 small,
  .h5 .small,
  h6 small,
  h6 .small, .h6 small,
  .h6 .small {
    font-size: 75%; }

h1, .h1 {
  font-size: 36px; }

h2, .h2 {
  font-size: 30px; }

h3, .h3 {
  font-size: 24px; }

h4, .h4 {
  font-size: 18px; }

h5, .h5 {
  font-size: 14px; }

h6, .h6 {
  font-size: 12px; }

p {
  margin: 0 0 10px; }

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4; }
  @media (min-width: 768px) {
    .lead {
      font-size: 21px; } }

small,
.small {
  font-size: 85%; }

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-center {
  text-align: center; }

.text-justify {
  text-align: justify; }

.text-nowrap {
  white-space: nowrap; }

.text-lowercase {
  text-transform: lowercase; }

.text-uppercase, .initialism {
  text-transform: uppercase; }

.text-capitalize {
  text-transform: capitalize; }

.text-muted {
  color: #e7e7e7; }

.text-primary {
  color: #3D7EDB; }

a.text-primary:hover,
a.text-primary:focus {
  color: #2465c1; }

.text-success {
  color: #3c763d; }

a.text-success:hover,
a.text-success:focus {
  color: #2b542c; }

.text-info {
  color: #31708f; }

a.text-info:hover,
a.text-info:focus {
  color: #245269; }

.text-warning {
  color: #8a6d3b; }

a.text-warning:hover,
a.text-warning:focus {
  color: #66512c; }

.text-danger {
  color: #a94442; }

a.text-danger:hover,
a.text-danger:focus {
  color: #843534; }

.bg-primary {
  color: #fff; }

.bg-primary {
  background-color: #3D7EDB; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #2465c1; }

.bg-success {
  background-color: #dff0d8; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3; }

.bg-info {
  background-color: #d9edf7; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee; }

.bg-warning {
  background-color: #fcf8e3; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5; }

.bg-danger {
  background-color: #f2dede; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9; }

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #F3F2F1; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px; }
  ul ul,
  ul ol,
  ol ul,
  ol ol {
    margin-bottom: 0; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px; }
  .list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px; }

dl {
  margin-top: 0;
  margin-bottom: 20px; }

dt,
dd {
  line-height: 1.42857; }

dt {
  font-weight: bold; }

dd {
  margin-left: 0; }

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table; }

.dl-horizontal dd:after {
  clear: both; }

@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dl-horizontal dd {
    margin-left: 180px; } }

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #e7e7e7; }

.initialism {
  font-size: 90%; }

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #F3F2F1; }
  blockquote p:last-child,
  blockquote ul:last-child,
  blockquote ol:last-child {
    margin-bottom: 0; }
  blockquote footer,
  blockquote small,
  blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #e7e7e7; }
    blockquote footer:before,
    blockquote small:before,
    blockquote .small:before {
      content: '\2014 \00A0'; }

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #F3F2F1;
  border-left: 0;
  text-align: right; }
  .blockquote-reverse footer:before,
  .blockquote-reverse small:before,
  .blockquote-reverse .small:before,
  blockquote.pull-right footer:before,
  blockquote.pull-right small:before,
  blockquote.pull-right .small:before {
    content: ''; }
  .blockquote-reverse footer:after,
  .blockquote-reverse small:after,
  .blockquote-reverse .small:after,
  blockquote.pull-right footer:after,
  blockquote.pull-right small:after,
  blockquote.pull-right .small:after {
    content: '\00A0 \2014'; }

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857; }

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:before, .container:after {
    content: " ";
    display: table; }
  .container:after {
    clear: both; }
  @media (min-width: 768px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
  .container-fluid:after {
    clear: both; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

.col-xs-1 {
  width: 8.33333%; }

.col-xs-2 {
  width: 16.66667%; }

.col-xs-3 {
  width: 25%; }

.col-xs-4 {
  width: 33.33333%; }

.col-xs-5 {
  width: 41.66667%; }

.col-xs-6 {
  width: 50%; }

.col-xs-7 {
  width: 58.33333%; }

.col-xs-8 {
  width: 66.66667%; }

.col-xs-9 {
  width: 75%; }

.col-xs-10 {
  width: 83.33333%; }

.col-xs-11 {
  width: 91.66667%; }

.col-xs-12 {
  width: 100%; }

.col-xs-pull-0 {
  right: auto; }

.col-xs-pull-1 {
  right: 8.33333%; }

.col-xs-pull-2 {
  right: 16.66667%; }

.col-xs-pull-3 {
  right: 25%; }

.col-xs-pull-4 {
  right: 33.33333%; }

.col-xs-pull-5 {
  right: 41.66667%; }

.col-xs-pull-6 {
  right: 50%; }

.col-xs-pull-7 {
  right: 58.33333%; }

.col-xs-pull-8 {
  right: 66.66667%; }

.col-xs-pull-9 {
  right: 75%; }

.col-xs-pull-10 {
  right: 83.33333%; }

.col-xs-pull-11 {
  right: 91.66667%; }

.col-xs-pull-12 {
  right: 100%; }

.col-xs-push-0 {
  left: auto; }

.col-xs-push-1 {
  left: 8.33333%; }

.col-xs-push-2 {
  left: 16.66667%; }

.col-xs-push-3 {
  left: 25%; }

.col-xs-push-4 {
  left: 33.33333%; }

.col-xs-push-5 {
  left: 41.66667%; }

.col-xs-push-6 {
  left: 50%; }

.col-xs-push-7 {
  left: 58.33333%; }

.col-xs-push-8 {
  left: 66.66667%; }

.col-xs-push-9 {
  left: 75%; }

.col-xs-push-10 {
  left: 83.33333%; }

.col-xs-push-11 {
  left: 91.66667%; }

.col-xs-push-12 {
  left: 100%; }

.col-xs-offset-0 {
  margin-left: 0%; }

.col-xs-offset-1 {
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  margin-left: 25%; }

.col-xs-offset-4 {
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  margin-left: 50%; }

.col-xs-offset-7 {
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  margin-left: 75%; }

.col-xs-offset-10 {
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  margin-left: 100%; }

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

table {
  background-color: transparent; }

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #e7e7e7;
  text-align: left; }

th {
  text-align: left; }

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px; }
  .table > thead > tr > th,
  .table > thead > tr > td,
  .table > tbody > tr > th,
  .table > tbody > tr > td,
  .table > tfoot > tr > th,
  .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd; }
  .table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd; }
  .table > caption + thead > tr:first-child > th,
  .table > caption + thead > tr:first-child > td,
  .table > colgroup + thead > tr:first-child > th,
  .table > colgroup + thead > tr:first-child > td,
  .table > thead:first-child > tr:first-child > th,
  .table > thead:first-child > tr:first-child > td {
    border-top: 0; }
  .table > tbody + tbody {
    border-top: 2px solid #ddd; }
  .table .table {
    background-color: #fff; }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px; }

.table-bordered {
  border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td,
  .table-bordered > tbody > tr > th,
  .table-bordered > tbody > tr > td,
  .table-bordered > tfoot > tr > th,
  .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd; }
  .table-bordered > thead > tr > th,
  .table-bordered > thead > tr > td {
    border-bottom-width: 2px; }

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9; }

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5; }

table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column; }

table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell; }

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5; }

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8; }

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8; }

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6; }

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7; }

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3; }

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3; }

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc; }

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede; }

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc; }

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%; }
  @media screen and (max-width: 767px) {
    .table-responsive {
      width: 100%;
      margin-bottom: 15px;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      border: 1px solid #ddd; }
      .table-responsive > .table {
        margin-bottom: 0; }
        .table-responsive > .table > thead > tr > th,
        .table-responsive > .table > thead > tr > td,
        .table-responsive > .table > tbody > tr > th,
        .table-responsive > .table > tbody > tr > td,
        .table-responsive > .table > tfoot > tr > th,
        .table-responsive > .table > tfoot > tr > td {
          white-space: nowrap; }
      .table-responsive > .table-bordered {
        border: 0; }
        .table-responsive > .table-bordered > thead > tr > th:first-child,
        .table-responsive > .table-bordered > thead > tr > td:first-child,
        .table-responsive > .table-bordered > tbody > tr > th:first-child,
        .table-responsive > .table-bordered > tbody > tr > td:first-child,
        .table-responsive > .table-bordered > tfoot > tr > th:first-child,
        .table-responsive > .table-bordered > tfoot > tr > td:first-child {
          border-left: 0; }
        .table-responsive > .table-bordered > thead > tr > th:last-child,
        .table-responsive > .table-bordered > thead > tr > td:last-child,
        .table-responsive > .table-bordered > tbody > tr > th:last-child,
        .table-responsive > .table-bordered > tbody > tr > td:last-child,
        .table-responsive > .table-bordered > tfoot > tr > th:last-child,
        .table-responsive > .table-bordered > tfoot > tr > td:last-child {
          border-right: 0; }
        .table-responsive > .table-bordered > tbody > tr:last-child > th,
        .table-responsive > .table-bordered > tbody > tr:last-child > td,
        .table-responsive > .table-bordered > tfoot > tr:last-child > th,
        .table-responsive > .table-bordered > tfoot > tr:last-child > td {
          border-bottom: 0; } }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #65646A;
  border: 0;
  border-bottom: 1px solid #e5e5e5; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold; }

input[type="search"] {
  box-sizing: border-box; }

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal; }

input[type="file"] {
  display: block; }

input[type="range"] {
  display: block;
  width: 100%; }

select[multiple],
select[size] {
  height: auto; }

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857;
  color: #EEEEEE; }

.form-control, .FormTextbox__Input, .xform input[type="text"], .xform textarea, .xform input[type="password"], .xform input[type="email"], .xform input[type="number"] {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #EEEEEE;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
  .form-control:focus, .FormTextbox__Input:focus, .xform input[type="text"]:focus, .xform textarea:focus, .xform input[type="password"]:focus, .xform input[type="email"]:focus, .xform input[type="number"]:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
  .form-control::-moz-placeholder, .FormTextbox__Input::-moz-placeholder, .xform input[type="text"]::-moz-placeholder, .xform textarea::-moz-placeholder, .xform input[type="password"]::-moz-placeholder, .xform input[type="email"]::-moz-placeholder, .xform input[type="number"]::-moz-placeholder {
    color: #999;
    opacity: 1; }
  .form-control:-ms-input-placeholder, .FormTextbox__Input:-ms-input-placeholder, .xform input[type="text"]:-ms-input-placeholder, .xform textarea:-ms-input-placeholder, .xform input[type="password"]:-ms-input-placeholder, .xform input[type="email"]:-ms-input-placeholder, .xform input[type="number"]:-ms-input-placeholder {
    color: #999; }
  .form-control::-webkit-input-placeholder, .FormTextbox__Input::-webkit-input-placeholder, .xform input[type="text"]::-webkit-input-placeholder, .xform textarea::-webkit-input-placeholder, .xform input[type="password"]::-webkit-input-placeholder, .xform input[type="email"]::-webkit-input-placeholder, .xform input[type="number"]::-webkit-input-placeholder {
    color: #999; }
  .form-control::-ms-expand, .FormTextbox__Input::-ms-expand, .xform input[type="text"]::-ms-expand, .xform textarea::-ms-expand, .xform input[type="password"]::-ms-expand, .xform input[type="email"]::-ms-expand, .xform input[type="number"]::-ms-expand {
    border: 0;
    background-color: transparent; }
  .form-control[disabled], [disabled].FormTextbox__Input, .xform input[disabled][type="text"], .xform textarea[disabled], .xform input[disabled][type="password"], .xform input[disabled][type="email"], .xform input[disabled][type="number"], .form-control[readonly], [readonly].FormTextbox__Input, .xform input[readonly][type="text"], .xform textarea[readonly], .xform input[readonly][type="password"], .xform input[readonly][type="email"], .xform input[readonly][type="number"],
  fieldset[disabled] .form-control,
  fieldset[disabled] .FormTextbox__Input,
  fieldset[disabled] .xform input[type="text"], .xform
  fieldset[disabled] input[type="text"],
  fieldset[disabled] .xform textarea, .xform
  fieldset[disabled] textarea,
  fieldset[disabled] .xform input[type="password"], .xform
  fieldset[disabled] input[type="password"],
  fieldset[disabled] .xform input[type="email"], .xform
  fieldset[disabled] input[type="email"],
  fieldset[disabled] .xform input[type="number"], .xform
  fieldset[disabled] input[type="number"] {
    background-color: #F3F2F1;
    opacity: 1; }
  .form-control[disabled], [disabled].FormTextbox__Input, .xform input[disabled][type="text"], .xform textarea[disabled], .xform input[disabled][type="password"], .xform input[disabled][type="email"], .xform input[disabled][type="number"],
  fieldset[disabled] .form-control,
  fieldset[disabled] .FormTextbox__Input,
  fieldset[disabled] .xform input[type="text"], .xform
  fieldset[disabled] input[type="text"],
  fieldset[disabled] .xform textarea, .xform
  fieldset[disabled] textarea,
  fieldset[disabled] .xform input[type="password"], .xform
  fieldset[disabled] input[type="password"],
  fieldset[disabled] .xform input[type="email"], .xform
  fieldset[disabled] input[type="email"],
  fieldset[disabled] .xform input[type="number"], .xform
  fieldset[disabled] input[type="number"] {
    cursor: not-allowed; }

textarea.form-control, textarea.FormTextbox__Input, .xform textarea {
  height: auto; }

input[type="search"] {
  -webkit-appearance: none; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type="date"].form-control, input[type="date"].FormTextbox__Input, .xform input[type="date"][type="text"], .xform input[type="date"][type="password"], .xform input[type="date"][type="email"], .xform input[type="date"][type="number"],
  input[type="time"].form-control,
  input[type="time"].FormTextbox__Input,
  .xform input[type="time"][type="text"],
  .xform input[type="time"][type="password"],
  .xform input[type="time"][type="email"],
  .xform input[type="time"][type="number"],
  input[type="datetime-local"].form-control,
  input[type="datetime-local"].FormTextbox__Input,
  .xform input[type="datetime-local"][type="text"],
  .xform input[type="datetime-local"][type="password"],
  .xform input[type="datetime-local"][type="email"],
  .xform input[type="datetime-local"][type="number"],
  input[type="month"].form-control,
  input[type="month"].FormTextbox__Input,
  .xform input[type="month"][type="text"],
  .xform input[type="month"][type="password"],
  .xform input[type="month"][type="email"],
  .xform input[type="month"][type="number"] {
    line-height: 34px; }
  input[type="date"].input-sm,
  .input-group-sm input[type="date"],
  input[type="time"].input-sm,
  .input-group-sm
  input[type="time"],
  input[type="datetime-local"].input-sm,
  .input-group-sm
  input[type="datetime-local"],
  input[type="month"].input-sm,
  .input-group-sm
  input[type="month"] {
    line-height: 30px; }
  input[type="date"].input-lg,
  .input-group-lg input[type="date"],
  input[type="time"].input-lg,
  .input-group-lg
  input[type="time"],
  input[type="datetime-local"].input-lg,
  .input-group-lg
  input[type="datetime-local"],
  input[type="month"].input-lg,
  .input-group-lg
  input[type="month"] {
    line-height: 46px; } }

.form-group {
  margin-bottom: 15px; }

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px; }
  .radio label,
  .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer; }

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9; }

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px; }

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer; }

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px; }

input[type="radio"][disabled], input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled]
input[type="checkbox"] {
  cursor: not-allowed; }

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled]
.checkbox-inline {
  cursor: not-allowed; }

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled]
.checkbox label {
  cursor: not-allowed; }

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 34px; }
  .form-control-static.input-lg, .form-control-static.input-sm {
    padding-left: 0;
    padding-right: 0; }

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

select.input-sm {
  height: 30px;
  line-height: 30px; }

textarea.input-sm,
select[multiple].input-sm {
  height: auto; }

.form-group-sm .form-control, .form-group-sm .FormTextbox__Input, .form-group-sm .xform input[type="text"], .xform .form-group-sm input[type="text"], .form-group-sm .xform textarea, .xform .form-group-sm textarea, .form-group-sm .xform input[type="password"], .xform .form-group-sm input[type="password"], .form-group-sm .xform input[type="email"], .xform .form-group-sm input[type="email"], .form-group-sm .xform input[type="number"], .xform .form-group-sm input[type="number"] {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.form-group-sm select.form-control, .form-group-sm select.FormTextbox__Input {
  height: 30px;
  line-height: 30px; }

.form-group-sm textarea.form-control, .form-group-sm textarea.FormTextbox__Input, .form-group-sm .xform textarea, .xform .form-group-sm textarea,
.form-group-sm select[multiple].form-control,
.form-group-sm select[multiple].FormTextbox__Input {
  height: auto; }

.form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5; }

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

select.input-lg {
  height: 46px;
  line-height: 46px; }

textarea.input-lg,
select[multiple].input-lg {
  height: auto; }

.form-group-lg .form-control, .form-group-lg .FormTextbox__Input, .form-group-lg .xform input[type="text"], .xform .form-group-lg input[type="text"], .form-group-lg .xform textarea, .xform .form-group-lg textarea, .form-group-lg .xform input[type="password"], .xform .form-group-lg input[type="password"], .form-group-lg .xform input[type="email"], .xform .form-group-lg input[type="email"], .form-group-lg .xform input[type="number"], .xform .form-group-lg input[type="number"] {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.form-group-lg select.form-control, .form-group-lg select.FormTextbox__Input {
  height: 46px;
  line-height: 46px; }

.form-group-lg textarea.form-control, .form-group-lg textarea.FormTextbox__Input, .form-group-lg .xform textarea, .xform .form-group-lg textarea,
.form-group-lg select[multiple].form-control,
.form-group-lg select[multiple].FormTextbox__Input {
  height: auto; }

.form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.33333; }

.has-feedback {
  position: relative; }
  .has-feedback .form-control, .has-feedback .FormTextbox__Input, .has-feedback .xform input[type="text"], .xform .has-feedback input[type="text"], .has-feedback .xform textarea, .xform .has-feedback textarea, .has-feedback .xform input[type="password"], .xform .has-feedback input[type="password"], .has-feedback .xform input[type="email"], .xform .has-feedback input[type="email"], .has-feedback .xform input[type="number"], .xform .has-feedback input[type="number"] {
    padding-right: 42.5px; }

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none; }

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback,
.form-group-lg .FormTextbox__Input + .form-control-feedback,
.form-group-lg .xform input[type="text"] + .form-control-feedback, .xform
.form-group-lg input[type="text"] + .form-control-feedback,
.form-group-lg .xform textarea + .form-control-feedback, .xform
.form-group-lg textarea + .form-control-feedback,
.form-group-lg .xform input[type="password"] + .form-control-feedback, .xform
.form-group-lg input[type="password"] + .form-control-feedback,
.form-group-lg .xform input[type="email"] + .form-control-feedback, .xform
.form-group-lg input[type="email"] + .form-control-feedback,
.form-group-lg .xform input[type="number"] + .form-control-feedback, .xform
.form-group-lg input[type="number"] + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px; }

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback,
.form-group-sm .FormTextbox__Input + .form-control-feedback,
.form-group-sm .xform input[type="text"] + .form-control-feedback, .xform
.form-group-sm input[type="text"] + .form-control-feedback,
.form-group-sm .xform textarea + .form-control-feedback, .xform
.form-group-sm textarea + .form-control-feedback,
.form-group-sm .xform input[type="password"] + .form-control-feedback, .xform
.form-group-sm input[type="password"] + .form-control-feedback,
.form-group-sm .xform input[type="email"] + .form-control-feedback, .xform
.form-group-sm input[type="email"] + .form-control-feedback,
.form-group-sm .xform input[type="number"] + .form-control-feedback, .xform
.form-group-sm input[type="number"] + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #3c763d; }

.has-success .form-control, .has-success .FormTextbox__Input, .has-success .xform input[type="text"], .xform .has-success input[type="text"], .has-success .xform textarea, .xform .has-success textarea, .has-success .xform input[type="password"], .xform .has-success input[type="password"], .has-success .xform input[type="email"], .xform .has-success input[type="email"], .has-success .xform input[type="number"], .xform .has-success input[type="number"] {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-success .form-control:focus, .has-success .FormTextbox__Input:focus, .has-success .xform input[type="text"]:focus, .xform .has-success input[type="text"]:focus, .has-success .xform textarea:focus, .xform .has-success textarea:focus, .has-success .xform input[type="password"]:focus, .xform .has-success input[type="password"]:focus, .has-success .xform input[type="email"]:focus, .xform .has-success input[type="email"]:focus, .has-success .xform input[type="number"]:focus, .xform .has-success input[type="number"]:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }

.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8; }

.has-success .form-control-feedback {
  color: #3c763d; }

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
  color: #8a6d3b; }

.has-warning .form-control, .has-warning .FormTextbox__Input, .has-warning .xform input[type="text"], .xform .has-warning input[type="text"], .has-warning .xform textarea, .xform .has-warning textarea, .has-warning .xform input[type="password"], .xform .has-warning input[type="password"], .has-warning .xform input[type="email"], .xform .has-warning input[type="email"], .has-warning .xform input[type="number"], .xform .has-warning input[type="number"] {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-warning .form-control:focus, .has-warning .FormTextbox__Input:focus, .has-warning .xform input[type="text"]:focus, .xform .has-warning input[type="text"]:focus, .has-warning .xform textarea:focus, .xform .has-warning textarea:focus, .has-warning .xform input[type="password"]:focus, .xform .has-warning input[type="password"]:focus, .has-warning .xform input[type="email"]:focus, .xform .has-warning input[type="email"]:focus, .has-warning .xform input[type="number"]:focus, .xform .has-warning input[type="number"]:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }

.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3; }

.has-warning .form-control-feedback {
  color: #8a6d3b; }

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442; }

.has-error .form-control, .has-error .FormTextbox__Input, .has-error .xform input[type="text"], .xform .has-error input[type="text"], .has-error .xform textarea, .xform .has-error textarea, .has-error .xform input[type="password"], .xform .has-error input[type="password"], .has-error .xform input[type="email"], .xform .has-error input[type="email"], .has-error .xform input[type="number"], .xform .has-error input[type="number"] {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
  .has-error .form-control:focus, .has-error .FormTextbox__Input:focus, .has-error .xform input[type="text"]:focus, .xform .has-error input[type="text"]:focus, .has-error .xform textarea:focus, .xform .has-error textarea:focus, .has-error .xform input[type="password"]:focus, .xform .has-error input[type="password"]:focus, .has-error .xform input[type="email"]:focus, .xform .has-error input[type="email"]:focus, .has-error .xform input[type="number"]:focus, .xform .has-error input[type="number"]:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }

.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede; }

.has-error .form-control-feedback {
  color: #a94442; }

.has-feedback label ~ .form-control-feedback {
  top: 25px; }

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0; }

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #404040; }

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .form-control, .form-inline .FormTextbox__Input, .form-inline .xform input[type="text"], .xform .form-inline input[type="text"], .form-inline .xform textarea, .xform .form-inline textarea, .form-inline .xform input[type="password"], .xform .form-inline input[type="password"], .form-inline .xform input[type="email"], .xform .form-inline input[type="email"], .form-inline .xform input[type="number"], .xform .form-inline input[type="number"] {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .form-inline .form-control-static {
    display: inline-block; }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle; }
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control,
    .form-inline .input-group .FormTextbox__Input,
    .form-inline .input-group .xform input[type="text"], .xform
    .form-inline .input-group input[type="text"],
    .form-inline .input-group .xform textarea, .xform
    .form-inline .input-group textarea,
    .form-inline .input-group .xform input[type="password"], .xform
    .form-inline .input-group input[type="password"],
    .form-inline .input-group .xform input[type="email"], .xform
    .form-inline .input-group input[type="email"],
    .form-inline .input-group .xform input[type="number"], .xform
    .form-inline .input-group input[type="number"] {
      width: auto; }
  .form-inline .input-group > .form-control, .form-inline .input-group > .FormTextbox__Input, .form-inline .xform .input-group > input[type="text"], .xform .form-inline .input-group > input[type="text"], .form-inline .xform .input-group > textarea, .xform .form-inline .input-group > textarea, .form-inline .xform .input-group > input[type="password"], .xform .form-inline .input-group > input[type="password"], .form-inline .xform .input-group > input[type="email"], .xform .form-inline .input-group > input[type="email"], .form-inline .xform .input-group > input[type="number"], .xform .form-inline .input-group > input[type="number"] {
    width: 100%; }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle; }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle; }
    .form-inline .radio label,
    .form-inline .checkbox label {
      padding-left: 0; }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0; }
  .form-inline .has-feedback .form-control-feedback {
    top: 0; } }

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px; }

.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px; }

.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px; }
  .form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table; }
  .form-horizontal .form-group:after {
    clear: both; }

@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px; } }

.form-horizontal .has-feedback .form-control-feedback {
  right: 15px; }

@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px; } }

@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px; } }

.btn, .FormSubmitButton, .xform input[type="submit"], .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action, .u-wysiwygArea > a:not(.wysIconBtn), .u-wysiwygArea > button:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .btn:focus, .FormSubmitButton:focus, .xform input[type="submit"]:focus, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus, .u-wysiwygArea > a:focus:not(.wysIconBtn), .u-wysiwygArea > button:focus:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:focus, .btn.focus, .focus.FormSubmitButton, .xform input.focus[type="submit"], .EPiServerForms .Form__NavigationBar .focus.Form__NavigationBar__Action, .u-wysiwygArea > a.focus:not(.wysIconBtn), .u-wysiwygArea > button.focus:not(.wysIconBtn), .u-wysiwygArea .focus.wysIconBtn, .btn:active:focus, .FormSubmitButton:active:focus, .xform input[type="submit"]:active:focus, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active:focus, .u-wysiwygArea > a:active:focus:not(.wysIconBtn), .u-wysiwygArea > button:active:focus:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active:focus, .btn:active.focus, .FormSubmitButton:active.focus, .xform input[type="submit"]:active.focus, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active.focus, .u-wysiwygArea > a:active.focus:not(.wysIconBtn), .u-wysiwygArea > button:active.focus:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active.focus, .btn.active:focus, .active.FormSubmitButton:focus, .xform input.active[type="submit"]:focus, .EPiServerForms .Form__NavigationBar .active.Form__NavigationBar__Action:focus, .u-wysiwygArea > a.active:focus:not(.wysIconBtn), .u-wysiwygArea > button.active:focus:not(.wysIconBtn), .u-wysiwygArea .active.wysIconBtn:focus, .btn.active.focus, .active.focus.FormSubmitButton, .xform input.active.focus[type="submit"], .EPiServerForms .Form__NavigationBar .active.focus.Form__NavigationBar__Action, .u-wysiwygArea > a.active.focus:not(.wysIconBtn), .u-wysiwygArea > button.active.focus:not(.wysIconBtn), .u-wysiwygArea .active.focus.wysIconBtn {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .btn:hover, .FormSubmitButton:hover, .xform input[type="submit"]:hover, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:hover, .u-wysiwygArea > a:hover:not(.wysIconBtn), .u-wysiwygArea > button:hover:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:hover, .btn:focus, .FormSubmitButton:focus, .xform input[type="submit"]:focus, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus, .u-wysiwygArea > a:focus:not(.wysIconBtn), .u-wysiwygArea > button:focus:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:focus, .btn.focus, .focus.FormSubmitButton, .xform input.focus[type="submit"], .EPiServerForms .Form__NavigationBar .focus.Form__NavigationBar__Action, .u-wysiwygArea > a.focus:not(.wysIconBtn), .u-wysiwygArea > button.focus:not(.wysIconBtn), .u-wysiwygArea .focus.wysIconBtn {
    color: #fff;
    text-decoration: none; }
  .btn:active, .FormSubmitButton:active, .xform input[type="submit"]:active, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active, .u-wysiwygArea > a:active:not(.wysIconBtn), .u-wysiwygArea > button:active:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active, .btn.active, .active.FormSubmitButton, .xform input.active[type="submit"], .EPiServerForms .Form__NavigationBar .active.Form__NavigationBar__Action, .u-wysiwygArea > a.active:not(.wysIconBtn), .u-wysiwygArea > button.active:not(.wysIconBtn), .u-wysiwygArea .active.wysIconBtn {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn.disabled, .disabled.FormSubmitButton, .xform input.disabled[type="submit"], .EPiServerForms .Form__NavigationBar .disabled.Form__NavigationBar__Action, .u-wysiwygArea > a.disabled:not(.wysIconBtn), .u-wysiwygArea > button.disabled:not(.wysIconBtn), .u-wysiwygArea .disabled.wysIconBtn, .btn[disabled], [disabled].FormSubmitButton, .xform input[disabled][type="submit"], .EPiServerForms .Form__NavigationBar [disabled].Form__NavigationBar__Action, .u-wysiwygArea > a[disabled]:not(.wysIconBtn), .u-wysiwygArea > button[disabled]:not(.wysIconBtn), .u-wysiwygArea [disabled].wysIconBtn,
  fieldset[disabled] .btn,
  fieldset[disabled] .FormSubmitButton,
  fieldset[disabled] .xform input[type="submit"], .xform
  fieldset[disabled] input[type="submit"],
  fieldset[disabled] .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar
  fieldset[disabled] .Form__NavigationBar__Action,
  fieldset[disabled] .u-wysiwygArea > a:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea > button:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea .wysIconBtn, .u-wysiwygArea
  fieldset[disabled] .wysIconBtn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none; }

a.btn.disabled, a.disabled.FormSubmitButton, .EPiServerForms .Form__NavigationBar a.disabled.Form__NavigationBar__Action, .u-wysiwygArea > a.disabled:not(.wysIconBtn), .u-wysiwygArea a.disabled.wysIconBtn,
fieldset[disabled] a.btn,
fieldset[disabled] a.FormSubmitButton,
fieldset[disabled] .EPiServerForms .Form__NavigationBar a.Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar
fieldset[disabled] a.Form__NavigationBar__Action,
fieldset[disabled] .u-wysiwygArea > a:not(.wysIconBtn),
fieldset[disabled] .u-wysiwygArea a.wysIconBtn, .u-wysiwygArea
fieldset[disabled] a.wysIconBtn {
  pointer-events: none; }

.btn-default, .u-wysiwygArea > a:not(.wysIconBtn), .u-wysiwygArea > button:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn {
  color: #fff;
  background-color: transparent;
  border-color: #fff; }
  .btn-default:focus, .u-wysiwygArea > a:focus:not(.wysIconBtn), .u-wysiwygArea > button:focus:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:focus, .btn-default.focus, .u-wysiwygArea > a.focus:not(.wysIconBtn), .u-wysiwygArea > button.focus:not(.wysIconBtn), .u-wysiwygArea .focus.wysIconBtn {
    color: #fff;
    background-color: transparent;
    border-color: #bfbfbf; }
  .btn-default:hover, .u-wysiwygArea > a:hover:not(.wysIconBtn), .u-wysiwygArea > button:hover:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:hover {
    color: #fff;
    background-color: transparent;
    border-color: #e0e0e0; }
  .btn-default:active, .u-wysiwygArea > a:active:not(.wysIconBtn), .u-wysiwygArea > button:active:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active, .btn-default.active, .u-wysiwygArea > a.active:not(.wysIconBtn), .u-wysiwygArea > button.active:not(.wysIconBtn), .u-wysiwygArea .active.wysIconBtn,
  .open > .btn-default.dropdown-toggle,
  .u-wysiwygArea.open > a.dropdown-toggle:not(.wysIconBtn),
  .u-wysiwygArea.open > button.dropdown-toggle:not(.wysIconBtn), .u-wysiwygArea
  .open > .dropdown-toggle.wysIconBtn {
    color: #fff;
    background-color: transparent;
    border-color: #e0e0e0; }
    .btn-default:active:hover, .u-wysiwygArea > a:active:hover:not(.wysIconBtn), .u-wysiwygArea > button:active:hover:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active:hover, .btn-default:active:focus, .u-wysiwygArea > a:active:focus:not(.wysIconBtn), .u-wysiwygArea > button:active:focus:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active:focus, .btn-default:active.focus, .u-wysiwygArea > a:active.focus:not(.wysIconBtn), .u-wysiwygArea > button:active.focus:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active.focus, .btn-default.active:hover, .u-wysiwygArea > a.active:hover:not(.wysIconBtn), .u-wysiwygArea > button.active:hover:not(.wysIconBtn), .u-wysiwygArea .active.wysIconBtn:hover, .btn-default.active:focus, .u-wysiwygArea > a.active:focus:not(.wysIconBtn), .u-wysiwygArea > button.active:focus:not(.wysIconBtn), .u-wysiwygArea .active.wysIconBtn:focus, .btn-default.active.focus, .u-wysiwygArea > a.active.focus:not(.wysIconBtn), .u-wysiwygArea > button.active.focus:not(.wysIconBtn), .u-wysiwygArea .active.focus.wysIconBtn,
    .open > .btn-default.dropdown-toggle:hover,
    .u-wysiwygArea.open > a.dropdown-toggle:hover:not(.wysIconBtn),
    .u-wysiwygArea.open > button.dropdown-toggle:hover:not(.wysIconBtn), .u-wysiwygArea
    .open > .dropdown-toggle.wysIconBtn:hover,
    .open > .btn-default.dropdown-toggle:focus,
    .u-wysiwygArea.open > a.dropdown-toggle:focus:not(.wysIconBtn),
    .u-wysiwygArea.open > button.dropdown-toggle:focus:not(.wysIconBtn), .u-wysiwygArea
    .open > .dropdown-toggle.wysIconBtn:focus,
    .open > .btn-default.dropdown-toggle.focus,
    .u-wysiwygArea.open > a.dropdown-toggle.focus:not(.wysIconBtn),
    .u-wysiwygArea.open > button.dropdown-toggle.focus:not(.wysIconBtn), .u-wysiwygArea
    .open > .dropdown-toggle.focus.wysIconBtn {
      color: #fff;
      background-color: transparent;
      border-color: #bfbfbf; }
  .btn-default:active, .u-wysiwygArea > a:active:not(.wysIconBtn), .u-wysiwygArea > button:active:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:active, .btn-default.active, .u-wysiwygArea > a.active:not(.wysIconBtn), .u-wysiwygArea > button.active:not(.wysIconBtn), .u-wysiwygArea .active.wysIconBtn,
  .open > .btn-default.dropdown-toggle,
  .u-wysiwygArea.open > a.dropdown-toggle:not(.wysIconBtn),
  .u-wysiwygArea.open > button.dropdown-toggle:not(.wysIconBtn), .u-wysiwygArea
  .open > .dropdown-toggle.wysIconBtn {
    background-image: none; }
  .btn-default.disabled:hover, .u-wysiwygArea > a.disabled:hover:not(.wysIconBtn), .u-wysiwygArea > button.disabled:hover:not(.wysIconBtn), .u-wysiwygArea .disabled.wysIconBtn:hover, .btn-default.disabled:focus, .u-wysiwygArea > a.disabled:focus:not(.wysIconBtn), .u-wysiwygArea > button.disabled:focus:not(.wysIconBtn), .u-wysiwygArea .disabled.wysIconBtn:focus, .btn-default.disabled.focus, .u-wysiwygArea > a.disabled.focus:not(.wysIconBtn), .u-wysiwygArea > button.disabled.focus:not(.wysIconBtn), .u-wysiwygArea .disabled.focus.wysIconBtn, .btn-default[disabled]:hover, .u-wysiwygArea > a[disabled]:hover:not(.wysIconBtn), .u-wysiwygArea > button[disabled]:hover:not(.wysIconBtn), .u-wysiwygArea [disabled].wysIconBtn:hover, .btn-default[disabled]:focus, .u-wysiwygArea > a[disabled]:focus:not(.wysIconBtn), .u-wysiwygArea > button[disabled]:focus:not(.wysIconBtn), .u-wysiwygArea [disabled].wysIconBtn:focus, .btn-default[disabled].focus, .u-wysiwygArea > a[disabled].focus:not(.wysIconBtn), .u-wysiwygArea > button[disabled].focus:not(.wysIconBtn), .u-wysiwygArea [disabled].focus.wysIconBtn,
  fieldset[disabled] .btn-default:hover,
  fieldset[disabled] .u-wysiwygArea > a:hover:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea > button:hover:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea .wysIconBtn:hover, .u-wysiwygArea
  fieldset[disabled] .wysIconBtn:hover,
  fieldset[disabled] .btn-default:focus,
  fieldset[disabled] .u-wysiwygArea > a:focus:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea > button:focus:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea .wysIconBtn:focus, .u-wysiwygArea
  fieldset[disabled] .wysIconBtn:focus,
  fieldset[disabled] .btn-default.focus,
  fieldset[disabled] .u-wysiwygArea > a.focus:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea > button.focus:not(.wysIconBtn),
  fieldset[disabled] .u-wysiwygArea .focus.wysIconBtn, .u-wysiwygArea
  fieldset[disabled] .focus.wysIconBtn {
    background-color: transparent;
    border-color: #fff; }
  .btn-default .badge, .u-wysiwygArea > a:not(.wysIconBtn) .badge, .u-wysiwygArea > button:not(.wysIconBtn) .badge, .u-wysiwygArea .wysIconBtn .badge {
    color: transparent;
    background-color: #fff; }

.btn-primary, .FormSubmitButton, .xform input[type="submit"], .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action {
  color: #fff;
  background-color: #3D7EDB;
  border-color: #3D7EDB; }
  .btn-primary:focus, .FormSubmitButton:focus, .xform input[type="submit"]:focus, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus, .btn-primary.focus, .focus.FormSubmitButton, .xform input.focus[type="submit"], .EPiServerForms .Form__NavigationBar .focus.Form__NavigationBar__Action {
    color: #fff;
    background-color: #2465c1;
    border-color: #184381; }
  .btn-primary:hover, .FormSubmitButton:hover, .xform input[type="submit"]:hover, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:hover {
    color: #fff;
    background-color: #2465c1;
    border-color: #2260b9; }
  .btn-primary:active, .FormSubmitButton:active, .xform input[type="submit"]:active, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active, .btn-primary.active, .active.FormSubmitButton, .xform input.active[type="submit"], .EPiServerForms .Form__NavigationBar .active.Form__NavigationBar__Action,
  .open > .btn-primary.dropdown-toggle,
  .open > .dropdown-toggle.FormSubmitButton, .xform
  .open > input.dropdown-toggle[type="submit"], .EPiServerForms .Form__NavigationBar
  .open > .dropdown-toggle.Form__NavigationBar__Action {
    color: #fff;
    background-color: #2465c1;
    border-color: #2260b9; }
    .btn-primary:active:hover, .FormSubmitButton:active:hover, .xform input[type="submit"]:active:hover, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active:hover, .btn-primary:active:focus, .FormSubmitButton:active:focus, .xform input[type="submit"]:active:focus, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active:focus, .btn-primary:active.focus, .FormSubmitButton:active.focus, .xform input[type="submit"]:active.focus, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active.focus, .btn-primary.active:hover, .active.FormSubmitButton:hover, .xform input.active[type="submit"]:hover, .EPiServerForms .Form__NavigationBar .active.Form__NavigationBar__Action:hover, .btn-primary.active:focus, .active.FormSubmitButton:focus, .xform input.active[type="submit"]:focus, .EPiServerForms .Form__NavigationBar .active.Form__NavigationBar__Action:focus, .btn-primary.active.focus, .active.focus.FormSubmitButton, .xform input.active.focus[type="submit"], .EPiServerForms .Form__NavigationBar .active.focus.Form__NavigationBar__Action,
    .open > .btn-primary.dropdown-toggle:hover,
    .open > .dropdown-toggle.FormSubmitButton:hover, .xform
    .open > input.dropdown-toggle[type="submit"]:hover, .EPiServerForms .Form__NavigationBar
    .open > .dropdown-toggle.Form__NavigationBar__Action:hover,
    .open > .btn-primary.dropdown-toggle:focus,
    .open > .dropdown-toggle.FormSubmitButton:focus, .xform
    .open > input.dropdown-toggle[type="submit"]:focus, .EPiServerForms .Form__NavigationBar
    .open > .dropdown-toggle.Form__NavigationBar__Action:focus,
    .open > .btn-primary.dropdown-toggle.focus,
    .open > .dropdown-toggle.focus.FormSubmitButton, .xform
    .open > input.dropdown-toggle.focus[type="submit"], .EPiServerForms .Form__NavigationBar
    .open > .dropdown-toggle.focus.Form__NavigationBar__Action {
      color: #fff;
      background-color: #1e55a3;
      border-color: #184381; }
  .btn-primary:active, .FormSubmitButton:active, .xform input[type="submit"]:active, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active, .btn-primary.active, .active.FormSubmitButton, .xform input.active[type="submit"], .EPiServerForms .Form__NavigationBar .active.Form__NavigationBar__Action,
  .open > .btn-primary.dropdown-toggle,
  .open > .dropdown-toggle.FormSubmitButton, .xform
  .open > input.dropdown-toggle[type="submit"], .EPiServerForms .Form__NavigationBar
  .open > .dropdown-toggle.Form__NavigationBar__Action {
    background-image: none; }
  .btn-primary.disabled:hover, .disabled.FormSubmitButton:hover, .xform input.disabled[type="submit"]:hover, .EPiServerForms .Form__NavigationBar .disabled.Form__NavigationBar__Action:hover, .btn-primary.disabled:focus, .disabled.FormSubmitButton:focus, .xform input.disabled[type="submit"]:focus, .EPiServerForms .Form__NavigationBar .disabled.Form__NavigationBar__Action:focus, .btn-primary.disabled.focus, .disabled.focus.FormSubmitButton, .xform input.disabled.focus[type="submit"], .EPiServerForms .Form__NavigationBar .disabled.focus.Form__NavigationBar__Action, .btn-primary[disabled]:hover, [disabled].FormSubmitButton:hover, .xform input[disabled][type="submit"]:hover, .EPiServerForms .Form__NavigationBar [disabled].Form__NavigationBar__Action:hover, .btn-primary[disabled]:focus, [disabled].FormSubmitButton:focus, .xform input[disabled][type="submit"]:focus, .EPiServerForms .Form__NavigationBar [disabled].Form__NavigationBar__Action:focus, .btn-primary[disabled].focus, [disabled].focus.FormSubmitButton, .xform input[disabled].focus[type="submit"], .EPiServerForms .Form__NavigationBar [disabled].focus.Form__NavigationBar__Action,
  fieldset[disabled] .btn-primary:hover,
  fieldset[disabled] .FormSubmitButton:hover,
  fieldset[disabled] .xform input[type="submit"]:hover, .xform
  fieldset[disabled] input[type="submit"]:hover,
  fieldset[disabled] .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:hover, .EPiServerForms .Form__NavigationBar
  fieldset[disabled] .Form__NavigationBar__Action:hover,
  fieldset[disabled] .btn-primary:focus,
  fieldset[disabled] .FormSubmitButton:focus,
  fieldset[disabled] .xform input[type="submit"]:focus, .xform
  fieldset[disabled] input[type="submit"]:focus,
  fieldset[disabled] .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus, .EPiServerForms .Form__NavigationBar
  fieldset[disabled] .Form__NavigationBar__Action:focus,
  fieldset[disabled] .btn-primary.focus,
  fieldset[disabled] .focus.FormSubmitButton,
  fieldset[disabled] .xform input.focus[type="submit"], .xform
  fieldset[disabled] input.focus[type="submit"],
  fieldset[disabled] .EPiServerForms .Form__NavigationBar .focus.Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar
  fieldset[disabled] .focus.Form__NavigationBar__Action {
    background-color: #3D7EDB;
    border-color: #3D7EDB; }
  .btn-primary .badge, .FormSubmitButton .badge, .xform input[type="submit"] .badge, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action .badge {
    color: #3D7EDB;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #76BD22;
  border-color: #69a71e; }
  .btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #5b921a;
    border-color: #253b0b; }
  .btn-success:hover {
    color: #fff;
    background-color: #5b921a;
    border-color: #487415; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #5b921a;
    border-color: #487415; }
    .btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
    .open > .btn-success.dropdown-toggle:hover,
    .open > .btn-success.dropdown-toggle:focus,
    .open > .btn-success.dropdown-toggle.focus {
      color: #fff;
      background-color: #487415;
      border-color: #253b0b; }
  .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    background-image: none; }
  .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
  fieldset[disabled] .btn-success:hover,
  fieldset[disabled] .btn-success:focus,
  fieldset[disabled] .btn-success.focus {
    background-color: #76BD22;
    border-color: #69a71e; }
  .btn-success .badge {
    color: #76BD22;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #644C9E;
  border-color: #59448d; }
  .btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #4e3b7c;
    border-color: #231a37; }
  .btn-info:hover {
    color: #fff;
    background-color: #4e3b7c;
    border-color: #3f3063; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #4e3b7c;
    border-color: #3f3063; }
    .btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
    .open > .btn-info.dropdown-toggle:hover,
    .open > .btn-info.dropdown-toggle:focus,
    .open > .btn-info.dropdown-toggle.focus {
      color: #fff;
      background-color: #3f3063;
      border-color: #231a37; }
  .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    background-image: none; }
  .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
  fieldset[disabled] .btn-info:hover,
  fieldset[disabled] .btn-info:focus,
  fieldset[disabled] .btn-info.focus {
    background-color: #644C9E;
    border-color: #59448d; }
  .btn-info .badge {
    color: #644C9E;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #FFCF59;
  border-color: #ffc840; }
  .btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #ffc026;
    border-color: #bf8800; }
  .btn-warning:hover {
    color: #fff;
    background-color: #ffc026;
    border-color: #ffb602; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ffc026;
    border-color: #ffb602; }
    .btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
    .open > .btn-warning.dropdown-toggle:hover,
    .open > .btn-warning.dropdown-toggle:focus,
    .open > .btn-warning.dropdown-toggle.focus {
      color: #fff;
      background-color: #ffb602;
      border-color: #bf8800; }
  .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    background-image: none; }
  .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
  fieldset[disabled] .btn-warning:hover,
  fieldset[disabled] .btn-warning:focus,
  fieldset[disabled] .btn-warning.focus {
    background-color: #FFCF59;
    border-color: #ffc840; }
  .btn-warning .badge {
    color: #FFCF59;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #E2231A;
  border-color: #cb1f17; }
  .btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #b41c15;
    border-color: #590e0a; }
  .btn-danger:hover {
    color: #fff;
    background-color: #b41c15;
    border-color: #941711; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b41c15;
    border-color: #941711; }
    .btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
    .open > .btn-danger.dropdown-toggle:hover,
    .open > .btn-danger.dropdown-toggle:focus,
    .open > .btn-danger.dropdown-toggle.focus {
      color: #fff;
      background-color: #941711;
      border-color: #590e0a; }
  .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    background-image: none; }
  .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
  fieldset[disabled] .btn-danger:hover,
  fieldset[disabled] .btn-danger:focus,
  fieldset[disabled] .btn-danger.focus {
    background-color: #E2231A;
    border-color: #cb1f17; }
  .btn-danger .badge {
    color: #E2231A;
    background-color: #fff; }

.btn-link {
  color: #3D7EDB;
  font-weight: normal;
  border-radius: 0; }
  .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
  fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none; }
  .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
  .btn-link:hover, .btn-link:focus {
    color: #2059ac;
    text-decoration: underline;
    background-color: transparent; }
  .btn-link[disabled]:hover, .btn-link[disabled]:focus,
  fieldset[disabled] .btn-link:hover,
  fieldset[disabled] .btn-link:focus {
    color: #e7e7e7;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .FormSubmitButton, .xform .btn-group-lg > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-lg > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-lg > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-lg > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-lg > .wysIconBtn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33333;
  border-radius: 6px; }

.btn-sm, .btn-group-sm > .btn, .btn-group-sm > .FormSubmitButton, .xform .btn-group-sm > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-sm > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-sm > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-sm > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-sm > .wysIconBtn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-xs, .btn-group-xs > .btn, .btn-group-xs > .FormSubmitButton, .EPiServerForms .Form__NavigationBar .btn-group-xs > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-xs > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-xs > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-xs > .wysIconBtn, .FormSubmitButton, .xform input[type="submit"] {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px; }

.btn-block {
  display: block;
  width: 100%; }

.btn-block + .btn-block {
  margin-top: 5px; }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%; }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  .fade.in {
    opacity: 1; }

.collapse {
  display: none; }
  .collapse.in {
    display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.dropup,
.dropdown {
  position: relative; }

.dropdown-toggle:focus {
  outline: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box; }
  .dropdown-menu.pull-right {
    right: 0;
    left: auto; }
  .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #65646A;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #58585d;
  background-color: #f5f5f5; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #3D7EDB; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #e7e7e7; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed; }

.open > .dropdown-menu {
  display: block; }

.open > a {
  outline: 0; }

.dropdown-menu-right {
  left: auto;
  right: 0; }

.dropdown-menu-left {
  left: 0;
  right: auto; }

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857;
  color: #e7e7e7;
  white-space: nowrap; }

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990; }

.pull-right > .dropdown-menu {
  right: 0;
  left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
  content: ""; }

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px; }

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto; }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto; } }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  .btn-group > .btn, .btn-group > .FormSubmitButton, .xform .btn-group > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group > a:not(.wysIconBtn), .u-wysiwygArea.btn-group > button:not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn,
  .btn-group-vertical > .btn,
  .btn-group-vertical > .FormSubmitButton, .xform
  .btn-group-vertical > input[type="submit"], .EPiServerForms .Form__NavigationBar
  .btn-group-vertical > .Form__NavigationBar__Action,
  .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn),
  .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn), .u-wysiwygArea
  .btn-group-vertical > .wysIconBtn {
    position: relative;
    float: left; }
    .btn-group > .btn:hover, .btn-group > .FormSubmitButton:hover, .xform .btn-group > input[type="submit"]:hover, .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action:hover, .u-wysiwygArea.btn-group > a:hover:not(.wysIconBtn), .u-wysiwygArea.btn-group > button:hover:not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn:hover, .btn-group > .btn:focus, .btn-group > .FormSubmitButton:focus, .xform .btn-group > input[type="submit"]:focus, .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action:focus, .u-wysiwygArea.btn-group > a:focus:not(.wysIconBtn), .u-wysiwygArea.btn-group > button:focus:not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn:focus, .btn-group > .btn:active, .btn-group > .FormSubmitButton:active, .xform .btn-group > input[type="submit"]:active, .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action:active, .u-wysiwygArea.btn-group > a:active:not(.wysIconBtn), .u-wysiwygArea.btn-group > button:active:not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn:active, .btn-group > .btn.active, .btn-group > .active.FormSubmitButton, .xform .btn-group > input.active[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group > .active.Form__NavigationBar__Action, .u-wysiwygArea.btn-group > a.active:not(.wysIconBtn), .u-wysiwygArea.btn-group > button.active:not(.wysIconBtn), .u-wysiwygArea .btn-group > .active.wysIconBtn,
    .btn-group-vertical > .btn:hover,
    .btn-group-vertical > .FormSubmitButton:hover, .xform
    .btn-group-vertical > input[type="submit"]:hover, .EPiServerForms .Form__NavigationBar
    .btn-group-vertical > .Form__NavigationBar__Action:hover,
    .u-wysiwygArea.btn-group-vertical > a:hover:not(.wysIconBtn),
    .u-wysiwygArea.btn-group-vertical > button:hover:not(.wysIconBtn), .u-wysiwygArea
    .btn-group-vertical > .wysIconBtn:hover,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .FormSubmitButton:focus, .xform
    .btn-group-vertical > input[type="submit"]:focus, .EPiServerForms .Form__NavigationBar
    .btn-group-vertical > .Form__NavigationBar__Action:focus,
    .u-wysiwygArea.btn-group-vertical > a:focus:not(.wysIconBtn),
    .u-wysiwygArea.btn-group-vertical > button:focus:not(.wysIconBtn), .u-wysiwygArea
    .btn-group-vertical > .wysIconBtn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .FormSubmitButton:active, .xform
    .btn-group-vertical > input[type="submit"]:active, .EPiServerForms .Form__NavigationBar
    .btn-group-vertical > .Form__NavigationBar__Action:active,
    .u-wysiwygArea.btn-group-vertical > a:active:not(.wysIconBtn),
    .u-wysiwygArea.btn-group-vertical > button:active:not(.wysIconBtn), .u-wysiwygArea
    .btn-group-vertical > .wysIconBtn:active,
    .btn-group-vertical > .btn.active,
    .btn-group-vertical > .active.FormSubmitButton, .xform
    .btn-group-vertical > input.active[type="submit"], .EPiServerForms .Form__NavigationBar
    .btn-group-vertical > .active.Form__NavigationBar__Action,
    .u-wysiwygArea.btn-group-vertical > a.active:not(.wysIconBtn),
    .u-wysiwygArea.btn-group-vertical > button.active:not(.wysIconBtn), .u-wysiwygArea
    .btn-group-vertical > .active.wysIconBtn {
      z-index: 2; }

.btn-group .btn + .btn, .btn-group .FormSubmitButton + .btn, .btn-group .xform input[type="submit"] + .btn, .xform .btn-group input[type="submit"] + .btn, .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .btn, .EPiServerForms .Form__NavigationBar .btn-group .Form__NavigationBar__Action + .btn, .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .btn, .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .btn, .btn-group .u-wysiwygArea .wysIconBtn + .btn, .u-wysiwygArea .btn-group .wysIconBtn + .btn, .btn-group .btn + .FormSubmitButton, .btn-group .FormSubmitButton + .FormSubmitButton, .btn-group .xform input[type="submit"] + .FormSubmitButton, .xform .btn-group input[type="submit"] + .FormSubmitButton, .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .FormSubmitButton, .EPiServerForms .Form__NavigationBar .btn-group .Form__NavigationBar__Action + .FormSubmitButton, .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .FormSubmitButton, .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .FormSubmitButton, .btn-group .u-wysiwygArea .wysIconBtn + .FormSubmitButton, .u-wysiwygArea .btn-group .wysIconBtn + .FormSubmitButton, .btn-group .xform .btn + input[type="submit"], .xform .btn-group .btn + input[type="submit"], .btn-group .xform .FormSubmitButton + input[type="submit"], .xform .btn-group .FormSubmitButton + input[type="submit"], .btn-group .xform input[type="submit"] + input[type="submit"], .xform .btn-group input[type="submit"] + input[type="submit"], .btn-group .EPiServerForms .Form__NavigationBar .xform .Form__NavigationBar__Action + input[type="submit"], .xform .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group .xform .Form__NavigationBar__Action + input[type="submit"], .xform .EPiServerForms .Form__NavigationBar .btn-group .Form__NavigationBar__Action + input[type="submit"], .btn-group .xform .u-wysiwygArea > a:not(.wysIconBtn) + input[type="submit"], .xform .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + input[type="submit"], .btn-group .xform .u-wysiwygArea > button:not(.wysIconBtn) + input[type="submit"], .xform .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + input[type="submit"], .btn-group .u-wysiwygArea .xform .wysIconBtn + input[type="submit"], .xform .btn-group .u-wysiwygArea .wysIconBtn + input[type="submit"], .u-wysiwygArea .btn-group .xform .wysIconBtn + input[type="submit"], .xform .u-wysiwygArea .btn-group .wysIconBtn + input[type="submit"], .btn-group .EPiServerForms .Form__NavigationBar .btn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group .btn + .Form__NavigationBar__Action, .btn-group .EPiServerForms .Form__NavigationBar .FormSubmitButton + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group .FormSubmitButton + .Form__NavigationBar__Action, .btn-group .xform .EPiServerForms .Form__NavigationBar input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group .xform input[type="submit"] + .Form__NavigationBar__Action, .xform .btn-group .EPiServerForms .Form__NavigationBar input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .xform .btn-group input[type="submit"] + .Form__NavigationBar__Action, .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group .Form__NavigationBar__Action + .Form__NavigationBar__Action, .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > a:not(.wysIconBtn) + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .Form__NavigationBar__Action, .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > button:not(.wysIconBtn) + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .Form__NavigationBar__Action, .btn-group .u-wysiwygArea .EPiServerForms .Form__NavigationBar .wysIconBtn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group .u-wysiwygArea .wysIconBtn + .Form__NavigationBar__Action, .u-wysiwygArea .btn-group .EPiServerForms .Form__NavigationBar .wysIconBtn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .u-wysiwygArea .btn-group .wysIconBtn + .Form__NavigationBar__Action, .btn-group .u-wysiwygArea > .btn + a:not(.wysIconBtn), .btn-group .u-wysiwygArea > .FormSubmitButton + a:not(.wysIconBtn), .btn-group .xform .u-wysiwygArea > input[type="submit"] + a:not(.wysIconBtn), .xform .btn-group .u-wysiwygArea > input[type="submit"] + a:not(.wysIconBtn), .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > .Form__NavigationBar__Action + a:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .btn-group .u-wysiwygArea > .Form__NavigationBar__Action + a:not(.wysIconBtn), .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + a:not(.wysIconBtn), .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + a:not(.wysIconBtn), .btn-group .u-wysiwygArea > .wysIconBtn + a:not(.wysIconBtn), .u-wysiwygArea .btn-group .u-wysiwygArea > .wysIconBtn + a:not(.wysIconBtn), .btn-group .u-wysiwygArea > .btn + button:not(.wysIconBtn), .btn-group .u-wysiwygArea > .FormSubmitButton + button:not(.wysIconBtn), .btn-group .xform .u-wysiwygArea > input[type="submit"] + button:not(.wysIconBtn), .xform .btn-group .u-wysiwygArea > input[type="submit"] + button:not(.wysIconBtn), .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > .Form__NavigationBar__Action + button:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .btn-group .u-wysiwygArea > .Form__NavigationBar__Action + button:not(.wysIconBtn), .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + button:not(.wysIconBtn), .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + button:not(.wysIconBtn), .btn-group .u-wysiwygArea > .wysIconBtn + button:not(.wysIconBtn), .u-wysiwygArea .btn-group .u-wysiwygArea > .wysIconBtn + button:not(.wysIconBtn), .btn-group .u-wysiwygArea .btn + .wysIconBtn, .u-wysiwygArea .btn-group .btn + .wysIconBtn, .btn-group .u-wysiwygArea .FormSubmitButton + .wysIconBtn, .u-wysiwygArea .btn-group .FormSubmitButton + .wysIconBtn, .btn-group .xform .u-wysiwygArea input[type="submit"] + .wysIconBtn, .u-wysiwygArea .btn-group .xform input[type="submit"] + .wysIconBtn, .xform .btn-group .u-wysiwygArea input[type="submit"] + .wysIconBtn, .u-wysiwygArea .xform .btn-group input[type="submit"] + .wysIconBtn, .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .wysIconBtn, .EPiServerForms .Form__NavigationBar .btn-group .u-wysiwygArea .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea .EPiServerForms .Form__NavigationBar .btn-group .Form__NavigationBar__Action + .wysIconBtn, .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .wysIconBtn, .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .wysIconBtn, .btn-group .u-wysiwygArea .wysIconBtn + .wysIconBtn, .u-wysiwygArea .btn-group .wysIconBtn + .wysIconBtn,
.btn-group .btn + .btn-group,
.btn-group .FormSubmitButton + .btn-group,
.btn-group .xform input[type="submit"] + .btn-group, .xform
.btn-group input[type="submit"] + .btn-group,
.btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .btn-group, .EPiServerForms .Form__NavigationBar
.btn-group .Form__NavigationBar__Action + .btn-group,
.btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .btn-group,
.btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .btn-group,
.btn-group .u-wysiwygArea .wysIconBtn + .btn-group, .u-wysiwygArea
.btn-group .wysIconBtn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .FormSubmitButton,
.btn-group .xform .btn-group + input[type="submit"], .xform
.btn-group .btn-group + input[type="submit"],
.btn-group .EPiServerForms .Form__NavigationBar .btn-group + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar
.btn-group .btn-group + .Form__NavigationBar__Action,
.btn-group .u-wysiwygArea > .btn-group + a:not(.wysIconBtn),
.btn-group .u-wysiwygArea > .btn-group + button:not(.wysIconBtn),
.btn-group .u-wysiwygArea .btn-group + .wysIconBtn, .u-wysiwygArea
.btn-group .btn-group + .wysIconBtn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px; }

.btn-toolbar {
  margin-left: -5px; }
  .btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table; }
  .btn-toolbar:after {
    clear: both; }
  .btn-toolbar .btn, .btn-toolbar .FormSubmitButton, .btn-toolbar .xform input[type="submit"], .xform .btn-toolbar input[type="submit"], .btn-toolbar .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-toolbar .Form__NavigationBar__Action, .btn-toolbar .u-wysiwygArea > a:not(.wysIconBtn), .btn-toolbar .u-wysiwygArea > button:not(.wysIconBtn), .btn-toolbar .u-wysiwygArea .wysIconBtn, .u-wysiwygArea .btn-toolbar .wysIconBtn,
  .btn-toolbar .btn-group,
  .btn-toolbar .input-group {
    float: left; }
  .btn-toolbar > .btn, .btn-toolbar > .FormSubmitButton, .xform .btn-toolbar > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-toolbar > .Form__NavigationBar__Action, .u-wysiwygArea.btn-toolbar > a:not(.wysIconBtn), .u-wysiwygArea.btn-toolbar > button:not(.wysIconBtn), .u-wysiwygArea .btn-toolbar > .wysIconBtn,
  .btn-toolbar > .btn-group,
  .btn-toolbar > .input-group {
    margin-left: 5px; }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle), .btn-group > .FormSubmitButton:not(:first-child):not(:last-child):not(.dropdown-toggle), .xform .btn-group > input[type="submit"]:not(:first-child):not(:last-child):not(.dropdown-toggle), .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action:not(:first-child):not(:last-child):not(.dropdown-toggle), .u-wysiwygArea.btn-group > a:not(:first-child):not(:last-child):not(.dropdown-toggle):not(.wysIconBtn), .u-wysiwygArea.btn-group > button:not(:first-child):not(:last-child):not(.dropdown-toggle):not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0; }

.btn-group > .btn:first-child, .btn-group > .FormSubmitButton:first-child, .xform .btn-group > input[type="submit"]:first-child, .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action:first-child, .u-wysiwygArea.btn-group > a:first-child:not(.wysIconBtn), .u-wysiwygArea.btn-group > button:first-child:not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn:first-child {
  margin-left: 0; }
  .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle), .btn-group > .FormSubmitButton:first-child:not(:last-child):not(.dropdown-toggle), .xform .btn-group > input[type="submit"]:first-child:not(:last-child):not(.dropdown-toggle), .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action:first-child:not(:last-child):not(.dropdown-toggle), .u-wysiwygArea.btn-group > a:first-child:not(:last-child):not(.dropdown-toggle):not(.wysIconBtn), .u-wysiwygArea.btn-group > button:first-child:not(:last-child):not(.dropdown-toggle):not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .FormSubmitButton:last-child:not(:first-child), .xform .btn-group > input[type="submit"]:last-child:not(:first-child), .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action:last-child:not(:first-child), .u-wysiwygArea.btn-group > a:last-child:not(:first-child):not(.wysIconBtn), .u-wysiwygArea.btn-group > button:last-child:not(:first-child):not(.wysIconBtn), .u-wysiwygArea .btn-group > .wysIconBtn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group > .btn-group {
  float: left; }

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, .btn-group > .btn-group:not(:first-child):not(:last-child) > .FormSubmitButton, .xform .btn-group > .btn-group:not(:first-child):not(:last-child) > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group > .btn-group:not(:first-child):not(:last-child) > .Form__NavigationBar__Action, .btn-group > .u-wysiwygArea.btn-group:not(:first-child):not(:last-child) > a:not(.wysIconBtn), .btn-group > .u-wysiwygArea.btn-group:not(:first-child):not(:last-child) > button:not(.wysIconBtn), .u-wysiwygArea .btn-group > .btn-group:not(:first-child):not(:last-child) > .wysIconBtn {
  border-radius: 0; }

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .FormSubmitButton:last-child, .xform .btn-group > .btn-group:first-child:not(:last-child) > input[type="submit"]:last-child, .EPiServerForms .Form__NavigationBar .btn-group > .btn-group:first-child:not(:last-child) > .Form__NavigationBar__Action:last-child, .btn-group > .u-wysiwygArea.btn-group:first-child:not(:last-child) > a:last-child:not(.wysIconBtn), .btn-group > .u-wysiwygArea.btn-group:first-child:not(:last-child) > button:last-child:not(.wysIconBtn), .u-wysiwygArea .btn-group > .btn-group:first-child:not(:last-child) > .wysIconBtn:last-child,
.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child, .btn-group > .btn-group:last-child:not(:first-child) > .FormSubmitButton:first-child, .xform .btn-group > .btn-group:last-child:not(:first-child) > input[type="submit"]:first-child, .EPiServerForms .Form__NavigationBar .btn-group > .btn-group:last-child:not(:first-child) > .Form__NavigationBar__Action:first-child, .btn-group > .u-wysiwygArea.btn-group:last-child:not(:first-child) > a:first-child:not(.wysIconBtn), .btn-group > .u-wysiwygArea.btn-group:last-child:not(:first-child) > button:first-child:not(.wysIconBtn), .u-wysiwygArea .btn-group > .btn-group:last-child:not(:first-child) > .wysIconBtn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0; }

.btn-group > .btn + .dropdown-toggle, .btn-group > .FormSubmitButton + .dropdown-toggle, .xform .btn-group > input[type="submit"] + .dropdown-toggle, .EPiServerForms .Form__NavigationBar .btn-group > .Form__NavigationBar__Action + .dropdown-toggle, .u-wysiwygArea.btn-group > a:not(.wysIconBtn) + .dropdown-toggle, .u-wysiwygArea.btn-group > button:not(.wysIconBtn) + .dropdown-toggle, .u-wysiwygArea .btn-group > .wysIconBtn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle, .btn-group-lg.btn-group > .FormSubmitButton + .dropdown-toggle, .xform .btn-group-lg.btn-group > input[type="submit"] + .dropdown-toggle, .EPiServerForms .Form__NavigationBar .btn-group-lg.btn-group > .Form__NavigationBar__Action + .dropdown-toggle, .u-wysiwygArea.btn-group-lg.btn-group > a:not(.wysIconBtn) + .dropdown-toggle, .u-wysiwygArea.btn-group-lg.btn-group > button:not(.wysIconBtn) + .dropdown-toggle, .u-wysiwygArea .btn-group-lg.btn-group > .wysIconBtn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px; }

.btn-group.open .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  .btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none; }

.btn .caret, .FormSubmitButton .caret, .xform input[type="submit"] .caret, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action .caret, .u-wysiwygArea > a:not(.wysIconBtn) .caret, .u-wysiwygArea > button:not(.wysIconBtn) .caret, .u-wysiwygArea .wysIconBtn .caret {
  margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret, .btn-group-lg > .FormSubmitButton .caret, .xform .btn-group-lg > input[type="submit"] .caret, .EPiServerForms .Form__NavigationBar .btn-group-lg > .Form__NavigationBar__Action .caret, .u-wysiwygArea.btn-group-lg > a:not(.wysIconBtn) .caret, .u-wysiwygArea.btn-group-lg > button:not(.wysIconBtn) .caret, .u-wysiwygArea .btn-group-lg > .wysIconBtn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret, .dropup .btn-group-lg > .FormSubmitButton .caret, .dropup .xform .btn-group-lg > input[type="submit"] .caret, .xform .dropup .btn-group-lg > input[type="submit"] .caret, .dropup .EPiServerForms .Form__NavigationBar .btn-group-lg > .Form__NavigationBar__Action .caret, .EPiServerForms .Form__NavigationBar .dropup .btn-group-lg > .Form__NavigationBar__Action .caret, .dropup .u-wysiwygArea.btn-group-lg > a:not(.wysIconBtn) .caret, .dropup .u-wysiwygArea.btn-group-lg > button:not(.wysIconBtn) .caret, .dropup .u-wysiwygArea .btn-group-lg > .wysIconBtn .caret, .u-wysiwygArea .dropup .btn-group-lg > .wysIconBtn .caret {
  border-width: 0 5px 5px; }

.btn-group-vertical > .btn, .btn-group-vertical > .FormSubmitButton, .xform .btn-group-vertical > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .wysIconBtn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn,
.btn-group-vertical > .btn-group > .FormSubmitButton, .xform
.btn-group-vertical > .btn-group > input[type="submit"], .EPiServerForms .Form__NavigationBar
.btn-group-vertical > .btn-group > .Form__NavigationBar__Action,
.btn-group-vertical > .u-wysiwygArea.btn-group > a:not(.wysIconBtn),
.btn-group-vertical > .u-wysiwygArea.btn-group > button:not(.wysIconBtn), .u-wysiwygArea
.btn-group-vertical > .btn-group > .wysIconBtn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%; }

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table; }

.btn-group-vertical > .btn-group:after {
  clear: both; }

.btn-group-vertical > .btn-group > .btn, .btn-group-vertical > .btn-group > .FormSubmitButton, .xform .btn-group-vertical > .btn-group > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-vertical > .btn-group > .Form__NavigationBar__Action, .btn-group-vertical > .u-wysiwygArea.btn-group > a:not(.wysIconBtn), .btn-group-vertical > .u-wysiwygArea.btn-group > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .btn-group > .wysIconBtn {
  float: none; }

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .FormSubmitButton + .btn, .xform .btn-group-vertical > input[type="submit"] + .btn, .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action + .btn, .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + .btn, .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + .btn, .u-wysiwygArea .btn-group-vertical > .wysIconBtn + .btn, .btn-group-vertical > .btn + .FormSubmitButton, .btn-group-vertical > .FormSubmitButton + .FormSubmitButton, .xform .btn-group-vertical > input[type="submit"] + .FormSubmitButton, .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action + .FormSubmitButton, .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + .FormSubmitButton, .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + .FormSubmitButton, .u-wysiwygArea .btn-group-vertical > .wysIconBtn + .FormSubmitButton, .xform .btn-group-vertical > .btn + input[type="submit"], .xform .btn-group-vertical > .FormSubmitButton + input[type="submit"], .xform .btn-group-vertical > input[type="submit"] + input[type="submit"], .EPiServerForms .Form__NavigationBar .xform .btn-group-vertical > .Form__NavigationBar__Action + input[type="submit"], .xform .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action + input[type="submit"], .xform .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + input[type="submit"], .xform .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + input[type="submit"], .u-wysiwygArea .xform .btn-group-vertical > .wysIconBtn + input[type="submit"], .xform .u-wysiwygArea .btn-group-vertical > .wysIconBtn + input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-vertical > .btn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group-vertical > .FormSubmitButton + .Form__NavigationBar__Action, .xform .EPiServerForms .Form__NavigationBar .btn-group-vertical > input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .xform .btn-group-vertical > input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + .Form__NavigationBar__Action, .u-wysiwygArea .EPiServerForms .Form__NavigationBar .btn-group-vertical > .wysIconBtn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .u-wysiwygArea .btn-group-vertical > .wysIconBtn + .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-vertical > .btn + a:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > .FormSubmitButton + a:not(.wysIconBtn), .xform .u-wysiwygArea.btn-group-vertical > input[type="submit"] + a:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .u-wysiwygArea.btn-group-vertical > .Form__NavigationBar__Action + a:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + a:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + a:not(.wysIconBtn), .u-wysiwygArea .u-wysiwygArea.btn-group-vertical > .wysIconBtn + a:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > .btn + button:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > .FormSubmitButton + button:not(.wysIconBtn), .xform .u-wysiwygArea.btn-group-vertical > input[type="submit"] + button:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .u-wysiwygArea.btn-group-vertical > .Form__NavigationBar__Action + button:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + button:not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + button:not(.wysIconBtn), .u-wysiwygArea .u-wysiwygArea.btn-group-vertical > .wysIconBtn + button:not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .btn + .wysIconBtn, .u-wysiwygArea .btn-group-vertical > .FormSubmitButton + .wysIconBtn, .xform .u-wysiwygArea .btn-group-vertical > input[type="submit"] + .wysIconBtn, .u-wysiwygArea .xform .btn-group-vertical > input[type="submit"] + .wysIconBtn, .EPiServerForms .Form__NavigationBar .u-wysiwygArea .btn-group-vertical > .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + .wysIconBtn, .u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + .wysIconBtn, .u-wysiwygArea .btn-group-vertical > .wysIconBtn + .wysIconBtn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .FormSubmitButton + .btn-group, .xform
.btn-group-vertical > input[type="submit"] + .btn-group, .EPiServerForms .Form__NavigationBar
.btn-group-vertical > .Form__NavigationBar__Action + .btn-group,
.u-wysiwygArea.btn-group-vertical > a:not(.wysIconBtn) + .btn-group,
.u-wysiwygArea.btn-group-vertical > button:not(.wysIconBtn) + .btn-group, .u-wysiwygArea
.btn-group-vertical > .wysIconBtn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .FormSubmitButton, .xform
.btn-group-vertical > .btn-group + input[type="submit"], .EPiServerForms .Form__NavigationBar
.btn-group-vertical > .btn-group + .Form__NavigationBar__Action,
.u-wysiwygArea.btn-group-vertical > .btn-group + a:not(.wysIconBtn),
.u-wysiwygArea.btn-group-vertical > .btn-group + button:not(.wysIconBtn), .u-wysiwygArea
.btn-group-vertical > .btn-group + .wysIconBtn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0; }

.btn-group-vertical > .btn:not(:first-child):not(:last-child), .btn-group-vertical > .FormSubmitButton:not(:first-child):not(:last-child), .xform .btn-group-vertical > input[type="submit"]:not(:first-child):not(:last-child), .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action:not(:first-child):not(:last-child), .u-wysiwygArea.btn-group-vertical > a:not(:first-child):not(:last-child):not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > button:not(:first-child):not(:last-child):not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .wysIconBtn:not(:first-child):not(:last-child) {
  border-radius: 0; }

.btn-group-vertical > .btn:first-child:not(:last-child), .btn-group-vertical > .FormSubmitButton:first-child:not(:last-child), .xform .btn-group-vertical > input[type="submit"]:first-child:not(:last-child), .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action:first-child:not(:last-child), .u-wysiwygArea.btn-group-vertical > a:first-child:not(:last-child):not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > button:first-child:not(:last-child):not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .wysIconBtn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child), .btn-group-vertical > .FormSubmitButton:last-child:not(:first-child), .xform .btn-group-vertical > input[type="submit"]:last-child:not(:first-child), .EPiServerForms .Form__NavigationBar .btn-group-vertical > .Form__NavigationBar__Action:last-child:not(:first-child), .u-wysiwygArea.btn-group-vertical > a:last-child:not(:first-child):not(.wysIconBtn), .u-wysiwygArea.btn-group-vertical > button:last-child:not(:first-child):not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .wysIconBtn:last-child:not(:first-child) {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .FormSubmitButton, .xform .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .Form__NavigationBar__Action, .btn-group-vertical > .u-wysiwygArea.btn-group:not(:first-child):not(:last-child) > a:not(.wysIconBtn), .btn-group-vertical > .u-wysiwygArea.btn-group:not(:first-child):not(:last-child) > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .wysIconBtn {
  border-radius: 0; }

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .FormSubmitButton:last-child, .xform .btn-group-vertical > .btn-group:first-child:not(:last-child) > input[type="submit"]:last-child, .EPiServerForms .Form__NavigationBar .btn-group-vertical > .btn-group:first-child:not(:last-child) > .Form__NavigationBar__Action:last-child, .btn-group-vertical > .u-wysiwygArea.btn-group:first-child:not(:last-child) > a:last-child:not(.wysIconBtn), .btn-group-vertical > .u-wysiwygArea.btn-group:first-child:not(:last-child) > button:last-child:not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .btn-group:first-child:not(:last-child) > .wysIconBtn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child, .btn-group-vertical > .btn-group:last-child:not(:first-child) > .FormSubmitButton:first-child, .xform .btn-group-vertical > .btn-group:last-child:not(:first-child) > input[type="submit"]:first-child, .EPiServerForms .Form__NavigationBar .btn-group-vertical > .btn-group:last-child:not(:first-child) > .Form__NavigationBar__Action:first-child, .btn-group-vertical > .u-wysiwygArea.btn-group:last-child:not(:first-child) > a:first-child:not(.wysIconBtn), .btn-group-vertical > .u-wysiwygArea.btn-group:last-child:not(:first-child) > button:first-child:not(.wysIconBtn), .u-wysiwygArea .btn-group-vertical > .btn-group:last-child:not(:first-child) > .wysIconBtn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified > .btn, .btn-group-justified > .FormSubmitButton, .xform .btn-group-justified > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-justified > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-justified > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-justified > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-justified > .wysIconBtn,
  .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
  .btn-group-justified > .btn-group .btn, .btn-group-justified > .btn-group .FormSubmitButton, .btn-group-justified > .btn-group .xform input[type="submit"], .xform .btn-group-justified > .btn-group input[type="submit"], .btn-group-justified > .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group-justified > .btn-group .Form__NavigationBar__Action, .btn-group-justified > .btn-group .u-wysiwygArea > a:not(.wysIconBtn), .btn-group-justified > .btn-group .u-wysiwygArea > button:not(.wysIconBtn), .btn-group-justified > .btn-group .u-wysiwygArea .wysIconBtn, .u-wysiwygArea .btn-group-justified > .btn-group .wysIconBtn {
    width: 100%; }
  .btn-group-justified > .btn-group .dropdown-menu {
    left: auto; }

[data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .FormSubmitButton input[type="radio"], .xform [data-toggle="buttons"] > input[type="submit"] input[type="radio"], .EPiServerForms .Form__NavigationBar [data-toggle="buttons"] > .Form__NavigationBar__Action input[type="radio"], .u-wysiwygArea[data-toggle="buttons"] > a:not(.wysIconBtn) input[type="radio"], .u-wysiwygArea[data-toggle="buttons"] > button:not(.wysIconBtn) input[type="radio"], .u-wysiwygArea [data-toggle="buttons"] > .wysIconBtn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .FormSubmitButton input[type="checkbox"], .xform
[data-toggle="buttons"] > input[type="submit"] input[type="checkbox"], .EPiServerForms .Form__NavigationBar
[data-toggle="buttons"] > .Form__NavigationBar__Action input[type="checkbox"],
.u-wysiwygArea[data-toggle="buttons"] > a:not(.wysIconBtn) input[type="checkbox"],
.u-wysiwygArea[data-toggle="buttons"] > button:not(.wysIconBtn) input[type="checkbox"], .u-wysiwygArea
[data-toggle="buttons"] > .wysIconBtn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .FormSubmitButton input[type="radio"], .xform
[data-toggle="buttons"] > .btn-group > input[type="submit"] input[type="radio"], .EPiServerForms .Form__NavigationBar
[data-toggle="buttons"] > .btn-group > .Form__NavigationBar__Action input[type="radio"],
[data-toggle="buttons"] > .u-wysiwygArea.btn-group > a:not(.wysIconBtn) input[type="radio"],
[data-toggle="buttons"] > .u-wysiwygArea.btn-group > button:not(.wysIconBtn) input[type="radio"], .u-wysiwygArea
[data-toggle="buttons"] > .btn-group > .wysIconBtn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .FormSubmitButton input[type="checkbox"], .xform
[data-toggle="buttons"] > .btn-group > input[type="submit"] input[type="checkbox"], .EPiServerForms .Form__NavigationBar
[data-toggle="buttons"] > .btn-group > .Form__NavigationBar__Action input[type="checkbox"],
[data-toggle="buttons"] > .u-wysiwygArea.btn-group > a:not(.wysIconBtn) input[type="checkbox"],
[data-toggle="buttons"] > .u-wysiwygArea.btn-group > button:not(.wysIconBtn) input[type="checkbox"], .u-wysiwygArea
[data-toggle="buttons"] > .btn-group > .wysIconBtn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none; }
  .nav:before, .nav:after {
    content: " ";
    display: table; }
  .nav:after {
    clear: both; }
  .nav > li {
    position: relative;
    display: block; }
    .nav > li > a {
      position: relative;
      display: block;
      padding: 10px 15px; }
      .nav > li > a:hover, .nav > li > a:focus {
        text-decoration: none;
        background-color: #F3F2F1; }
    .nav > li.disabled > a {
      color: #e7e7e7; }
      .nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
        color: #e7e7e7;
        text-decoration: none;
        background-color: transparent;
        cursor: not-allowed; }
  .nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #F3F2F1;
    border-color: #3D7EDB; }
  .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
  .nav > li > a > img {
    max-width: none; }

.nav-tabs {
  border-bottom: 1px solid #ddd; }
  .nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
    .nav-tabs > li > a {
      margin-right: 2px;
      line-height: 1.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #F3F2F1 #F3F2F1 #ddd; }
    .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
      color: #EEEEEE;
      background-color: #fff;
      border: 1px solid #ddd;
      border-bottom-color: transparent;
      cursor: default; }

.nav-pills > li {
  float: left; }
  .nav-pills > li > a {
    border-radius: 4px; }
  .nav-pills > li + li {
    margin-left: 2px; }
  .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #3D7EDB; }

.nav-stacked > li {
  float: none; }
  .nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0; }

.nav-justified, .nav-tabs.nav-justified {
  width: 100%; }
  .nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
      text-align: center;
      margin-bottom: 5px; }
  .nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
  @media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
      display: table-cell;
      width: 1%; }
      .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0; }
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px; }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
  @media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
      border-bottom: 1px solid #ddd;
      border-radius: 4px 4px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
      border-bottom-color: #fff; } }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
  height: 50px; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  .navbar-brand > img {
    display: block; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: 7.5px -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: 15px;
          padding-bottom: 15px; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  margin-bottom: 8px; }
  @media (min-width: 768px) {
    .navbar-form .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .form-control, .navbar-form .FormTextbox__Input, .navbar-form .xform input[type="text"], .xform .navbar-form input[type="text"], .navbar-form .xform textarea, .xform .navbar-form textarea, .navbar-form .xform input[type="password"], .xform .navbar-form input[type="password"], .navbar-form .xform input[type="email"], .xform .navbar-form input[type="email"], .navbar-form .xform input[type="number"], .xform .navbar-form input[type="number"] {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .navbar-form .form-control-static {
      display: inline-block; }
    .navbar-form .input-group {
      display: inline-table;
      vertical-align: middle; }
      .navbar-form .input-group .input-group-addon,
      .navbar-form .input-group .input-group-btn,
      .navbar-form .input-group .form-control,
      .navbar-form .input-group .FormTextbox__Input,
      .navbar-form .input-group .xform input[type="text"], .xform
      .navbar-form .input-group input[type="text"],
      .navbar-form .input-group .xform textarea, .xform
      .navbar-form .input-group textarea,
      .navbar-form .input-group .xform input[type="password"], .xform
      .navbar-form .input-group input[type="password"],
      .navbar-form .input-group .xform input[type="email"], .xform
      .navbar-form .input-group input[type="email"],
      .navbar-form .input-group .xform input[type="number"], .xform
      .navbar-form .input-group input[type="number"] {
        width: auto; }
    .navbar-form .input-group > .form-control, .navbar-form .input-group > .FormTextbox__Input, .navbar-form .xform .input-group > input[type="text"], .xform .navbar-form .input-group > input[type="text"], .navbar-form .xform .input-group > textarea, .xform .navbar-form .input-group > textarea, .navbar-form .xform .input-group > input[type="password"], .xform .navbar-form .input-group > input[type="password"], .navbar-form .xform .input-group > input[type="email"], .xform .navbar-form .input-group > input[type="email"], .navbar-form .xform .input-group > input[type="number"], .xform .navbar-form .input-group > input[type="number"] {
      width: 100%; }
    .navbar-form .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .navbar-form .radio,
    .navbar-form .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .navbar-form .radio label,
      .navbar-form .checkbox label {
        padding-left: 0; }
    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .navbar-form .has-feedback .form-control-feedback {
      top: 0; } }
  @media (max-width: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px; }
      .navbar-form .form-group:last-child {
        margin-bottom: 0; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn, .btn-group-sm > .navbar-btn.FormSubmitButton, .xform .btn-group-sm > input.navbar-btn[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-sm > .navbar-btn.Form__NavigationBar__Action, .u-wysiwygArea.btn-group-sm > a.navbar-btn:not(.wysIconBtn), .u-wysiwygArea.btn-group-sm > button.navbar-btn:not(.wysIconBtn), .u-wysiwygArea .btn-group-sm > .navbar-btn.wysIconBtn {
    margin-top: 10px;
    margin-bottom: 10px; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn, .EPiServerForms .Form__NavigationBar .btn-group-xs > .navbar-btn.Form__NavigationBar__Action, .u-wysiwygArea.btn-group-xs > a.navbar-btn:not(.wysIconBtn), .u-wysiwygArea.btn-group-xs > button.navbar-btn:not(.wysIconBtn), .u-wysiwygArea .btn-group-xs > .navbar-btn.wysIconBtn, .navbar-btn.FormSubmitButton, .xform input.navbar-btn[type="submit"] {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
  margin-top: 15px;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important;
    margin-right: -15px; }
    .navbar-right ~ .navbar-right {
      margin-right: 0; } }

.navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #e7e7e7; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: white; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: white; }
  .navbar-inverse .navbar-nav > li > a {
    color: white; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: white; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-link {
    color: white; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: white; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px; }
  .breadcrumb > li {
    display: inline-block; }
    .breadcrumb > li + li:before {
      content: "/ ";
      padding: 0 5px;
      color: #ccc; }
  .breadcrumb > .active {
    color: #e7e7e7; }

.label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em; }
  .label:empty {
    display: none; }
  .btn .label, .FormSubmitButton .label, .xform input[type="submit"] .label, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action .label, .u-wysiwygArea > a:not(.wysIconBtn) .label, .u-wysiwygArea > button:not(.wysIconBtn) .label, .u-wysiwygArea .wysIconBtn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.label-default {
  background-color: #e7e7e7; }
  .label-default[href]:hover, .label-default[href]:focus {
    background-color: #cecece; }

.label-primary {
  background-color: #3D7EDB; }
  .label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #2465c1; }

.label-success {
  background-color: #76BD22; }
  .label-success[href]:hover, .label-success[href]:focus {
    background-color: #5b921a; }

.label-info {
  background-color: #644C9E; }
  .label-info[href]:hover, .label-info[href]:focus {
    background-color: #4e3b7c; }

.label-warning {
  background-color: #FFCF59; }
  .label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #ffc026; }

.label-danger {
  background-color: #E2231A; }
  .label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #b41c15; }

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #e7e7e7;
  border-radius: 10px; }
  .badge:empty {
    display: none; }
  .btn .badge, .FormSubmitButton .badge, .xform input[type="submit"] .badge, .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action .badge, .u-wysiwygArea > a:not(.wysIconBtn) .badge, .u-wysiwygArea > button:not(.wysIconBtn) .badge, .u-wysiwygArea .wysIconBtn .badge {
    position: relative;
    top: -1px; }
  .btn-xs .badge, .btn-group-xs > .btn .badge, .EPiServerForms .Form__NavigationBar .btn-group-xs > .Form__NavigationBar__Action .badge, .u-wysiwygArea.btn-group-xs > a:not(.wysIconBtn) .badge, .u-wysiwygArea.btn-group-xs > button:not(.wysIconBtn) .badge, .u-wysiwygArea .btn-group-xs > .wysIconBtn .badge, .FormSubmitButton .badge, .xform input[type="submit"] .badge,
  .btn-group-xs > .btn .badge,
  .btn-group-xs > .FormSubmitButton .badge, .xform
  .btn-group-xs > input[type="submit"] .badge, .EPiServerForms .Form__NavigationBar
  .btn-group-xs > .Form__NavigationBar__Action .badge,
  .u-wysiwygArea.btn-group-xs > a:not(.wysIconBtn) .badge,
  .u-wysiwygArea.btn-group-xs > button:not(.wysIconBtn) .badge, .u-wysiwygArea
  .btn-group-xs > .wysIconBtn .badge {
    top: 0;
    padding: 1px 5px; }
  .list-group-item.active > .badge,
  .nav-pills > .active > a > .badge {
    color: #3D7EDB;
    background-color: #fff; }
  .list-group-item > .badge {
    float: right; }
  .list-group-item > .badge + .badge {
    margin-right: 5px; }
  .nav-pills > li > a > .badge {
    margin-left: 3px; }

a.badge:hover, a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer; }

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px; }
  .alert h4 {
    margin-top: 0;
    color: inherit; }
  .alert .alert-link {
    font-weight: bold; }
  .alert > p,
  .alert > ul {
    margin-bottom: 0; }
  .alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px; }
  .alert-dismissable .close,
  .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d; }
  .alert-success hr {
    border-top-color: #c9e2b3; }
  .alert-success .alert-link {
    color: #2b542c; }

.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f; }
  .alert-info hr {
    border-top-color: #a6e1ec; }
  .alert-info .alert-link {
    color: #245269; }

.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b; }
  .alert-warning hr {
    border-top-color: #f7e1b5; }
  .alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442; }
  .alert-danger hr {
    border-top-color: #e4b9c0; }
  .alert-danger .alert-link {
    color: #843534; }

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
  padding: 15px; }
  .panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
  .panel-body:after {
    clear: both; }

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit; }
  .panel-title > a,
  .panel-title > small,
  .panel-title > .small,
  .panel-title > small > a,
  .panel-title > .small > a {
    color: inherit; }

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0; }
  .panel > .list-group .list-group-item,
  .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0; }
  .panel > .list-group:first-child .list-group-item:first-child,
  .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
  .panel > .list-group:last-child .list-group-item:last-child,
  .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0; }

.list-group + .panel-footer {
  border-top-width: 0; }

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0; }
  .panel > .table caption,
  .panel > .table-responsive > .table caption,
  .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px; }
  .panel > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table:first-child > tbody:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
      border-top-left-radius: 3px; }
    .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
    .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
      border-top-right-radius: 3px; }

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px; }
  .panel > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table:last-child > tfoot:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
      border-bottom-left-radius: 3px; }
    .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
    .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
      border-bottom-right-radius: 3px; }

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd; }

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0; }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0; }
  .panel > .table-bordered > thead > tr > th:first-child,
  .panel > .table-bordered > thead > tr > td:first-child,
  .panel > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-bordered > tfoot > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0; }
  .panel > .table-bordered > thead > tr > th:last-child,
  .panel > .table-bordered > thead > tr > td:last-child,
  .panel > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-bordered > tfoot > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0; }
  .panel > .table-bordered > thead > tr:first-child > td,
  .panel > .table-bordered > thead > tr:first-child > th,
  .panel > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-bordered > tbody > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
  .panel > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-bordered > tfoot > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
  border: 0;
  margin-bottom: 0; }

.panel-group {
  margin-bottom: 20px; }
  .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px; }
    .panel-group .panel + .panel {
      margin-top: 5px; }
  .panel-group .panel-heading {
    border-bottom: 0; }
    .panel-group .panel-heading + .panel-collapse > .panel-body,
    .panel-group .panel-heading + .panel-collapse > .list-group {
      border-top: 1px solid #ddd; }
  .panel-group .panel-footer {
    border-top: 0; }
    .panel-group .panel-footer + .panel-collapse .panel-body {
      border-bottom: 1px solid #ddd; }

.panel-default {
  border-color: #ddd; }
  .panel-default > .panel-heading {
    color: #65646A;
    background-color: #f5f5f5;
    border-color: #ddd; }
    .panel-default > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ddd; }
    .panel-default > .panel-heading .badge {
      color: #f5f5f5;
      background-color: #65646A; }
  .panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd; }

.panel-primary {
  border-color: #3D7EDB; }
  .panel-primary > .panel-heading {
    color: #fff;
    background-color: #3D7EDB;
    border-color: #3D7EDB; }
    .panel-primary > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #3D7EDB; }
    .panel-primary > .panel-heading .badge {
      color: #3D7EDB;
      background-color: #fff; }
  .panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #3D7EDB; }

.panel-success {
  border-color: #d6e9c6; }
  .panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6; }
    .panel-success > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #d6e9c6; }
    .panel-success > .panel-heading .badge {
      color: #dff0d8;
      background-color: #3c763d; }
  .panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6; }

.panel-info {
  border-color: #bce8f1; }
  .panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1; }
    .panel-info > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #bce8f1; }
    .panel-info > .panel-heading .badge {
      color: #d9edf7;
      background-color: #31708f; }
  .panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1; }

.panel-warning {
  border-color: #faebcc; }
  .panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc; }
    .panel-warning > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #faebcc; }
    .panel-warning > .panel-heading .badge {
      color: #fcf8e3;
      background-color: #8a6d3b; }
  .panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc; }

.panel-danger {
  border-color: #ebccd1; }
  .panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1; }
    .panel-danger > .panel-heading + .panel-collapse > .panel-body {
      border-top-color: #ebccd1; }
    .panel-danger > .panel-heading .badge {
      color: #f2dede;
      background-color: #a94442; }
  .panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  filter: alpha(opacity=20); }
  .close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none; }

.modal-open {
  overflow: hidden; }

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0; }
  .modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
  .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
  .modal-backdrop.in {
    opacity: 0.94;
    filter: alpha(opacity=94); }

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }
  .modal-header:before, .modal-header:after {
    content: " ";
    display: table; }
  .modal-header:after {
    clear: both; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857; }

.modal-body {
  position: relative;
  padding: 15px; }

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5; }
  .modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
  .modal-footer:after {
    clear: both; }
  .modal-footer .btn + .btn, .modal-footer .FormSubmitButton + .btn, .modal-footer .xform input[type="submit"] + .btn, .xform .modal-footer input[type="submit"] + .btn, .modal-footer .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .btn, .EPiServerForms .Form__NavigationBar .modal-footer .Form__NavigationBar__Action + .btn, .modal-footer .u-wysiwygArea > a:not(.wysIconBtn) + .btn, .modal-footer .u-wysiwygArea > button:not(.wysIconBtn) + .btn, .modal-footer .u-wysiwygArea .wysIconBtn + .btn, .u-wysiwygArea .modal-footer .wysIconBtn + .btn, .modal-footer .btn + .FormSubmitButton, .modal-footer .FormSubmitButton + .FormSubmitButton, .modal-footer .xform input[type="submit"] + .FormSubmitButton, .xform .modal-footer input[type="submit"] + .FormSubmitButton, .modal-footer .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .FormSubmitButton, .EPiServerForms .Form__NavigationBar .modal-footer .Form__NavigationBar__Action + .FormSubmitButton, .modal-footer .u-wysiwygArea > a:not(.wysIconBtn) + .FormSubmitButton, .modal-footer .u-wysiwygArea > button:not(.wysIconBtn) + .FormSubmitButton, .modal-footer .u-wysiwygArea .wysIconBtn + .FormSubmitButton, .u-wysiwygArea .modal-footer .wysIconBtn + .FormSubmitButton, .modal-footer .xform .btn + input[type="submit"], .xform .modal-footer .btn + input[type="submit"], .modal-footer .xform .FormSubmitButton + input[type="submit"], .xform .modal-footer .FormSubmitButton + input[type="submit"], .modal-footer .xform input[type="submit"] + input[type="submit"], .xform .modal-footer input[type="submit"] + input[type="submit"], .modal-footer .EPiServerForms .Form__NavigationBar .xform .Form__NavigationBar__Action + input[type="submit"], .xform .modal-footer .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + input[type="submit"], .EPiServerForms .Form__NavigationBar .modal-footer .xform .Form__NavigationBar__Action + input[type="submit"], .xform .EPiServerForms .Form__NavigationBar .modal-footer .Form__NavigationBar__Action + input[type="submit"], .modal-footer .xform .u-wysiwygArea > a:not(.wysIconBtn) + input[type="submit"], .xform .modal-footer .u-wysiwygArea > a:not(.wysIconBtn) + input[type="submit"], .modal-footer .xform .u-wysiwygArea > button:not(.wysIconBtn) + input[type="submit"], .xform .modal-footer .u-wysiwygArea > button:not(.wysIconBtn) + input[type="submit"], .modal-footer .u-wysiwygArea .xform .wysIconBtn + input[type="submit"], .xform .modal-footer .u-wysiwygArea .wysIconBtn + input[type="submit"], .u-wysiwygArea .modal-footer .xform .wysIconBtn + input[type="submit"], .xform .u-wysiwygArea .modal-footer .wysIconBtn + input[type="submit"], .modal-footer .EPiServerForms .Form__NavigationBar .btn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn + .Form__NavigationBar__Action, .modal-footer .EPiServerForms .Form__NavigationBar .FormSubmitButton + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .FormSubmitButton + .Form__NavigationBar__Action, .modal-footer .xform .EPiServerForms .Form__NavigationBar input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .xform input[type="submit"] + .Form__NavigationBar__Action, .xform .modal-footer .EPiServerForms .Form__NavigationBar input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .xform .modal-footer input[type="submit"] + .Form__NavigationBar__Action, .modal-footer .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .Form__NavigationBar__Action + .Form__NavigationBar__Action, .modal-footer .EPiServerForms .Form__NavigationBar .u-wysiwygArea > a:not(.wysIconBtn) + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .u-wysiwygArea > a:not(.wysIconBtn) + .Form__NavigationBar__Action, .modal-footer .EPiServerForms .Form__NavigationBar .u-wysiwygArea > button:not(.wysIconBtn) + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .u-wysiwygArea > button:not(.wysIconBtn) + .Form__NavigationBar__Action, .modal-footer .u-wysiwygArea .EPiServerForms .Form__NavigationBar .wysIconBtn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .u-wysiwygArea .wysIconBtn + .Form__NavigationBar__Action, .u-wysiwygArea .modal-footer .EPiServerForms .Form__NavigationBar .wysIconBtn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .u-wysiwygArea .modal-footer .wysIconBtn + .Form__NavigationBar__Action, .modal-footer .u-wysiwygArea > .btn + a:not(.wysIconBtn), .modal-footer .u-wysiwygArea > .FormSubmitButton + a:not(.wysIconBtn), .modal-footer .xform .u-wysiwygArea > input[type="submit"] + a:not(.wysIconBtn), .xform .modal-footer .u-wysiwygArea > input[type="submit"] + a:not(.wysIconBtn), .modal-footer .EPiServerForms .Form__NavigationBar .u-wysiwygArea > .Form__NavigationBar__Action + a:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .modal-footer .u-wysiwygArea > .Form__NavigationBar__Action + a:not(.wysIconBtn), .modal-footer .u-wysiwygArea > a:not(.wysIconBtn) + a:not(.wysIconBtn), .modal-footer .u-wysiwygArea > button:not(.wysIconBtn) + a:not(.wysIconBtn), .modal-footer .u-wysiwygArea > .wysIconBtn + a:not(.wysIconBtn), .u-wysiwygArea .modal-footer .u-wysiwygArea > .wysIconBtn + a:not(.wysIconBtn), .modal-footer .u-wysiwygArea > .btn + button:not(.wysIconBtn), .modal-footer .u-wysiwygArea > .FormSubmitButton + button:not(.wysIconBtn), .modal-footer .xform .u-wysiwygArea > input[type="submit"] + button:not(.wysIconBtn), .xform .modal-footer .u-wysiwygArea > input[type="submit"] + button:not(.wysIconBtn), .modal-footer .EPiServerForms .Form__NavigationBar .u-wysiwygArea > .Form__NavigationBar__Action + button:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .modal-footer .u-wysiwygArea > .Form__NavigationBar__Action + button:not(.wysIconBtn), .modal-footer .u-wysiwygArea > a:not(.wysIconBtn) + button:not(.wysIconBtn), .modal-footer .u-wysiwygArea > button:not(.wysIconBtn) + button:not(.wysIconBtn), .modal-footer .u-wysiwygArea > .wysIconBtn + button:not(.wysIconBtn), .u-wysiwygArea .modal-footer .u-wysiwygArea > .wysIconBtn + button:not(.wysIconBtn), .modal-footer .u-wysiwygArea .btn + .wysIconBtn, .u-wysiwygArea .modal-footer .btn + .wysIconBtn, .modal-footer .u-wysiwygArea .FormSubmitButton + .wysIconBtn, .u-wysiwygArea .modal-footer .FormSubmitButton + .wysIconBtn, .modal-footer .xform .u-wysiwygArea input[type="submit"] + .wysIconBtn, .u-wysiwygArea .modal-footer .xform input[type="submit"] + .wysIconBtn, .xform .modal-footer .u-wysiwygArea input[type="submit"] + .wysIconBtn, .u-wysiwygArea .xform .modal-footer input[type="submit"] + .wysIconBtn, .modal-footer .EPiServerForms .Form__NavigationBar .u-wysiwygArea .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea .modal-footer .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .wysIconBtn, .EPiServerForms .Form__NavigationBar .modal-footer .u-wysiwygArea .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea .EPiServerForms .Form__NavigationBar .modal-footer .Form__NavigationBar__Action + .wysIconBtn, .modal-footer .u-wysiwygArea > a:not(.wysIconBtn) + .wysIconBtn, .modal-footer .u-wysiwygArea > button:not(.wysIconBtn) + .wysIconBtn, .modal-footer .u-wysiwygArea .wysIconBtn + .wysIconBtn, .u-wysiwygArea .modal-footer .wysIconBtn + .wysIconBtn {
    margin-left: 5px;
    margin-bottom: 0; }
  .modal-footer .btn-group .btn + .btn, .modal-footer .btn-group .FormSubmitButton + .btn, .modal-footer .btn-group .xform input[type="submit"] + .btn, .xform .modal-footer .btn-group input[type="submit"] + .btn, .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .btn, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .Form__NavigationBar__Action + .btn, .modal-footer .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .btn, .modal-footer .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .btn, .modal-footer .btn-group .u-wysiwygArea .wysIconBtn + .btn, .u-wysiwygArea .modal-footer .btn-group .wysIconBtn + .btn, .modal-footer .btn-group .btn + .FormSubmitButton, .modal-footer .btn-group .FormSubmitButton + .FormSubmitButton, .modal-footer .btn-group .xform input[type="submit"] + .FormSubmitButton, .xform .modal-footer .btn-group input[type="submit"] + .FormSubmitButton, .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .FormSubmitButton, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .Form__NavigationBar__Action + .FormSubmitButton, .modal-footer .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .FormSubmitButton, .modal-footer .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .FormSubmitButton, .modal-footer .btn-group .u-wysiwygArea .wysIconBtn + .FormSubmitButton, .u-wysiwygArea .modal-footer .btn-group .wysIconBtn + .FormSubmitButton, .modal-footer .btn-group .xform .btn + input[type="submit"], .xform .modal-footer .btn-group .btn + input[type="submit"], .modal-footer .btn-group .xform .FormSubmitButton + input[type="submit"], .xform .modal-footer .btn-group .FormSubmitButton + input[type="submit"], .modal-footer .btn-group .xform input[type="submit"] + input[type="submit"], .xform .modal-footer .btn-group input[type="submit"] + input[type="submit"], .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .xform .Form__NavigationBar__Action + input[type="submit"], .xform .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + input[type="submit"], .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .xform .Form__NavigationBar__Action + input[type="submit"], .xform .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .Form__NavigationBar__Action + input[type="submit"], .modal-footer .btn-group .xform .u-wysiwygArea > a:not(.wysIconBtn) + input[type="submit"], .xform .modal-footer .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + input[type="submit"], .modal-footer .btn-group .xform .u-wysiwygArea > button:not(.wysIconBtn) + input[type="submit"], .xform .modal-footer .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + input[type="submit"], .modal-footer .btn-group .u-wysiwygArea .xform .wysIconBtn + input[type="submit"], .xform .modal-footer .btn-group .u-wysiwygArea .wysIconBtn + input[type="submit"], .u-wysiwygArea .modal-footer .btn-group .xform .wysIconBtn + input[type="submit"], .xform .u-wysiwygArea .modal-footer .btn-group .wysIconBtn + input[type="submit"], .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .btn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .btn + .Form__NavigationBar__Action, .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .FormSubmitButton + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .FormSubmitButton + .Form__NavigationBar__Action, .modal-footer .btn-group .xform .EPiServerForms .Form__NavigationBar input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .xform input[type="submit"] + .Form__NavigationBar__Action, .xform .modal-footer .btn-group .EPiServerForms .Form__NavigationBar input[type="submit"] + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .xform .modal-footer .btn-group input[type="submit"] + .Form__NavigationBar__Action, .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .Form__NavigationBar__Action + .Form__NavigationBar__Action, .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > a:not(.wysIconBtn) + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .Form__NavigationBar__Action, .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > button:not(.wysIconBtn) + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .Form__NavigationBar__Action, .modal-footer .btn-group .u-wysiwygArea .EPiServerForms .Form__NavigationBar .wysIconBtn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .u-wysiwygArea .wysIconBtn + .Form__NavigationBar__Action, .u-wysiwygArea .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .wysIconBtn + .Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .u-wysiwygArea .modal-footer .btn-group .wysIconBtn + .Form__NavigationBar__Action, .modal-footer .btn-group .u-wysiwygArea > .btn + a:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > .FormSubmitButton + a:not(.wysIconBtn), .modal-footer .btn-group .xform .u-wysiwygArea > input[type="submit"] + a:not(.wysIconBtn), .xform .modal-footer .btn-group .u-wysiwygArea > input[type="submit"] + a:not(.wysIconBtn), .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > .Form__NavigationBar__Action + a:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .u-wysiwygArea > .Form__NavigationBar__Action + a:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + a:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + a:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > .wysIconBtn + a:not(.wysIconBtn), .u-wysiwygArea .modal-footer .btn-group .u-wysiwygArea > .wysIconBtn + a:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > .btn + button:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > .FormSubmitButton + button:not(.wysIconBtn), .modal-footer .btn-group .xform .u-wysiwygArea > input[type="submit"] + button:not(.wysIconBtn), .xform .modal-footer .btn-group .u-wysiwygArea > input[type="submit"] + button:not(.wysIconBtn), .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea > .Form__NavigationBar__Action + button:not(.wysIconBtn), .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .u-wysiwygArea > .Form__NavigationBar__Action + button:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + button:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + button:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea > .wysIconBtn + button:not(.wysIconBtn), .u-wysiwygArea .modal-footer .btn-group .u-wysiwygArea > .wysIconBtn + button:not(.wysIconBtn), .modal-footer .btn-group .u-wysiwygArea .btn + .wysIconBtn, .u-wysiwygArea .modal-footer .btn-group .btn + .wysIconBtn, .modal-footer .btn-group .u-wysiwygArea .FormSubmitButton + .wysIconBtn, .u-wysiwygArea .modal-footer .btn-group .FormSubmitButton + .wysIconBtn, .modal-footer .btn-group .xform .u-wysiwygArea input[type="submit"] + .wysIconBtn, .u-wysiwygArea .modal-footer .btn-group .xform input[type="submit"] + .wysIconBtn, .xform .modal-footer .btn-group .u-wysiwygArea input[type="submit"] + .wysIconBtn, .u-wysiwygArea .xform .modal-footer .btn-group input[type="submit"] + .wysIconBtn, .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .u-wysiwygArea .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea .modal-footer .btn-group .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action + .wysIconBtn, .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .u-wysiwygArea .Form__NavigationBar__Action + .wysIconBtn, .u-wysiwygArea .EPiServerForms .Form__NavigationBar .modal-footer .btn-group .Form__NavigationBar__Action + .wysIconBtn, .modal-footer .btn-group .u-wysiwygArea > a:not(.wysIconBtn) + .wysIconBtn, .modal-footer .btn-group .u-wysiwygArea > button:not(.wysIconBtn) + .wysIconBtn, .modal-footer .btn-group .u-wysiwygArea .wysIconBtn + .wysIconBtn, .u-wysiwygArea .modal-footer .btn-group .wysIconBtn + .wysIconBtn {
    margin-left: -1px; }
  .modal-footer .btn-block + .btn-block {
    margin-left: 0; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 690px;
    margin: 30px auto; }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
  .modal-sm {
    width: 300px; } }

@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.hidden {
  display: none !important; }

.affix {
  position: fixed; }

@-ms-viewport {
  width: device-width; }

.visible-xs {
  display: none !important; }

.visible-sm {
  display: none !important; }

.visible-md {
  display: none !important; }

.visible-lg {
  display: none !important; }

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important; }

@media (max-width: 767px) {
  .visible-xs {
    display: block !important; }
  table.visible-xs {
    display: table !important; }
  tr.visible-xs {
    display: table-row !important; }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important; } }

@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important; } }

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important; } }

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important; }
  table.visible-sm {
    display: table !important; }
  tr.visible-sm {
    display: table-row !important; }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important; }
  table.visible-md {
    display: table !important; }
  tr.visible-md {
    display: table-row !important; }
  th.visible-md,
  td.visible-md {
    display: table-cell !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important; }
  table.visible-lg {
    display: table !important; }
  tr.visible-lg {
    display: table-row !important; }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important; } }

@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important; } }

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important; } }

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important; } }

.visible-print {
  display: none !important; }

@media print {
  .visible-print {
    display: block !important; }
  table.visible-print {
    display: table !important; }
  tr.visible-print {
    display: table-row !important; }
  th.visible-print,
  td.visible-print {
    display: table-cell !important; } }

.visible-print-block {
  display: none !important; }
  @media print {
    .visible-print-block {
      display: block !important; } }

.visible-print-inline {
  display: none !important; }
  @media print {
    .visible-print-inline {
      display: inline !important; } }

.visible-print-inline-block {
  display: none !important; }
  @media print {
    .visible-print-inline-block {
      display: inline-block !important; } }

@media print {
  .hidden-print {
    display: none !important; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-dots {
  list-style: none;
  padding: 0 10px;
  text-align: center;
  margin: auto;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .slick-dots {
      text-align: center; } }
  .slick-dots li {
    display: inline-block;
    padding: 12px 5px; }
    .slick-dots li button {
      border-radius: 50%;
      overflow: hidden;
      display: block;
      height: 13px;
      width: 13px;
      text-indent: -3333em;
      overflow: hidden;
      outline: none;
      margin: 0;
      padding: 0;
      background: #fff;
      border: 1px solid #65646A; }
    .slick-dots li.slick-active button {
      background-color: #65646A;
      border: 1px solid #65646A; }

/* home carousel */
/*! nouislider - 10.1.0 - 2017-07-28 13:09:54 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box; }

.noUi-target {
  position: relative;
  direction: ltr; }

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */ }

.noUi-connect {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0; }

.noUi-origin {
  position: absolute;
  height: 0;
  width: 0; }

.noUi-handle {
  position: relative;
  z-index: 1; }

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s; }

.noUi-state-drag * {
  cursor: inherit !important; }

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px; }

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px; }

.noUi-vertical {
  width: 18px; }

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px; }

/* Styling;
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB; }

.noUi-connect {
  background: #3FB8AF;
  border-radius: 4px;
  box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
  -webkit-transition: background 450ms;
  transition: background 450ms; }

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize; }

.noUi-vertical .noUi-draggable {
  cursor: ns-resize; }

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB; }

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB; }

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px; }

.noUi-handle:after {
  left: 17px; }

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px; }

.noUi-vertical .noUi-handle:after {
  top: 17px; }

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8; }

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed; }

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box; }

.noUi-pips {
  position: absolute;
  color: #999; }

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center; }

.noUi-value-sub {
  color: #ccc;
  font-size: 10px; }

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC; }

.noUi-marker-sub {
  background: #AAA; }

.noUi-marker-large {
  background: #AAA; }

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%; }

.noUi-value-horizontal {
  -webkit-transform: translate3d(-50%, 50%, 0);
  transform: translate3d(-50%, 50%, 0); }

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px; }

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px; }

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px; }

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%; }

.noUi-value-vertical {
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  padding-left: 25px; }

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px; }

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px; }

.noUi-marker-vertical.noUi-marker-large {
  width: 15px; }

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap; }

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%; }

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%; }

/*######################################################
	fonts
#######################################################*/
/**
 * @license
 * MyFonts Webfont Build ID 3401284, 2017-06-04T20:47:32-0400
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: Adelle-Regular by TypeTogether
 * URL: https://www.myfonts.com/fonts/type-together/adelle/regular/
 * Copyright: Copyright (c) 2009 by TypeTogether. All rights reserved.
 * Licensed pageviews: 500,000
 * 
 * Webfont: ProximaNovaA-Bold by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/a-bold/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNovaS-Bold by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/s-bold/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNova-Bold by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/bold/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNovaA-RegularIt by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/a-regular-it/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNovaS-RegularIt by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/s-regular-it/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNova-RegularIt by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/regular-it/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNovaA-Regular by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/a-regular/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNovaS-Regular by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/s-regular/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNova-Regular by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/regular/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNovaA-BoldIt by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/a-bold-it/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNovaS-BoldIt by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/s-bold-it/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * Webfont: ProximaNova-BoldIt by Mark Simonson
 * URL: https://www.myfonts.com/fonts/marksimonson/proxima-nova/bold-it/
 * Copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 * Licensed pageviews: 1,000,000
 * 
 * 
 * License: https://www.myfonts.com/viewlicense?type=web&buildid=3401284
 * 
 * © 2017 MyFonts Inc
*/
/**
 * Kerry Edward (Levo Designer) confirmed that we're only using "Adelle Regular", "Proxima Regular" and "Proxima Bold".
 */
@font-face {
  font-family: 'Adelle-Regular';
  src: url("/UIBuild/reskin/3-0-35/font/33E644_0_0.eot");
  src: url("/UIBuild/reskin/3-0-35/font/33E644_0_0.eot?#iefix") format("embedded-opentype"), url("/UIBuild/reskin/3-0-35/font/33E644_0_0.woff2") format("woff2"), url("/UIBuild/reskin/3-0-35/font/33E644_0_0.woff") format("woff"), url("/UIBuild/reskin/3-0-35/font/33E644_0_0.ttf") format("truetype"); }

/*
@font-face {font-family: 'ProximaNovaA-Bold';src: url('/UIBuild/reskin/3-0-35/font/33E644_1_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_1_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_1_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_1_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_1_0.ttf') format('truetype');}
 
  
@font-face {font-family: 'ProximaNovaS-Bold';src: url('/UIBuild/reskin/3-0-35/font/33E644_2_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_2_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_2_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_2_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_2_0.ttf') format('truetype');}
 */
@font-face {
  font-family: 'ProximaNova-Bold';
  src: url("/UIBuild/reskin/3-0-35/font/33E644_3_0.eot");
  src: url("/UIBuild/reskin/3-0-35/font/33E644_3_0.eot?#iefix") format("embedded-opentype"), url("/UIBuild/reskin/3-0-35/font/33E644_3_0.woff2") format("woff2"), url("/UIBuild/reskin/3-0-35/font/33E644_3_0.woff") format("woff"), url("/UIBuild/reskin/3-0-35/font/33E644_3_0.ttf") format("truetype"); }

/*
@font-face {font-family: 'ProximaNovaA-RegularIt';src: url('/UIBuild/reskin/3-0-35/font/33E644_4_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_4_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_4_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_4_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_4_0.ttf') format('truetype');}
 
  
@font-face {font-family: 'ProximaNovaS-RegularIt';src: url('/UIBuild/reskin/3-0-35/font/33E644_5_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_5_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_5_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_5_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_5_0.ttf') format('truetype');}
 
  
@font-face {font-family: 'ProximaNova-RegularIt';src: url('/UIBuild/reskin/3-0-35/font/33E644_6_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_6_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_6_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_6_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_6_0.ttf') format('truetype');}
 
  
@font-face {font-family: 'ProximaNovaA-Regular';src: url('/UIBuild/reskin/3-0-35/font/33E644_7_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_7_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_7_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_7_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_7_0.ttf') format('truetype');}
 
  
@font-face {font-family: 'ProximaNovaS-Regular';src: url('/UIBuild/reskin/3-0-35/font/33E644_8_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_8_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_8_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_8_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_8_0.ttf') format('truetype');}
 */
@font-face {
  font-family: 'ProximaNova-Regular';
  src: url("/UIBuild/reskin/3-0-35/font/33E644_9_0.eot");
  src: url("/UIBuild/reskin/3-0-35/font/33E644_9_0.eot?#iefix") format("embedded-opentype"), url("/UIBuild/reskin/3-0-35/font/33E644_9_0.woff2") format("woff2"), url("/UIBuild/reskin/3-0-35/font/33E644_9_0.woff") format("woff"), url("/UIBuild/reskin/3-0-35/font/33E644_9_0.ttf") format("truetype"); }

/*
@font-face {font-family: 'ProximaNovaA-BoldIt';src: url('/UIBuild/reskin/3-0-35/font/33E644_A_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_A_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_A_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_A_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_A_0.ttf') format('truetype');}
 
  
@font-face {font-family: 'ProximaNovaS-BoldIt';src: url('/UIBuild/reskin/3-0-35/font/33E644_B_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_B_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_B_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_B_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_B_0.ttf') format('truetype');}
 
  
@font-face {font-family: 'ProximaNova-BoldIt';src: url('/UIBuild/reskin/3-0-35/font/33E644_C_0.eot');src: url('/UIBuild/reskin/3-0-35/font/33E644_C_0.eot?#iefix') format('embedded-opentype'),url('/UIBuild/reskin/3-0-35/font/33E644_C_0.woff2') format('woff2'),url('/UIBuild/reskin/3-0-35/font/33E644_C_0.woff') format('woff'),url('/UIBuild/reskin/3-0-35/font/33E644_C_0.ttf') format('truetype');}
*/
/*GULP_UIBUILD_PATH_START*/
/*GULP_UIBUILD_PATH_END*/
/** COLOURS **/
/** TYPE **/
/** GRID BREAKPOINTS **/
/** MISC DIMENSIONS **/
/* Overrides Bootstrap defaults */
.container-fluid {
  max-width: 1230px; }

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: #c6c6c6;
  box-shadow: none;
  outline: 0 none; }

input {
  border-radius: 0; }
  input:not([type=checkbox]):not([type=radio]) {
    -webkit-appearance: none; }

input[type=range] {
  -webkit-appearance: none;
  /* Hides the slider so that custom slider can be made */
  width: 100%;
  /* Specific width is required for Firefox. */
  background: transparent;
  /* Otherwise white in Chrome */ }
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; }
  input[type=range]:focus {
    outline: none;
    /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */ }
  input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    /* Hides the slider so custom styles can be added */
    background: transparent;
    border-color: transparent;
    color: transparent; }

*, *:before, *:after {
  box-sizing: border-box; }

html {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal;
  font-size: inherit;
  line-height: 1.3;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background: #FFF;
  color: #4F5357; }
  html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

body {
  margin: 0;
  height: 100vh;
  min-height: 100vh; }

a {
  background: transparent;
  color: #07D;
  text-decoration: none;
  cursor: pointer; }

b,
strong {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif; }

/*
 * 1. Address odd `em`-unit font size rendering in all browsers.
 * 2. Consolas has a better baseline in running text compared to `Courier`
 */
:not(pre) > code,
:not(pre) > kbd,
:not(pre) > samp {
  /* 1 */
  font-size: 0.875rem;
  /* 2 */
  font-family: Consolas, monospace, serif;
  /* 3 */
  color: #07D;
  white-space: nowrap; }

:not(pre) > code {
  white-space: normal; }

/*
 * Emphasize
 */
em {
  color: #616365; }

/*
 * Insert
 */
ins {
  background: #DFDFDF;
  color: black;
  text-decoration: none; }

/*
 * Mark
 * Note: Addresses styling not present in IE 8/9.
 */
mark {
  background: #DFDFDF;
  color: black; }

/*
 * Quote
 */
q {
  font-style: italic; }

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/*
 * Prevents `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 the gap between embedded content and the bottom of their containers.
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Responsiveness
 * 1. Sets a maximum width relative to the parent and auto scales the height
 * 2. Corrects `max-width` behavior if padding and border are used
 */
audio,
canvas,
img,
svg,
video {
  /* 1 */
  max-width: 100%;
  height: auto;
  /* 2 */
  box-sizing: border-box; }

/*
 * Preserve original dimensions
 */
.u-img-preserve,
.u-img-preserve audio,
.u-img-preserve canvas,
.u-img-preserve img,
.u-img-preserve svg,
.u-img-preserve video {
  max-width: none; }

/*
 * 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; }

/* Block elements
 ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal;
  color: inherit;
  text-transform: none;
  line-height: 1.3;
  margin-top: 0.375rem;
  margin-bottom: 0.625rem; }
  h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type {
    margin-top: 0; }

h1 {
  font-size: 3rem; }

h2 {
  font-size: 1.875rem; }

h3 {
  font-size: 1.5rem; }

h4 {
  font-size: 1.25rem; }

h5 {
  font-size: 1rem; }

h6 {
  font-size: 0.9375rem; }

li, a, p {
  font-size: 1.25rem; }

/* Lists
 ========================================================================== */
ul,
ol {
  padding-left: 30px; }

/*
 * Reset margin for nested lists
 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0; }

/* Description lists
 ========================================================================== */
dt {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal; }

dd {
  margin-left: 0; }

/* Horizontal rules
 ========================================================================== */
/*
 * 1. Address differences between Firefox and other browsers.
 * 2. Style
 */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  margin: 10px 0;
  border: 0;
  border-top: 1px solid #616365; }

/* Address
 ========================================================================== */
address {
  font-style: normal; }

/* Blockquotes
 ========================================================================== */
blockquote {
  padding-left: 15px;
  border-left: 5px solid #616365;
  font-size: 1rem;
  line-height: 1.3;
  font-style: italic; }

/* Preformatted text
 ========================================================================== */
/*
 * 1. Contain overflow in all browsers.
 */
pre {
  padding: 10px;
  background: transparent;
  font: 0.75rem / 1.3 Consolas, monospace, serif;
  color: black;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  /* 1 */
  overflow: auto; }

/* Selection pseudo-element
 ========================================================================== */
::-moz-selection {
  background: #39f;
  color: #fff;
  text-shadow: none; }

::selection {
  background: #39f;
  color: #fff;
  text-shadow: none; }

/* Fix viewport for IE10 snap mode
 ========================================================================== */
@media screen and (max-width: 400px) {
  @-ms-viewport {
    width: device-width; } }

/**
By default, breakpoint mixins are mobile first (uses min-width).
Use $variant to change that:
- "dt": will apply a desktop-first approach (uses max-width)
- "own": will ensure that only the specified breakpoint is used (using mobile-first approach) and will be restricted before the next breakpoint
**/
/*
Typography

Global typography styles.

Styleguide 1.0.0
*/
/*
Headings

Note: 
- Base elements have no effect on styling. `<h1>`, `<h2>` etc, is purely for semantic purposes and be changed at any time without affecting styling.

Modifiers:
- `--tall`: Adds extra line height.
- `--unbold`: Makes it Regular/Book.

markup:
<div class="u-clrBg--orange l-floatLeft">
    <h2 class="u-hSm no-margTop no-margBot">Heading with no vertical margin</h2>
    <h2 class="u-hSm u-h--tall u-h--unbold">Heading with --unbold and --tall modifiers</h2>
</div>

Styleguide 1.1.0
*/
.fs-xxs, .fs-xs, .fs-sm, .fs-md, .fs-lg, .fs-xlg, .fs-xxlg,
.u-hXxs, .u-hXs, .u-hSm, .u-hMd, .u-hLg, .u-hXl, .u-hXxl {
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal;
  color: inherit;
  text-align: left; }

/*
Heading Extra Extra Small

markup:
<h2 class="u-hXxs">
  Heading Extra Extra Small. Lorem ipsum dolor sit amet, consectetur adipiscing.
</h2>

Styleguide 1.1.1
*/
.fs-xxs,
.u-hXxs {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3333;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

/*
Heading Extra Small

markup:
<h2 class="u-hXs">
  Heading Extra Small. Lorem ipsum dolor sit amet, consectetur adipiscing.
</h2>

Styleguide 1.1.2
*/
.fs-xs,
.u-hXs {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3333;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

/*
Heading Small

markup:
<h2 class="u-hSm">Heading Small. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</h2>

Styleguide 1.1.3
*/
.fs-sm,
.u-hSm {
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.3333;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

/*
Heading Medium

markup:
<h2 class="u-hMd">Heading Medium. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor.</h2>

Styleguide 1.1.4
*/
.fs-md,
.u-hMd {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3333;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

/*
Heading Large

markup:
<h2 class="u-hLg">Heading Large. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed.</h2>

Styleguide 1.1.5
*/
.fs-lg,
.u-hLg {
  font-size: 1.5rem;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.3333;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

/*
Heading Extra Large

markup:
<h2 class="u-hXl">Heading Extra Large. Lorem ipsum dolor sit amet, consectetur adipiscing elit.</h2>

Styleguide 1.1.6
*/
.fs-xlg,
.u-hXl {
  font-size: 1.875rem;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  line-height: 1.3333;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

/*
Heading XX Large

markup:
<h2 class="u-hXxl">Heading XX Large. Lorem ipsum dolor sit amet, consectetur adipiscing.</h2>

Styleguide 1.1.7
*/
.fs-xxlg,
.u-hXxl {
  font-size: 3rem;
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  line-height: 1.13331;
  -webkit-hyphens: manual !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important; }

@media only screen and (max-width: 47.9375em) {
  .u-hXxs--mb {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important; } }

@media only screen and (max-width: 47.9375em) {
  .u-hXs--mb {
    font-size: 0.9375rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important; } }

@media only screen and (max-width: 47.9375em) {
  .u-hSm--mb {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important; } }

@media only screen and (max-width: 47.9375em) {
  .u-hMd--mb {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important; } }

@media only screen and (max-width: 47.9375em) {
  .u-hLg--mb {
    font-size: 1.5rem;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important; } }

@media only screen and (max-width: 47.9375em) {
  .u-hXl--mb {
    font-size: 1.875rem;
    margin-top: 1rem;
    margin-bottom: 1.3rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important; } }

.u-h--tall {
  line-height: 1.579 !important; }

.u-h--unbold {
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal; }

/*
Paragraphs

States:
- `no-vertMarg`: Allows you to easily strip off default margins directly on the element or on any parent element

Modifiers:
- `--tall`: Adds extra line height.
- `--bold`: Makes it bold.
- `--white`: Makes it white instead of black.
- `--caps`: Converts text to uppercase.

markup:
<div>
    <p class="u-pMd no-margTop no-margBot">Paragraph with no vertical margin</p>
    <p class="u-pMd u-p--tall u-p--bold">Paragraph with --bold and --tall modifiers</p>
</div>

sg-wrapper:
<div class="u-clrBg--orange l-floatLeft">
  <sg-wrapper-content/>
</div>

Styleguide 1.2.0
*/
.u-pXxs, .u-pXs, .u-pSm, .u-pMd, .u-pLg, .u-pXl,
.u-pXxs p, .u-pXs p, .u-pSm p, .u-pMd p, .u-pLg p, .u-pXl p {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  text-align: left; }

/*
Paragraph XX Small

markup:
<p class="u-pXxs">Paragraph XX Small</p>

Styleguide 1.2.1
*/
.u-pXxs, .u-pXxs p {
  font-size: 0.8125rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
  line-height: 1.6; }

/*
Paragraph Extra Small

markup:
<p class="u-pXs">Paragraph Extra Small</p>

Styleguide 1.2.2
*/
.u-pXs, .u-pXs p {
  font-size: 0.9375rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
  line-height: 1.6; }

/*
Paragraph Small

markup:
<p class="u-pSm">Paragraph Small</p>

Styleguide 1.2.3
*/
.u-pSm, .u-pSm p {
  font-size: 1rem;
  margin-top: 0.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.6; }

/*
Paragraph Medium

markup:
<p class="u-pMd">Paragraph Medium. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.</p>

Styleguide 1.2.4
*/
.u-pMd, .u-pMd p {
  font-size: 1.25rem;
  margin-top: 0.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.6; }
  .u-pMd--gapAfter, .u-pMd p--gapAfter {
    margin-bottom: 1.8rem; }

/*
Paragraph Large

markup:
<p class="u-pLg">Paragraph Large</p>

Styleguide 1.2.5
*/
.u-pLg, .u-pLg p {
  font-size: 1.5rem;
  margin-top: 0.3rem;
  margin-bottom: 0.9rem;
  line-height: 1.6; }

/*
Paragraph Extra Large

markup:
<p class="u-pXl">Paragraph Extra Large</p>

Styleguide 1.2.6
*/
.u-pXl, .u-pXl p {
  font-size: 1.875rem;
  margin-top: 0.4rem;
  margin-bottom: 1.1rem;
  line-height: 1.6; }

@media only screen and (max-width: 47.9375em) {
  .u-pXxs--mb, .u-pXxs--mb p {
    font-size: 0.8125rem;
    margin-top: 0;
    margin-bottom: 0.4rem;
    line-height: 1.6; } }

@media only screen and (max-width: 47.9375em) {
  .u-pXs--mb, .u-pXs--mb p {
    font-size: 0.9375rem;
    margin-top: 0;
    margin-bottom: 0.4rem;
    line-height: 1.6; } }

@media only screen and (max-width: 47.9375em) {
  .u-pSm--mb, .u-pSm--mb p {
    font-size: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.6; } }

@media only screen and (max-width: 47.9375em) {
  .u-pMd--mb, .u-pMd--mb p {
    font-size: 1.25rem;
    margin-top: 0.3rem;
    margin-bottom: 0.75rem;
    line-height: 1.6; } }

@media only screen and (max-width: 47.9375em) {
  .u-pLg--mb, .u-pLg--mb p {
    font-size: 1.5rem;
    margin-top: 0.3rem;
    margin-bottom: 0.9rem;
    line-height: 1.6; } }

@media only screen and (max-width: 47.9375em) {
  .u-pXl--mb, .u-pXl--mb p {
    font-size: 1.875rem;
    margin-top: 0.4rem;
    margin-bottom: 1.1rem;
    line-height: 1.6; } }

.u-p--bold {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif; }

.u-p--tall {
  line-height: 2.118; }

.u-p--white {
  color: #FFF; }

.u-p--caps {
  text-transform: uppercase; }

/*
Misc

Miscellaneous text utilities

Styleguide 1.4.0
*/
/*
u-textNoWrap

Prevent text from wrapping onto multiple lines.

markup:
<div class="l-overflowContainer">
  <table class="u-table u-textNoWrap">
    <tr>
        <th>Somthing really very extremely long</th>
        <th>Somthing really very extremely long</th>
        <th>Somthing really very extremely long</th>
        <th>Somthing really very extremely long</th>
    </tr>
  </table>
</div>

Styleguide 1.4.1
*/
.u-textNoWrap {
  white-space: nowrap; }

/*
u-textTruncate

Prevent text from wrapping onto multiple lines, and truncate with an ellipsis

markup:
<div style="max-width: 200px;" class="u-clrBg--pink">
  <p class="u-textTruncate">I should be truncated and only on 1 line</p>
</div>

Styleguide 1.4.2
*/
.u-textTruncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

/*
u-textBreak

Break strings if their length exceeds the width of their container

markup:
<div style="max-width: 150px;" class="u-clrBg--pink">
  <p class="u-textBreak">Antidisestablishmentarianism</p>
</div>

Styleguide 1.4.3
*/
.u-textBreak {
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; }
  .ie-msie9 .u-textBreak {
    word-break: break-all; }

/*
u-textCaps

Make text all uppercase

markup:
<p class="u-textCaps">My Heading</p>

Styleguide 1.4.4
*/
.u-textCaps {
  text-transform: uppercase; }

/*
u-textCenter / u-textRight

Applies text-align:center/right

markup:
<div>
    <p class="u-textCenter">center</p>
    <p class="u-textright">right</p>
</div>

Styleguide 6.5.2
*/
.u-textCenter {
  text-align: center !important; }
  @media only screen and (min-width: 48em) {
    .u-textCenter--dt {
      text-align: center !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-textCenter--mb {
      text-align: center !important; } }

.u-textRight {
  text-align: right !important; }
  @media only screen and (min-width: 48em) {
    .u-textRight--dt {
      text-align: right !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-textRight--mb {
      text-align: right !important; } }

.u-textLeft {
  text-align: left !important; }
  @media only screen and (min-width: 48em) {
    .u-textLeft--dt {
      text-align: left !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-textLeft--mb {
      text-align: left !important; } }

.u-list {
  padding-left: 1.6875rem;
  list-style-type: none;
  width: 100%;
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal; }

.u-listItem {
  padding-left: 0;
  line-height: 1.6;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative; }
  .u-listItem:before {
    content: '• ';
    font-size: 19px;
    position: absolute;
    margin-left: -20px; }
  .u-listItem > ul, .u-listItem > ol, .u-listItem > dl {
    margin-left: -0.1875rem; }

ol.u-list--indentOL {
  padding-left: 1.6875rem;
  width: 100%;
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal; }

ol.u-listItem--indentOL {
  padding-left: 0.1875rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative; }
  ol.u-listItem--indentOL > ul, ol.u-listItem--indentOL > ol, ol.u-listItem--indentOL > dl {
    margin-left: -0.1875rem; }

ol[type="i"].u-list--indentOL {
  padding-left: 3rem;
  width: 100%;
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal; }

ol[type="i"].u-list--indentOLShort {
  padding-left: 2.1875rem;
  width: 100%;
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal; }

ol[type="i"].u-listItem--indentOL {
  padding-left: 0.1875rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative; }
  ol[type="i"].u-listItem--indentOL > ul, ol[type="i"].u-listItem--indentOL > ol, ol[type="i"].u-listItem--indentOL > dl {
    margin-left: -0.1875rem; }

ol[type="a"].u-list--indentOL {
  padding-left: 1.4375rem;
  width: 100%;
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal; }

ol[type="a"].u-listItem--indentOL {
  padding-left: 0.1875rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative; }
  ol[type="a"].u-listItem--indentOL > ul, ol[type="a"].u-listItem--indentOL > ol, ol[type="a"].u-listItem--indentOL > dl {
    margin-left: -0.1875rem; }

/*######################################################
	layout
#######################################################*/
.l-block {
  display: block; }

.l-table {
  border-collapse: collapse;
  display: table;
  margin: -1px;
  table-layout: fixed;
  width: 100%; }
  .l-table.is-table-auto {
    width: auto; }
  @media only screen and (max-width: 1199px) {
    .l-table.is-table-break-lg {
      display: block;
      margin: 0; } }
  @media only screen and (max-width: 991px) {
    .l-table.is-table-break-md {
      display: block;
      margin: 0; } }
  @media only screen and (max-width: 767px) {
    .l-table.is-table-break-sm {
      display: block;
      margin: 0; } }

.l-tablecell {
  display: table-cell;
  vertical-align: top; }
  .l-tablecell.has-rightborder-divider {
    border-right: 2px solid #DFDFDF; }
  @media only screen and (max-width: 1199px) {
    .is-table-break-lg .l-tablecell {
      display: block; }
      .is-table-break-lg .l-tablecell.has-rightborder-divider {
        border-right: none; } }
  @media only screen and (max-width: 991px) {
    .is-table-break-md .l-tablecell {
      display: block; }
      .is-table-break-md .l-tablecell.has-rightborder-divider {
        border-right: none; } }
  @media only screen and (max-width: 767px) {
    .is-table-break-sm .l-tablecell {
      display: block; }
      .is-table-break-sm .l-tablecell.has-rightborder-divider {
        border-right: none; } }

.l-inline {
  display: inline-block; }

.page-colwrap {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: auto; }
  @media only screen and (max-width: 767px) {
    .page-colwrap {
      display: block; }
      .page-colwrap:before, .page-colwrap:after {
        content: " ";
        display: table; }
      .page-colwrap:after {
        clear: both; } }
  @media only screen and (max-width: 991px) {
    .page-colwrap.three-col-layout {
      display: block; }
      .page-colwrap.three-col-layout:before, .page-colwrap.three-col-layout:after {
        content: " ";
        display: table; }
      .page-colwrap.three-col-layout:after {
        clear: both; } }

.page-col {
  display: table-cell;
  vertical-align: top; }
  @media only screen and (max-width: 767px) {
    .page-col {
      display: block; } }
  @media only screen and (max-width: 991px) {
    .three-col-layout > .page-col {
      display: block; } }
  .page-col.is-pgcol-content {
    max-width: 650px; }
  .page-col.is-pgcol-sidebar {
    width: 268px; }
    @media only screen and (max-width: 767px) {
      .page-col.is-pgcol-sidebar {
        width: 100%; } }
  .page-col.is-pgcol-sidenav {
    padding-right: 98px;
    width: 240px; }
    @media only screen and (max-width: 991px) {
      .page-col.is-pgcol-sidenav {
        padding-right: 50px;
        padding-bottom: 20px; } }

.va-middle {
  vertical-align: middle; }

.va-baseline {
  vertical-align: baseline; }

.va-top {
  vertical-align: top; }

.va-bottom {
  vertical-align: bottom; }

.va-sup {
  vertical-align: sub; }

.va-super {
  vertical-align: super; }

/*
Layout

Utility "layout" classes for controlling element positioning.

All classes start with `l-`, instead of `u-`. 

Styleguide 5.0.0
*/
/*
Wrappers

Elements designed to wrap around content.

Styleguide 5.1.0
*/
/*
.appWrap

Main wrapper for the site.

Modifiers:
- "appWrap--smH": Adds a small min-height.
- "appWrap--lgH": Adds a large min-height.

markup:
<div class="appWrap u-clrBg--pink">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.1
*/
.appWrap {
  float: left;
  width: 100%;
  min-height: 300px;
  overflow-x: hidden; }
  .appWrap--smH {
    min-height: 150px; }
  .appWrap--lgH {
    min-height: 600px; }
  .appWrap.no-scroll {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    min-height: 100%;
    bottom: -80px; }

/*
.l-mainInset

Main inset for content directly within the .appWrap.

Modifiers:
- "l-mainInset--xs": small inset
- "l-mainInset--sm": small inset
- "l-mainInset--md": medium inset
- "l-mainInset--lg": large inset

markup:
<div class="l-mainInset l-mainInset--md u-clrBg--orange">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.2
*/
.l-mainInset {
  margin: 0 auto;
  margin: 0 auto;
  max-width: 1168px; }
  .l-mainInset--xs {
    margin: 0 auto;
    max-width: 1168px;
    max-width: 568px; }
  .l-mainInset--sm {
    margin: 0 auto;
    max-width: 1168px;
    max-width: 720px;
    max-width: 720px; }
  .l-mainInset--md {
    margin: 0 auto;
    max-width: 1168px;
    max-width: 860px; }
  .l-mainInset--lg {
    margin: 0 auto;
    max-width: 1168px;
    max-width: 980px; }

/*
.l-overflowContainer

To create a container that provides a horizontal scrollbar whenever the elements inside it are wider than the container itself, just add the .uk-overflow-container class to a <div> element. This comes in useful when having to handle tables on a responsive website, which at some point would just get too big.

markup:
<div class="l-overflowContainer">
  <table class="u-table u-tableStriped u-tableCondensed u-textNoWrap">
      <thead>
          <tr>
              <th>Table Heading</th>
              <th>Table Heading</th>
              <th>Table Heading</th>
              <th>Table Heading</th>
              <th>Table Heading</th>
              <th>Table Heading</th>
              <th>Table Heading</th>
              <th>Table Heading</th>
          </tr>
      </thead>
      <tfoot>
          <tr>
              <td>Table Footer</td>
              <td>Table Footer</td>
              <td>Table Footer</td>
              <td>Table Footer</td>
              <td>Table Footer</td>
              <td>Table Footer</td>
              <td>Table Footer</td>
              <td>Table Footer</td>
          </tr>
      </tfoot>
      <tbody>
          <tr>
              <td>Table Data</td>
              <td>Table Data</td>
              <td>Table Data</td>
              <td>Table Data</td>
              <td>Table Data</td>
              <td>Table Data</td>
              <td>Table Data</td>
              <td>Table Data</td>
          </tr>
      </tbody>
  </table>
</div>

Styleguide 5.1.3
*/
.l-overflowContainer {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-overflow-scrolling: auto; }
  .l-overflowContainer > :last-child {
    margin-bottom: 0; }

/*
.l-sidePad

Applies desktop and mobile optimized padding. Commonly used on `l-mainInset`.

markup:
<div class="l-mainInset l-sidePad">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.4
*/
.appWrap .l-sidePad {
  padding-left: 20px !important;
  padding-right: 20px !important; }
  @media only screen and (max-width: 61.9375em) and (min-width: 48em) {
    .appWrap .l-sidePad {
      padding-left: 30px !important;
      padding-right: 30px !important; } }
  @media only screen and (min-width: 62em) {
    .appWrap .l-sidePad {
      padding-left: 25px !important;
      padding-right: 25px !important; } }

/*
.l-mbSidePad

Applies mobile optimized padding from mobile landspace and below. Commonly used on `l-gridWrap` or `l-mainInset`.

markup:
<div class="l-gridWrap l-mbSidePad">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.5
*/
@media only screen and (max-width: 47.9375em) {
  .appWrap .l-mbSidePad {
    padding-left: 20px !important;
    padding-right: 20px !important; } }

/*
.l-mbTinySidePad

Applies 'tiny' mobile optimized padding from mobile landspace and below. Commonly used on `l-gridWrap` or `l-mainInset`.

markup:
<div class="l-gridWrap l-mbTinySidePad">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.6
*/
@media only screen and (max-width: 29.9375em) {
  .appWrap .l-mbTinySidePad {
    padding-left: 12px !important;
    padding-right: 12px !important; } }

/*
.l-tpSidePad

Applies mobile optimized padding from tablet portrait and below. Commonly used on `l-gridWrap` or `l-mainInset`.

markup:
<div class="l-gridWrap l-tpSidePad">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.7
*/
@media only screen and (max-width: 61.9375em) {
  .appWrap .l-tpSidePad {
    padding-left: 30px !important;
    padding-right: 30px !important; } }

@media only screen and (max-width: 47.9375em) {
  .appWrap .l-tpSidePad {
    padding-left: 20px !important;
    padding-right: 20px !important; } }

/*
.l-mbNoPad

Removes side padding for mobile. Commonly used on `l-gridWrap` or `l-mainInset`.

markup:
<div class="l-gridWrap l-mbNoPad">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.8
*/
@media only screen and (max-width: 47.9375em) {
  .appWrap .l-mbNoPad {
    padding-left: 0 !important;
    padding-right: 0 !important; } }

/*
.l-tpNoPad

Removes side padding for tablet portrait. Commonly used on `l-gridWrap` or `l-mainInset`.

markup:
<div class="l-gridWrap l-tpNoPad">
    <p class="u-hSm">Website goes here</p>
</div>

Styleguide 5.1.9
*/
@media only screen and (max-width: 61.9375em) {
  .appWrap .l-tpNoPad {
    padding-left: 0 !important;
    padding-right: 0 !important; } }

/*
Fillers

Styles designed to make elements fill a space.

Styleguide 5.2.0
*/
/*
.l-flush

Fill a container on all sides, but ignores any container padding. 

markup:
<div class="l-flush u-clrBg--orange">
    <p class="u-hSm">Fill a container on all sides, but ignores any container padding.</p>
</div>

sg-wrapper:
<div class="appWrap appWrap--smH">
    <sg-wrapper-content/>
</div>

Styleguide 5.2.4
*/
.l-flush {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%; }

/*
.l-hVP

To create a container that fills the height of the entire viewport, for example for fullscreen image or video teasers.

Based on UIKit's "uk-height-viewport".

markup:
<div class="l-hVP">
    <img style="width:100%" src="/img/singles/placeholder_400x200.svg" alt="Placeholder">
</div>

sg-wrapper:
<div class="appWrap appWrap--smH">
    <sg-wrapper-content/>
</div>

Styleguide 5.2.5
*/
.l-hVP {
  height: 100vh;
  min-height: 300px; }
  .appWrap--smH .l-hVP {
    min-height: 150px; }
  .appWrap--lgH .l-hVP {
    min-height: 600px; }

/*
Alignment

Styles that align an element.

Styleguide 5.3.0
*/
/*
.l-alignInText{ Left, Right, Center }

Align images or other elements with spacing between the text and the element.

Modifiers:
- l-alignInTextLeft--medium: Only affects tablet portrait and up.
- l-alignInTextRight--medium: Only affects tablet portrait and up.
- l-alignInTextCenter--medium: Only affects tablet portrait and up.

Based on UIKit's '.uk-align-left', '.uk-align-right', 'uk-align-medium-left', 'uk-align-medium-right' & 'uk-align-center'.

markup:
<p class="u-hXs l-clearfix">
  <img class="l-alignInTextRight" src="/img/singles/placeholder_400x200.svg" alt="Placeholder">
  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<hr>
<p class="u-hXs l-clearfix">
  <img class="l-alignInTextLeft" src="/img/singles/placeholder_400x200.svg" alt="Placeholder">
  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<hr>
<p class="u-hXs l-clearfix">
  <img class="l-alignInTextCenter" src="/img/singles/placeholder_400x200.svg" alt="Placeholder">
  Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>

sg-wrapper:
<div class="appWrap appWrap--smH u-clrBg--orange">
    <sg-wrapper-content/>
</div>

Styleguide 5.3.2
*/
.l-alignInTextLeft {
  display: block;
  margin-bottom: 15px;
  margin-right: 15px;
  float: left; }
  .l-alignInTextLeft--medium {
    display: block;
    margin-bottom: 15px; }
    @media only screen and (min-width: 48em) {
      .l-alignInTextLeft--medium {
        /* Tablet and bigger */
        margin-right: 15px;
        float: left; } }

.l-alignInTextRight {
  display: block;
  margin-bottom: 15px;
  margin-left: 15px;
  float: right; }
  .l-alignInTextRight--medium {
    display: block;
    margin-bottom: 15px;
    /* Tablet and bigger */ }
    @media only screen and (min-width: 48em) {
      .l-alignInTextRight--medium {
        margin-left: 15px;
        float: right; } }

.l-alignInTextCenter {
  display: block;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto; }

/*
.l-alignVert

Vertically with an unknown child height in a container with a known height, either middle or bottom.

Notes: 
- The object you align needs to have a width or max-width that is smaller than its parent container.
- Your parent container must have a defined height and min-height is not good enough. In the example below, the 'appWrap' has a defined height of 200px, or else it won't work. 

Based on UIKit's '.uk-vertical-align'.

markup:
<div class="l-alignVert u-clrBg--pink no-hVertMarg" style="height: 100%;">
    <p class="u-hSm l-alignVertMiddle u-clrBg--orange" >Middle</p>
    <p class="u-hSm l-alignVertBottom u-clrBg--orange" >Bottom</p>
</div>

sg-wrapper:
<div class="appWrap appWrap--smH" style="height: 200px;">
    <sg-wrapper-content/>
</div>

Styleguide 5.3.3
*/
.l-alignVert {
  font-size: 0.001px; }
  .l-alignVert:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .l-alignVertMiddle, .l-alignVertBottom {
    display: inline-block;
    max-width: 100%;
    font-size: 1rem; }
  .l-alignVertMiddle {
    vertical-align: middle; }
  .l-alignVertBottom {
    vertical-align: bottom; }

/*
.l-alignMiddleAbs

Vertically center align within a dynamic parent height, using absolute positioning (parent must be position:relative)

Modifiers:
- .l-alignMiddleAbs--right: aligns to the right

markup:
<div class="u-padRight--xxxl u-rel">
    <p class="u-pMd u-p--bold u-margTop u-margBot">
        Base Membership
    </p>
    <p class="u-pMd no-pVertMarg">
        (1 June 2015 – 31 May 2016)
    </p>
    <p class="u-pMd u-p--bold l-alignMiddleAbs l-alignMiddleAbs--right">
        $85.00
    </p>
</div>

Styleguide 5.3.4
*/
.l-alignMiddleAbs {
  position: absolute !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important; }
  .l-alignMiddleAbs--right {
    right: 0 !important; }

/*
.l-centreHoriz

Horizontally centre with an unknown child width in a container with an unknown width.

markup:
<div class="u-clrBg--pink no-hVertMarg" style="height: 100%; width: 300px;">
    <p class="u-hSm l-centreHoriz u-clrBg--orange" style="width: 150px; height: 60px;" >Centred</p>
</div>

sg-wrapper:
<div class="appWrap appWrap--smH" style="height: 200px;">
    <sg-wrapper-content/>
</div>

Styleguide 5.3.5
*/
.l-centreHoriz {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

/*
.l-centreHorizBlock

Horizontally centre using display block and auto margin left/right

markup:
<div class="u-clrBg--pink no-hVertMarg" style="height: 100%; width: 300px;">
    <p class="u-hSm l-centreHorizBlock u-clrBg--orange" style="width: 150px; height: 60px;" >Centred</p>
</div>

sg-wrapper:
<div class="appWrap appWrap--smH" style="height: 200px;">
    <sg-wrapper-content/>
</div>

Styleguide 5.3.6
*/
.l-centreHorizBlock {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important; }

/*
.l-blockPad

Add spacing above and below blocks using "l-blockPad". This may in future be managable in CMS, so please use instead of custom CSS. Defaults to medium (30px).

Modifiers:
- `--none`: Hides the padding.
- `--xs`: Extra small
- `--sm`: Small
- Defaults to medium
- `--lg`: Large
- `--xl`: Extra large

markup:
<p class="u-hLg l-padClearHoriz u-clrBg--purple" style="padding-left: 30px">
  I should have a left padding, but it got removed.
</p>

Styleguide 5.4.6
*/
.l-blockPad {
  width: 100%;
  display: block;
  height: 1.875rem; }
  .l-blockPad--none {
    display: none; }
  .l-blockPad--xs {
    height: 0.625rem; }
  .l-blockPad--sm {
    height: 1.25rem; }
  .l-blockPad--lg {
    height: 2.8125rem; }
  .l-blockPad--xl {
    height: 3.75rem; }
  @media only screen and (max-width: 47.9375em) {
    .l-blockPad--noneMb {
      display: none; } }
  @media only screen and (max-width: 47.9375em) {
    .l-blockPad--xsMb {
      height: 0.625rem; } }
  @media only screen and (max-width: 47.9375em) {
    .l-blockPad--smMb {
      height: 1.25rem; } }
  @media only screen and (max-width: 47.9375em) {
    .l-blockPad--mdMb {
      height: 1.875rem; } }
  @media only screen and (max-width: 47.9375em) {
    .l-blockPad--lgMb {
      height: 2.8125rem; } }
  @media only screen and (max-width: 47.9375em) {
    .l-blockPad--xlMb {
      height: 3.75rem; } }

/*######################################################
	color
#######################################################*/
.text-primary {
  color: #3D7EDB; }

a.text-primary:hover,
a.text-primary:focus {
  color: #2465c1; }

.text-success {
  color: #76BD22; }

a.text-success:hover,
a.text-success:focus {
  color: #5b921a; }

.text-info {
  color: #644C9E; }

a.text-info:hover,
a.text-info:focus {
  color: #4e3b7c; }

.text-warning {
  color: #FFCF59; }

a.text-warning:hover,
a.text-warning:focus {
  color: #ffc026; }

.text-danger {
  color: #E2231A; }

a.text-danger:hover,
a.text-danger:focus {
  color: #b41c15; }

.text-white {
  color: #fff; }

a.text-white:hover,
a.text-white:focus {
  color: #e6e6e6; }

/* background */
.bg-primary {
  background-color: #3D7EDB; }

a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #2465c1; }

.bg-success {
  background-color: #76BD22; }

a.bg-success:hover,
a.bg-success:focus {
  background-color: #5b921a; }

.bg-info {
  background-color: #644C9E; }

a.bg-info:hover,
a.bg-info:focus {
  background-color: #4e3b7c; }

.bg-warning {
  background-color: #FFCF59; }

a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #ffc026; }

.bg-danger {
  background-color: #E2231A; }

a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #b41c15; }

.bg-gray {
  background-color: #F3F2F1; }

a.bg-gray:hover,
a.bg-gray:focus {
  background-color: #dbd9d6; }

/*######################################################
	buttons
#######################################################*/
.btn-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center; }

.btn, .FormSubmitButton, .xform input[type="submit"], .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action, .u-wysiwygArea > a:not(.wysIconBtn), .u-wysiwygArea > button:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn {
  border-radius: 2px;
  -webkit-transition: all ease-in .2s;
  transition: all ease-in .2s;
  border-width: 2px;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  position: relative;
  z-index: 5; }
  .is-mouseuser .btn:hover:not([disabled]), .is-mouseuser .FormSubmitButton:hover:not([disabled]), .is-mouseuser .xform input[type="submit"]:hover:not([disabled]), .xform .is-mouseuser input[type="submit"]:hover:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:hover:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .Form__NavigationBar__Action:hover:not([disabled]), .is-mouseuser .u-wysiwygArea > a:hover:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea > button:hover:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea .wysIconBtn:hover:not([disabled]), .u-wysiwygArea .is-mouseuser .wysIconBtn:hover:not([disabled]) {
    background-image: none !important;
    outline: none !important;
    box-shadow: none !important; }
  .is-touchuser .btn:focus:not([disabled]), .is-touchuser .FormSubmitButton:focus:not([disabled]), .is-touchuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-touchuser input[type="submit"]:focus:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .Form__NavigationBar__Action:focus:not([disabled]), .is-touchuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-touchuser .wysIconBtn:focus:not([disabled]), .is-mouseuser .btn:focus:not([disabled]), .is-mouseuser .FormSubmitButton:focus:not([disabled]), .is-mouseuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-mouseuser input[type="submit"]:focus:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .Form__NavigationBar__Action:focus:not([disabled]), .is-mouseuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-mouseuser .wysIconBtn:focus:not([disabled]) {
    outline: 0;
    background-image: none !important;
    outline: none !important;
    box-shadow: none !important; }
  .is-touchuser .btn:focus:not([disabled]), .is-touchuser .FormSubmitButton:focus:not([disabled]), .is-touchuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-touchuser input[type="submit"]:focus:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .Form__NavigationBar__Action:focus:not([disabled]), .is-touchuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-touchuser .wysIconBtn:focus:not([disabled]), .is-mouseuser .btn:focus:not([disabled]), .is-mouseuser .FormSubmitButton:focus:not([disabled]), .is-mouseuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-mouseuser input[type="submit"]:focus:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .Form__NavigationBar__Action:focus:not([disabled]), .is-mouseuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-mouseuser .wysIconBtn:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .btn:active:not([disabled]), .is-touchuser .FormSubmitButton:active:not([disabled]), .is-touchuser .xform input[type="submit"]:active:not([disabled]), .xform .is-touchuser input[type="submit"]:active:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .Form__NavigationBar__Action:active:not([disabled]), .is-touchuser .u-wysiwygArea > a:active:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea > button:active:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea .wysIconBtn:active:not([disabled]), .u-wysiwygArea .is-touchuser .wysIconBtn:active:not([disabled]) {
    background-image: none !important;
    outline: none !important;
    box-shadow: none !important; }
  .btn:not(.no-btn):active:not([disabled]), .FormSubmitButton:not(.no-btn):active:not([disabled]), .xform input[type="submit"]:not(.no-btn):active:not([disabled]), .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:not(.no-btn):active:not([disabled]), .u-wysiwygArea > a:not(.no-btn):active:not([disabled]):not(.wysIconBtn), .u-wysiwygArea > button:not(.no-btn):active:not([disabled]):not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:not(.no-btn):active:not([disabled]) {
    -webkit-transform: translateY(1px);
    transform: translateY(1px); }
  .btn--nude {
    position: relative;
    background-color: transparent;
    border: none; }
  .btn--circle {
    border-radius: 50%;
    border-color: #DFDFDF;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0 !important; }
    .btn--circleLg {
      width: 5.25rem;
      height: 5.25rem; }
  .btn--iconL, .u-wysiwygArea .wysIconBtn {
    position: relative;
    padding-left: 1.875rem; }
  .btn-icon, .u-wysiwygArea .wysIconBtn > [class^="icon-"] {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    .btn--iconClr1 .btn-icon, .btn--iconClr1 .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .btn--iconClr1 .wysIconBtn > [class^="icon-"] {
      color: white;
      background-color: #3D7EDB; }
    .btn--justIcon .btn-icon, .btn--justIcon .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .btn--justIcon .wysIconBtn > [class^="icon-"] {
      position: static;
      -webkit-transform: none;
      transform: none;
      display: block; }
  .btn-xxs {
    font-size: 0.75rem;
    padding: 3px 14px;
    border-width: 1px; }
  .btn-xs, .btn-group-xs > .btn, .btn-group-xs > .FormSubmitButton, .EPiServerForms .Form__NavigationBar .btn-group-xs > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-xs > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-xs > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-xs > .wysIconBtn, .FormSubmitButton, .xform input[type="submit"] {
    font-size: 0.75rem;
    padding: 5px 14px; }
  .btn-sm, .btn-group-sm > .btn, .btn-group-sm > .FormSubmitButton, .xform .btn-group-sm > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-sm > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-sm > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-sm > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-sm > .wysIconBtn {
    font-size: 0.75rem;
    padding: 1.25rem 1.5rem; }
    .btn-sm.btn--iconL, .btn-group-sm > .btn--iconL.btn, .btn-group-sm > .btn--iconL.FormSubmitButton, .xform .btn-group-sm > input.btn--iconL[type="submit"], .u-wysiwygArea .xform .btn-group-sm > input[type="submit"].wysIconBtn, .EPiServerForms .Form__NavigationBar .btn-group-sm > .btn--iconL.Form__NavigationBar__Action, .u-wysiwygArea .EPiServerForms .Form__NavigationBar .btn-group-sm > .Form__NavigationBar__Action.wysIconBtn, .u-wysiwygArea.btn-group-sm > a.btn--iconL:not(.wysIconBtn), .u-wysiwygArea.btn-group-sm > a.wysIconBtn:not(.wysIconBtn), .u-wysiwygArea.btn-group-sm > button.btn--iconL:not(.wysIconBtn), .u-wysiwygArea.btn-group-sm > button.wysIconBtn:not(.wysIconBtn), .u-wysiwygArea .btn-group-sm > .wysIconBtn, .u-wysiwygArea .btn-sm.wysIconBtn {
      padding-left: 3.4375rem; }
      .btn-sm.btn--iconL .btn-icon, .btn-group-sm > .btn--iconL.btn .btn-icon, .btn-group-sm > .btn--iconL.FormSubmitButton .btn-icon, .xform .btn-group-sm > input.btn--iconL[type="submit"] .btn-icon, .u-wysiwygArea .xform .btn-group-sm > input[type="submit"].wysIconBtn .btn-icon, .EPiServerForms .Form__NavigationBar .btn-group-sm > .btn--iconL.Form__NavigationBar__Action .btn-icon, .u-wysiwygArea .EPiServerForms .Form__NavigationBar .btn-group-sm > .Form__NavigationBar__Action.wysIconBtn .btn-icon, .u-wysiwygArea.btn-group-sm > a.btn--iconL:not(.wysIconBtn) .btn-icon, .u-wysiwygArea.btn-group-sm > a.wysIconBtn:not(.wysIconBtn) .btn-icon, .u-wysiwygArea.btn-group-sm > button.btn--iconL:not(.wysIconBtn) .btn-icon, .u-wysiwygArea.btn-group-sm > button.wysIconBtn:not(.wysIconBtn) .btn-icon, .u-wysiwygArea .btn-group-sm > .wysIconBtn .btn-icon, .u-wysiwygArea .btn-sm.wysIconBtn .btn-icon, .btn-sm.btn--iconL .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .btn-sm.btn--iconL .wysIconBtn > [class^="icon-"], .btn-group-sm > .btn--iconL.btn .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .btn-group-sm > .btn--iconL.btn .wysIconBtn > [class^="icon-"], .btn-group-sm > .btn--iconL.FormSubmitButton .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .btn-group-sm > .btn--iconL.FormSubmitButton .wysIconBtn > [class^="icon-"], .xform .btn-group-sm > input.btn--iconL[type="submit"] .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .xform .btn-group-sm > input.btn--iconL[type="submit"] .wysIconBtn > [class^="icon-"], .u-wysiwygArea .xform .btn-group-sm > input[type="submit"].wysIconBtn .wysIconBtn > [class^="icon-"], .EPiServerForms .Form__NavigationBar .btn-group-sm > .btn--iconL.Form__NavigationBar__Action .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .EPiServerForms .Form__NavigationBar .btn-group-sm > .btn--iconL.Form__NavigationBar__Action .wysIconBtn > [class^="icon-"], .u-wysiwygArea .EPiServerForms .Form__NavigationBar .btn-group-sm > .Form__NavigationBar__Action.wysIconBtn .wysIconBtn > [class^="icon-"], .u-wysiwygArea.btn-group-sm > a.btn--iconL:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea.btn-group-sm > a.wysIconBtn:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea.btn-group-sm > button.btn--iconL:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea.btn-group-sm > button.wysIconBtn:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea .btn-group-sm > .wysIconBtn > [class^="icon-"], .u-wysiwygArea .btn-sm.wysIconBtn .wysIconBtn > [class^="icon-"] {
        left: 1.25rem; }
  .btn-md, .u-wysiwygArea > a:not(.wysIconBtn), .u-wysiwygArea > button:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn {
    font-size: 0.875rem;
    padding: 22px 26px;
    min-width: 150px; }
    .btn-md.btn--iconL, .u-wysiwygArea > a.btn--iconL:not(.wysIconBtn), .u-wysiwygArea > a.wysIconBtn:not(.wysIconBtn), .u-wysiwygArea > button.btn--iconL:not(.wysIconBtn), .u-wysiwygArea > button.wysIconBtn:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn {
      padding-left: 3.4375rem; }
      .btn-md.btn--iconL .btn-icon, .u-wysiwygArea > a.btn--iconL:not(.wysIconBtn) .btn-icon, .u-wysiwygArea > a.wysIconBtn:not(.wysIconBtn) .btn-icon, .u-wysiwygArea > button.btn--iconL:not(.wysIconBtn) .btn-icon, .u-wysiwygArea > button.wysIconBtn:not(.wysIconBtn) .btn-icon, .u-wysiwygArea .wysIconBtn .btn-icon, .u-wysiwygArea .btn-md.btn--iconL .wysIconBtn > [class^="icon-"], .u-wysiwygArea > a.btn--iconL:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea > a.wysIconBtn:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea > button.btn--iconL:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea > button.wysIconBtn:not(.wysIconBtn) .wysIconBtn > [class^="icon-"], .u-wysiwygArea .wysIconBtn > [class^="icon-"] {
        left: 1.25rem; }
  .btn-lg, .btn-group-lg > .btn, .btn-group-lg > .FormSubmitButton, .xform .btn-group-lg > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-lg > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-lg > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-lg > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-lg > .wysIconBtn {
    font-size: 1rem;
    padding: 20px 30px; }
    @media only screen and (max-width: 47.9375em) {
      .btn-lg, .btn-group-lg > .btn, .btn-group-lg > .FormSubmitButton, .xform .btn-group-lg > input[type="submit"], .EPiServerForms .Form__NavigationBar .btn-group-lg > .Form__NavigationBar__Action, .u-wysiwygArea.btn-group-lg > a:not(.wysIconBtn), .u-wysiwygArea.btn-group-lg > button:not(.wysIconBtn), .u-wysiwygArea .btn-group-lg > .wysIconBtn {
        display: block;
        padding-left: inherit;
        padding-right: inherit;
        width: 100%; } }
  .btn--endsMd {
    padding-top: 13px;
    padding-bottom: 13px; }

.btn-default, .u-wysiwygArea > a:not(.wysIconBtn), .u-wysiwygArea > button:not(.wysIconBtn), .u-wysiwygArea .wysIconBtn {
  background-color: #fff;
  border-color: #e6e6e7;
  color: #3D7EDB; }
  .is-mouseuser .btn-default:hover:not([disabled]), .is-mouseuser .u-wysiwygArea > a:hover:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea > button:hover:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea .wysIconBtn:hover:not([disabled]), .u-wysiwygArea .is-mouseuser .wysIconBtn:hover:not([disabled]) {
    background-color: #fff;
    border-color: #3D7EDB;
    color: #3D7EDB; }
  .is-touchuser .btn-default:focus:not([disabled]), .is-touchuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-touchuser .wysIconBtn:focus:not([disabled]), .is-mouseuser .btn-default:focus:not([disabled]), .is-mouseuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-mouseuser .wysIconBtn:focus:not([disabled]) {
    outline: 0;
    background-color: #fff;
    border-color: #3D7EDB;
    color: #3D7EDB; }
  .is-touchuser .btn-default:focus:not([disabled]), .is-touchuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-touchuser .wysIconBtn:focus:not([disabled]), .is-mouseuser .btn-default:focus:not([disabled]), .is-mouseuser .u-wysiwygArea > a:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea > button:focus:not([disabled]):not(.wysIconBtn), .is-mouseuser .u-wysiwygArea .wysIconBtn:focus:not([disabled]), .u-wysiwygArea .is-mouseuser .wysIconBtn:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .btn-default:active:not([disabled]), .is-touchuser .u-wysiwygArea > a:active:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea > button:active:not([disabled]):not(.wysIconBtn), .is-touchuser .u-wysiwygArea .wysIconBtn:active:not([disabled]), .u-wysiwygArea .is-touchuser .wysIconBtn:active:not([disabled]) {
    background-color: #fff;
    border-color: #3D7EDB;
    color: #3D7EDB; }
  .btn-default:not(.no-btn):active:not([disabled]), .u-wysiwygArea > a:not(.no-btn):active:not([disabled]):not(.wysIconBtn), .u-wysiwygArea > button:not(.no-btn):active:not([disabled]):not(.wysIconBtn), .u-wysiwygArea .wysIconBtn:not(.no-btn):active:not([disabled]) {
    -webkit-transform: translateY(1px);
    transform: translateY(1px); }

.btn-white {
  background-color: transparent;
  border-color: #fff;
  color: #fff; }
  .is-mouseuser .btn-white:hover:not([disabled]) {
    background-color: #fff;
    border-color: #fff;
    color: #3D7EDB; }
  .is-touchuser .btn-white:focus:not([disabled]), .is-mouseuser .btn-white:focus:not([disabled]) {
    outline: 0;
    background-color: #fff;
    border-color: #fff;
    color: #3D7EDB; }
  .is-touchuser .btn-white:focus:not([disabled]), .is-mouseuser .btn-white:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .btn-white:active:not([disabled]) {
    background-color: #fff;
    border-color: #fff;
    color: #3D7EDB; }
  .btn-white:not(.no-btn):active:not([disabled]) {
    -webkit-transform: translateY(1px);
    transform: translateY(1px); }

.is-mouseuser .btn-primary:hover:not([disabled]), .is-mouseuser .FormSubmitButton:hover:not([disabled]), .is-mouseuser .xform input[type="submit"]:hover:not([disabled]), .xform .is-mouseuser input[type="submit"]:hover:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:hover:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .Form__NavigationBar__Action:hover:not([disabled]) {
  background-color: #1c4e96;
  border-color: #1c4e96;
  color: #fff; }

.is-touchuser .btn-primary:focus:not([disabled]), .is-touchuser .FormSubmitButton:focus:not([disabled]), .is-touchuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-touchuser input[type="submit"]:focus:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .Form__NavigationBar__Action:focus:not([disabled]), .is-mouseuser .btn-primary:focus:not([disabled]), .is-mouseuser .FormSubmitButton:focus:not([disabled]), .is-mouseuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-mouseuser input[type="submit"]:focus:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .Form__NavigationBar__Action:focus:not([disabled]) {
  outline: 0;
  background-color: #1c4e96;
  border-color: #1c4e96;
  color: #fff; }

.is-touchuser .btn-primary:focus:not([disabled]), .is-touchuser .FormSubmitButton:focus:not([disabled]), .is-touchuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-touchuser input[type="submit"]:focus:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .Form__NavigationBar__Action:focus:not([disabled]), .is-mouseuser .btn-primary:focus:not([disabled]), .is-mouseuser .FormSubmitButton:focus:not([disabled]), .is-mouseuser .xform input[type="submit"]:focus:not([disabled]), .xform .is-mouseuser input[type="submit"]:focus:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .Form__NavigationBar__Action:focus:not([disabled]) {
  outline: 0;
  text-decoration: underline; }

.is-touchuser .btn-primary:active:not([disabled]), .is-touchuser .FormSubmitButton:active:not([disabled]), .is-touchuser .xform input[type="submit"]:active:not([disabled]), .xform .is-touchuser input[type="submit"]:active:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:active:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .Form__NavigationBar__Action:active:not([disabled]) {
  background-color: #1c4e96;
  border-color: #1c4e96;
  color: #fff; }

.btn-primary:not(.no-btn):active:not([disabled]), .FormSubmitButton:not(.no-btn):active:not([disabled]), .xform input[type="submit"]:not(.no-btn):active:not([disabled]), .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action:not(.no-btn):active:not([disabled]) {
  -webkit-transform: translateY(1px);
  transform: translateY(1px); }

.btn-primary.inverse, .inverse.FormSubmitButton, .xform input.inverse[type="submit"], .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action {
  background-color: transparent;
  color: #3D7EDB; }
  .is-mouseuser .btn-primary.inverse:hover:not([disabled]), .is-mouseuser .inverse.FormSubmitButton:hover:not([disabled]), .is-mouseuser .xform input.inverse[type="submit"]:hover:not([disabled]), .xform .is-mouseuser input.inverse[type="submit"]:hover:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action:hover:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .inverse.Form__NavigationBar__Action:hover:not([disabled]) {
    background-color: #3D7EDB;
    border-color: #3D7EDB;
    color: #fff; }
  .is-touchuser .btn-primary.inverse:focus:not([disabled]), .is-touchuser .inverse.FormSubmitButton:focus:not([disabled]), .is-touchuser .xform input.inverse[type="submit"]:focus:not([disabled]), .xform .is-touchuser input.inverse[type="submit"]:focus:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .inverse.Form__NavigationBar__Action:focus:not([disabled]), .is-mouseuser .btn-primary.inverse:focus:not([disabled]), .is-mouseuser .inverse.FormSubmitButton:focus:not([disabled]), .is-mouseuser .xform input.inverse[type="submit"]:focus:not([disabled]), .xform .is-mouseuser input.inverse[type="submit"]:focus:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .inverse.Form__NavigationBar__Action:focus:not([disabled]) {
    outline: 0;
    background-color: #3D7EDB;
    border-color: #3D7EDB;
    color: #fff; }
  .is-touchuser .btn-primary.inverse:focus:not([disabled]), .is-touchuser .inverse.FormSubmitButton:focus:not([disabled]), .is-touchuser .xform input.inverse[type="submit"]:focus:not([disabled]), .xform .is-touchuser input.inverse[type="submit"]:focus:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .inverse.Form__NavigationBar__Action:focus:not([disabled]), .is-mouseuser .btn-primary.inverse:focus:not([disabled]), .is-mouseuser .inverse.FormSubmitButton:focus:not([disabled]), .is-mouseuser .xform input.inverse[type="submit"]:focus:not([disabled]), .xform .is-mouseuser input.inverse[type="submit"]:focus:not([disabled]), .is-mouseuser .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action:focus:not([disabled]), .EPiServerForms .Form__NavigationBar .is-mouseuser .inverse.Form__NavigationBar__Action:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .btn-primary.inverse:active:not([disabled]), .is-touchuser .inverse.FormSubmitButton:active:not([disabled]), .is-touchuser .xform input.inverse[type="submit"]:active:not([disabled]), .xform .is-touchuser input.inverse[type="submit"]:active:not([disabled]), .is-touchuser .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action:active:not([disabled]), .EPiServerForms .Form__NavigationBar .is-touchuser .inverse.Form__NavigationBar__Action:active:not([disabled]) {
    background-color: #3D7EDB;
    border-color: #3D7EDB;
    color: #fff; }
  .btn-primary.inverse:not(.no-btn):active:not([disabled]), .inverse.FormSubmitButton:not(.no-btn):active:not([disabled]), .xform input.inverse[type="submit"]:not(.no-btn):active:not([disabled]), .EPiServerForms .Form__NavigationBar .inverse.Form__NavigationBar__Action:not(.no-btn):active:not([disabled]) {
    -webkit-transform: translateY(1px);
    transform: translateY(1px); }

.btn-back {
  padding-left: 50px;
  position: relative;
  text-align: right; }
  .btn-back:before {
    font-size: 1rem;
    left: 18px;
    position: absolute;
    top: 50%;
    margin-top: -8px; }
    .btn-back:before:before {
      content: ""; }

.u-btnBasic {
  /*
  * Removes inner padding and border in Firefox 4+.
  */
  -webkit-appearance: none;
  overflow: visible;
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  margin: 0;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 12px;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.15s linear;
  transition: background-color 0.15s linear;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.5rem;
  min-height: 1.5rem;
  text-decoration: none;
  text-align: center;
  cursor: default;
  /*
    Has transparent border because :focus adds 1px border.
    Border used, instead of outline, because it preserves border-radius.
    */
  border-radius: 0;
  border: 1px solid transparent;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  color: #0073CF;
  background-color: transparent;
  padding: 0;
  text-align: left;
  font-size: 1rem; }
  .u-btnBasic::-moz-focus-inner {
    border: 0;
    padding: 0; }
  .ie-msie9 .u-btnBasic {
    word-break: break-all; }
  .u-btnBasic:not([disabled]):not(.no-btn) {
    cursor: pointer; }
  .u-btnBasic[disabled] {
    pointer-events: none; }
  .u-btnBasic.is-processing {
    cursor: not-allowed !important;
    opacity: 0.6 !important; }
  .u-btnBasic.no-click {
    cursor: not-allowed !important;
    pointer-events: none !important; }
  .is-mouseuser .u-btnBasic:hover:not([disabled]) {
    text-decoration: underline; }
  .is-touchuser .u-btnBasic:focus:not([disabled]), .is-mouseuser .u-btnBasic:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .u-btnBasic:focus:not([disabled]), .is-mouseuser .u-btnBasic:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .u-btnBasic:active:not([disabled]) {
    text-decoration: underline; }
  @media only screen and (min-width: 48em) {
    .u-btnBasic {
      font-size: 1.25rem; } }

.btnSkim {
  position: relative;
  color: black;
  background-color: transparent;
  border: none;
  overflow: visible;
  display: inline-block;
  text-decoration: none !important; }
  .is-mouseuser .btnSkim:hover:not([disabled]) {
    color: #000; }
    .is-mouseuser .btnSkim:hover:not([disabled]) .ulOffset {
      border-color: #3D7EDB; }
  .is-touchuser .btnSkim:focus:not([disabled]), .is-mouseuser .btnSkim:focus:not([disabled]) {
    outline: 0;
    color: #000; }
    .is-touchuser .btnSkim:focus:not([disabled]) .ulOffset, .is-mouseuser .btnSkim:focus:not([disabled]) .ulOffset {
      border-color: #3D7EDB; }
  .is-touchuser .btnSkim:focus:not([disabled]), .is-mouseuser .btnSkim:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .btnSkim:active:not([disabled]) {
    color: #000; }
    .is-touchuser .btnSkim:active:not([disabled]) .ulOffset {
      border-color: #3D7EDB; }
  .btnSkim:not(.no-btn):active:not([disabled]) {
    -webkit-transform: translateY(1px);
    transform: translateY(1px); }
  .btnSkim .ulOffsetWrap {
    padding-top: inherit;
    padding-bottom: inherit;
    padding-left: inherit;
    padding-right: inherit; }
  .btnSkim--iconL {
    position: relative;
    padding-left: 1.25rem; }
  .btnSkim--inv .ulOffset {
    border-color: #3D7EDB; }
  .is-mouseuser .btnSkim--inv:hover:not([disabled]) .ulOffset {
    border-color: transparent; }
  .is-touchuser .btnSkim--inv:focus:not([disabled]), .is-mouseuser .btnSkim--inv:focus:not([disabled]) {
    outline: 0; }
    .is-touchuser .btnSkim--inv:focus:not([disabled]) .ulOffset, .is-mouseuser .btnSkim--inv:focus:not([disabled]) .ulOffset {
      border-color: transparent; }
  .is-touchuser .btnSkim--inv:focus:not([disabled]), .is-mouseuser .btnSkim--inv:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .btnSkim--inv:active:not([disabled]) .ulOffset {
    border-color: transparent; }
  .btnSkim--inv:not(.no-btn):active:not([disabled]) {
    -webkit-transform: translateY(1px);
    transform: translateY(1px); }
  .btnSkim-icon {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    .btnSkim--iconClr1 .btnSkim-icon {
      color: #3D7EDB; }

/*
u-noIOSPhone

Strip out iOS phone number styling.

markup:
<div>
  <p class="u-noIOSPhone">1800 000 555</p>
</div>

Styleguide 2.2.5
*/
.u-noIOSPhone {
  color: inherit !important; }
  .u-noIOSPhone > a {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important; }

/*######################################################
	checkbox
#######################################################*/
.checkbox label {
  color: #444;
  font-size: 2rem;
  line-height: normal;
  padding-left: 30px;
  position: relative; }

.checkbox input[type="checkbox"] {
  position: absolute;
  outline: none;
  left: 20px;
  top: 0;
  height: 20px;
  width: 20px; }

div.checkbox {
  margin: 0; }

/*######################################################
  dropdown
#######################################################*/
.open > .dropdown-menu,
.uib-dropdown-open > .dropdown-menu {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  opacity: 1; }

div.dropdown-menu {
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  border: none;
  display: block;
  opacity: 0;
  transform-origin: top;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -o-transform-origin: top;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  padding: 13px 0 10px 0;
  margin: 1px 0 0 0;
  right: 0;
  left: auto;
  overflow: visible !important; }
  .bootstrap-select div.dropdown-menu {
    left: 0;
    right: auto; }

ul.dropdown-menu.inner {
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 10px 0 !important;
  position: relative; }
  ul.dropdown-menu.inner::after {
    box-shadow: -2px 2px 4px -2px rgba(0, 0, 0, 0.2);
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: -0.5em;
    top: 2px;
    right: -12px;
    box-sizing: border-box;
    border: 1em solid black;
    border-color: transparent transparent #fff #fff;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }

ul.dropdown-menu > li a {
  color: #000;
  font-size: 0.875rem;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  padding: 20px 16px;
  outline: none; }
  ul.dropdown-menu > li a:focus {
    background-color: #fff; }
  ul.dropdown-menu > li a:focus, ul.dropdown-menu > li a:hover {
    color: #000; }

ul.dropdown-menu > li.selected a {
  background-color: #E2EFFA;
  color: #000; }

.dropdown-toggle {
  border: none;
  font-size: 1.25rem;
  font-weight: normal;
  text-transform: none;
  padding: 13px 15px; }
  .bootstrap-select .dropdown-toggle:focus {
    outline: none !important; }
  .dropdown-toggle:hover,
  .dropdown-toggle:focus .dropdown-toggle.focus, .dropdown-toggle:active, .dropdown-toggle.active,
  .btn-group.open > .dropdown-toggle,
  .open > .dropdown-toggle {
    box-shadow: none;
    background-color: transparent !important;
    color: #444 !important; }
  .dropdown-toggle > .bs-caret > .caret {
    border: none;
    font-size: 15px;
    height: auto;
    margin-top: -7px !important;
    margin-left: 10px;
    width: auto; }
    .dropdown-toggle > .bs-caret > .caret:before {
      content: ""; }

.dropdown-default .dropdown-toggle,
.dropdown-default .btn-default:active,
.dropdown-default .u-wysiwygArea > a:active:not(.wysIconBtn),
.dropdown-default .u-wysiwygArea > button:active:not(.wysIconBtn),
.dropdown-default .u-wysiwygArea .wysIconBtn:active, .u-wysiwygArea
.dropdown-default .wysIconBtn:active,
.dropdown-default .btn-default.active,
.dropdown-default .u-wysiwygArea > a.active:not(.wysIconBtn),
.dropdown-default .u-wysiwygArea > button.active:not(.wysIconBtn),
.dropdown-default .u-wysiwygArea .active.wysIconBtn, .u-wysiwygArea
.dropdown-default .active.wysIconBtn,
.dropdown-default.open > .btn-default.dropdown-toggle,
.u-wysiwygArea.dropdown-default.open > a.dropdown-toggle:not(.wysIconBtn),
.u-wysiwygArea.dropdown-default.open > button.dropdown-toggle:not(.wysIconBtn), .u-wysiwygArea
.dropdown-default.open > .dropdown-toggle.wysIconBtn {
  box-shadow: none;
  background-color: transparent;
  font-size: 1.5em;
  font-weight: 500;
  padding: 5px 20px 5px 0; }
  .dropdown-default .dropdown-toggle:hover, .dropdown-default .dropdown-toggle:focus, .dropdown-default .dropdown-toggle.focus,
  .dropdown-default .btn-default:active:hover,
  .dropdown-default .u-wysiwygArea > a:active:hover:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea > button:active:hover:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea .wysIconBtn:active:hover, .u-wysiwygArea
  .dropdown-default .wysIconBtn:active:hover,
  .dropdown-default .btn-default:active:focus,
  .dropdown-default .u-wysiwygArea > a:active:focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea > button:active:focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea .wysIconBtn:active:focus, .u-wysiwygArea
  .dropdown-default .wysIconBtn:active:focus,
  .dropdown-default .btn-default:active.focus,
  .dropdown-default .u-wysiwygArea > a:active.focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea > button:active.focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea .wysIconBtn:active.focus, .u-wysiwygArea
  .dropdown-default .wysIconBtn:active.focus,
  .dropdown-default .btn-default.active:hover,
  .dropdown-default .u-wysiwygArea > a.active:hover:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea > button.active:hover:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea .active.wysIconBtn:hover, .u-wysiwygArea
  .dropdown-default .active.wysIconBtn:hover,
  .dropdown-default .btn-default.active:focus,
  .dropdown-default .u-wysiwygArea > a.active:focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea > button.active:focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea .active.wysIconBtn:focus, .u-wysiwygArea
  .dropdown-default .active.wysIconBtn:focus,
  .dropdown-default .btn-default.active.focus,
  .dropdown-default .u-wysiwygArea > a.active.focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea > button.active.focus:not(.wysIconBtn),
  .dropdown-default .u-wysiwygArea .active.focus.wysIconBtn, .u-wysiwygArea
  .dropdown-default .active.focus.wysIconBtn,
  .dropdown-default.open > .btn-default.dropdown-toggle:hover,
  .u-wysiwygArea.dropdown-default.open > a.dropdown-toggle:hover:not(.wysIconBtn),
  .u-wysiwygArea.dropdown-default.open > button.dropdown-toggle:hover:not(.wysIconBtn), .u-wysiwygArea
  .dropdown-default.open > .dropdown-toggle.wysIconBtn:hover,
  .dropdown-default.open > .btn-default.dropdown-toggle:focus,
  .u-wysiwygArea.dropdown-default.open > a.dropdown-toggle:focus:not(.wysIconBtn),
  .u-wysiwygArea.dropdown-default.open > button.dropdown-toggle:focus:not(.wysIconBtn), .u-wysiwygArea
  .dropdown-default.open > .dropdown-toggle.wysIconBtn:focus,
  .dropdown-default.open > .btn-default.dropdown-toggle.focus,
  .u-wysiwygArea.dropdown-default.open > a.dropdown-toggle.focus:not(.wysIconBtn),
  .u-wysiwygArea.dropdown-default.open > button.dropdown-toggle.focus:not(.wysIconBtn), .u-wysiwygArea
  .dropdown-default.open > .dropdown-toggle.focus.wysIconBtn {
    box-shadow: none;
    background-color: transparent; }
  .dropdown-default .dropdown-toggle .caret,
  .dropdown-default .btn-default:active .caret,
  .dropdown-default .u-wysiwygArea > a:active:not(.wysIconBtn) .caret,
  .dropdown-default .u-wysiwygArea > button:active:not(.wysIconBtn) .caret,
  .dropdown-default .u-wysiwygArea .wysIconBtn:active .caret, .u-wysiwygArea
  .dropdown-default .wysIconBtn:active .caret,
  .dropdown-default .btn-default.active .caret,
  .dropdown-default .u-wysiwygArea > a.active:not(.wysIconBtn) .caret,
  .dropdown-default .u-wysiwygArea > button.active:not(.wysIconBtn) .caret,
  .dropdown-default .u-wysiwygArea .active.wysIconBtn .caret, .u-wysiwygArea
  .dropdown-default .active.wysIconBtn .caret,
  .dropdown-default.open > .btn-default.dropdown-toggle .caret,
  .u-wysiwygArea.dropdown-default.open > a.dropdown-toggle:not(.wysIconBtn) .caret,
  .u-wysiwygArea.dropdown-default.open > button.dropdown-toggle:not(.wysIconBtn) .caret, .u-wysiwygArea
  .dropdown-default.open > .dropdown-toggle.wysIconBtn .caret {
    border: none;
    font-size: 8px;
    height: inherit;
    margin-left: 8px;
    width: auto; }
    .dropdown-default .dropdown-toggle .caret:before,
    .dropdown-default .btn-default:active .caret:before,
    .dropdown-default .u-wysiwygArea > a:active:not(.wysIconBtn) .caret:before,
    .dropdown-default .u-wysiwygArea > button:active:not(.wysIconBtn) .caret:before,
    .dropdown-default .u-wysiwygArea .wysIconBtn:active .caret:before, .u-wysiwygArea
    .dropdown-default .wysIconBtn:active .caret:before,
    .dropdown-default .btn-default.active .caret:before,
    .dropdown-default .u-wysiwygArea > a.active:not(.wysIconBtn) .caret:before,
    .dropdown-default .u-wysiwygArea > button.active:not(.wysIconBtn) .caret:before,
    .dropdown-default .u-wysiwygArea .active.wysIconBtn .caret:before, .u-wysiwygArea
    .dropdown-default .active.wysIconBtn .caret:before,
    .dropdown-default.open > .btn-default.dropdown-toggle .caret:before,
    .u-wysiwygArea.dropdown-default.open > a.dropdown-toggle:not(.wysIconBtn) .caret:before,
    .u-wysiwygArea.dropdown-default.open > button.dropdown-toggle:not(.wysIconBtn) .caret:before, .u-wysiwygArea
    .dropdown-default.open > .dropdown-toggle.wysIconBtn .caret:before {
      content: ""; }

.btn-group.dropdown {
  text-align: left; }
  .btn-group.dropdown .btn.dropdown-toggle, .btn-group.dropdown .dropdown-toggle.FormSubmitButton, .btn-group.dropdown .xform input.dropdown-toggle[type="submit"], .xform .btn-group.dropdown input.dropdown-toggle[type="submit"], .btn-group.dropdown .EPiServerForms .Form__NavigationBar .dropdown-toggle.Form__NavigationBar__Action, .EPiServerForms .Form__NavigationBar .btn-group.dropdown .dropdown-toggle.Form__NavigationBar__Action, .btn-group.dropdown .u-wysiwygArea > a.dropdown-toggle:not(.wysIconBtn), .btn-group.dropdown .u-wysiwygArea > button.dropdown-toggle:not(.wysIconBtn), .btn-group.dropdown .u-wysiwygArea .dropdown-toggle.wysIconBtn, .u-wysiwygArea .btn-group.dropdown .dropdown-toggle.wysIconBtn {
    background-color: transparent;
    color: #3D7EDB;
    font-size: 1.25rem;
    padding-left: 0;
    padding-right: 0; }
  .btn-group.dropdown .caret {
    color: #3D7EDB;
    margin-top: -4px;
    position: absolute;
    right: 0;
    top: 50%; }
  .btn-group.dropdown .dropdown-menu li a {
    color: #3D7EDB;
    font-size: 1rem; }
    .btn-group.dropdown .dropdown-menu li a:hover {
      color: #2465c1 !important; }

.default-dropdown-toggle {
  background: transparent;
  border: none;
  color: #3D7EDB;
  font-size: 1.25rem;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  position: relative; }
  .default-dropdown-toggle .caret {
    border: none;
    font-size: 8px;
    height: inherit;
    margin-left: 8px;
    width: auto; }
    .default-dropdown-toggle .caret:before {
      content: ""; }

.FormTextbox__Input, .xform input[type="text"], .xform textarea, .xform input[type="password"], .xform input[type="email"], .xform input[type="number"] {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-size: 1.25rem; }

.FormTextbox .Form__Element__Caption {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  color: #4F5357; }

.Form__Element__ValidationError, .xform .field-validation-valid {
  font-size: 0.9375rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
  line-height: 1.6;
  color: #E2231A !important; }

.Form__Status__Message {
  font-size: 0.9375rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
  line-height: 1.6;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  color: #14A085 !important;
  border: 1px solid #14A085;
  background-color: #f7fefd !important; }

.Form__Warning__Message {
  color: #E2231A !important;
  border: 1px solid #E2231A;
  background-color: #fef4f3 !important; }

.FormRange .Form__Element__Caption + span {
  display: block; }
  .FormRange .Form__Element__Caption + span:before, .FormRange .Form__Element__Caption + span:after {
    content: " ";
    display: table; }
  .FormRange .Form__Element__Caption + span:after {
    clear: both; }

.FormRange__Max, .FormRange__Min {
  font-size: 1rem;
  margin-top: 0.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.6;
  float: left;
  display: block;
  margin: 0 10px; }

.FormRange__Input {
  float: left;
  display: block;
  margin: 5px 0 0 0 !important;
  padding: 0 !important;
  -webkit-appearance: none;
  width: 100%; }
  .FormRange__Input:focus {
    outline: none; }
  .FormRange__Input::-webkit-slider-runnable-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: none;
    background: #CCDFF0;
    border-radius: 25px;
    border: 0px solid #CCDFF0; }
  .FormRange__Input::-webkit-slider-thumb {
    box-shadow: none;
    border: 0px solid #CCDFF0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #0073CF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -3.6px; }
  .FormRange__Input:focus::-webkit-slider-runnable-track {
    background: #CCDFF0; }
  .FormRange__Input::-moz-range-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: none;
    background: #CCDFF0;
    border-radius: 25px;
    border: 0px solid #CCDFF0; }
  .FormRange__Input::-moz-range-thumb {
    box-shadow: none;
    border: 0px solid #CCDFF0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #0073CF;
    cursor: pointer; }
  .FormRange__Input::-ms-track {
    width: 100%;
    height: 12.8px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
    border-width: 4px 0; }
    .ie-msedge .FormRange__Input::-ms-track {
      border-width: 0 0; }
  .FormRange__Input::-ms-fill-lower {
    background: #CCDFF0;
    border: 0px solid #CCDFF0;
    border-radius: 50px;
    box-shadow: none; }
  .FormRange__Input::-ms-fill-upper {
    background: #CCDFF0;
    border: 0px solid #CCDFF0;
    border-radius: 50px;
    box-shadow: none; }
  .FormRange__Input::-ms-thumb {
    box-shadow: none;
    border: 0px solid #CCDFF0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #0073CF;
    cursor: pointer; }
  .FormRange__Input:focus::-ms-fill-lower {
    background: #CCDFF0; }
  .FormRange__Input:focus::-ms-fill-upper {
    background: #CCDFF0; }

.FormSelection select, .xform select, .selectPickerWrap select {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

.FormSelection select[data-ss-uuid], .xform select[data-ss-uuid], .selectPickerWrap select[data-ss-uuid] {
  display: none;
  pointer-events: none; }

.FormSelection .style-select, .xform .style-select, .selectPickerWrap .style-select {
  display: block;
  position: relative;
  width: 100%; }

.FormSelection .style-select, .FormSelection .style-select *, .xform .style-select, .xform .style-select *, .selectPickerWrap .style-select, .selectPickerWrap .style-select * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-align: left;
  line-height: 19px;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  color: #4F5357;
  cursor: pointer; }

.FormSelection .style-select, .xform .style-select, .selectPickerWrap .style-select {
  z-index: 10; }
  .FormSelection .style-select.open, .xform .style-select.open, .selectPickerWrap .style-select.open {
    z-index: 20; }
  .FormSelection .style-select .ss-selected-option, .xform .style-select .ss-selected-option, .selectPickerWrap .style-select .ss-selected-option {
    width: 100%;
    min-height: 50px;
    background-color: #FFF;
    border-radius: 2px;
    padding: 16px 32px 16px 14px;
    border: 1px solid #c6c6c6; }
    .FormSelection .style-select .ss-selected-option:active, .FormSelection .style-select .ss-selected-option:focus, .xform .style-select .ss-selected-option:active, .xform .style-select .ss-selected-option:focus, .selectPickerWrap .style-select .ss-selected-option:active, .selectPickerWrap .style-select .ss-selected-option:focus {
      outline: none; }
    .has-error .FormSelection .style-select .ss-selected-option, .has-error .xform .style-select .ss-selected-option, .has-error .selectPickerWrap .style-select .ss-selected-option {
      border-color: #E2231A; }
  .FormSelection .style-select .ss-selected-option::after, .xform .style-select .ss-selected-option::after, .selectPickerWrap .style-select .ss-selected-option::after {
    content: "▾";
    position: absolute;
    top: 50%;
    margin-top: -11px;
    right: 12px;
    display: block;
    color: #0073CF;
    font-size: 1.25rem; }
  .FormSelection .style-select .ss-dropdown, .xform .style-select .ss-dropdown, .selectPickerWrap .style-select .ss-dropdown {
    top: 52px;
    left: 0;
    position: absolute;
    float: left;
    width: 100%;
    display: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #c6c6c6;
    border-top: 0 none;
    max-height: 500px;
    overflow: auto; }
    .FormSelection .style-select .ss-dropdown .ss-option, .xform .style-select .ss-dropdown .ss-option, .selectPickerWrap .style-select .ss-dropdown .ss-option {
      width: 100%;
      padding: 16px 14px;
      background-color: white; }
      .FormSelection .style-select .ss-dropdown .ss-option.highlighted, .xform .style-select .ss-dropdown .ss-option.highlighted, .selectPickerWrap .style-select .ss-dropdown .ss-option.highlighted {
        background-color: #CCDFF0; }
      .is-mouseuser .FormSelection .style-select .ss-dropdown .ss-option:hover:not([disabled]), .is-mouseuser .xform .style-select .ss-dropdown .ss-option:hover:not([disabled]), .is-mouseuser .selectPickerWrap .style-select .ss-dropdown .ss-option:hover:not([disabled]) {
        background-color: #e8f0f8; }
      .is-touchuser .FormSelection .style-select .ss-dropdown .ss-option:focus:not([disabled]), .is-mouseuser .FormSelection .style-select .ss-dropdown .ss-option:focus:not([disabled]), .is-touchuser .xform .style-select .ss-dropdown .ss-option:focus:not([disabled]), .is-mouseuser .xform .style-select .ss-dropdown .ss-option:focus:not([disabled]), .is-touchuser .selectPickerWrap .style-select .ss-dropdown .ss-option:focus:not([disabled]), .is-mouseuser .selectPickerWrap .style-select .ss-dropdown .ss-option:focus:not([disabled]) {
        outline: 0;
        background-color: #e8f0f8; }
      .is-touchuser .FormSelection .style-select .ss-dropdown .ss-option:active:not([disabled]), .is-touchuser .xform .style-select .ss-dropdown .ss-option:active:not([disabled]), .is-touchuser .selectPickerWrap .style-select .ss-dropdown .ss-option:active:not([disabled]) {
        background-color: #e8f0f8; }
      .FormSelection .style-select .ss-dropdown .ss-option.disabled, .xform .style-select .ss-dropdown .ss-option.disabled, .selectPickerWrap .style-select .ss-dropdown .ss-option.disabled {
        color: #d0d0d0; }
      .FormSelection .style-select .ss-dropdown .ss-option.ticked, .xform .style-select .ss-dropdown .ss-option.ticked, .selectPickerWrap .style-select .ss-dropdown .ss-option.ticked {
        padding-left: 2.1875rem;
        position: relative;
        cursor: default !important; }
        .FormSelection .style-select .ss-dropdown .ss-option.ticked:before, .xform .style-select .ss-dropdown .ss-option.ticked:before, .selectPickerWrap .style-select .ss-dropdown .ss-option.ticked:before {
          content: "✓";
          font-size: 1.125rem;
          position: absolute;
          left: 0.9375rem;
          top: 50%;
          margin-top: -0.5625rem; }
  .FormSelection .style-select.open .ss-dropdown, .xform .style-select.open .ss-dropdown, .selectPickerWrap .style-select.open .ss-dropdown {
    display: block; }
  .FormSelection .style-select.open .ss-selected-option::after, .xform .style-select.open .ss-selected-option::after, .selectPickerWrap .style-select.open .ss-selected-option::after {
    content: "▴"; }

.xform table {
  width: 100%; }

.xform fieldset {
  background: transparent;
  border: none;
  padding: 0; }
  .xform fieldset legend {
    border: none;
    margin: 3px 0; }

.xform input[type="radio"],
.xform input[type="checkbox"] {
  margin-right: 4px; }

.xform label {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  font-size: 1rem;
  color: #4F5357; }

.xform td {
  padding-bottom: 20px; }

.EPiServerForms .Form__NavigationBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px; }
  .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action {
    border-radius: 2px !important;
    height: auto !important;
    padding: 6px 12px !important;
    background-image: none !important;
    color: white !important; }
    @media only screen and (max-width: 767px) {
      .EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action {
        font-size: 12px;
        padding: 6px; } }
  .EPiServerForms .Form__NavigationBar .Form__NavigationBar__ProgressBar {
    margin: 0 10px; }

/*######################################################
  form
#######################################################*/
.form-wrapper {
  padding: 10px 0 3px 0; }
  .modal-body .form-wrapper {
    padding: 0; }
  .form-wrapper legend {
    color: #414042;
    font-family: "Adelle-Regular", serif;
    font-size: 1.8rem;
    padding-top: 25px;
    text-transform: uppercase; }
  .form-wrapper p {
    font-size: 1.6rem;
    line-height: 2rem; }

.form-group {
  margin-bottom: 10px; }
  .form-group:before, .form-group:after {
    content: " ";
    display: table; }
  .form-group:after {
    clear: both; }
  .modal .form-group {
    margin-bottom: 20px; }

.form-item {
  padding-bottom: 10px;
  position: relative; }

.control-label {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
  padding-top: 14px; }

.form-control, .FormTextbox__Input, .xform input[type="text"], .xform textarea, .xform input[type="password"], .xform input[type="email"], .xform input[type="number"] {
  -webkit-transition: all ease-in .2s;
  transition: all ease-in .2s;
  box-shadow: none;
  border-radius: 0;
  border-color: #c6c6c6;
  color: #414042;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  height: inherit;
  line-height: normal;
  padding: 14px 16px;
  width: 100%; }
  .form-control:focus, .FormTextbox__Input:focus, .xform input[type="text"]:focus, .xform textarea:focus, .xform input[type="password"]:focus, .xform input[type="email"]:focus, .xform input[type="number"]:focus {
    box-shadow: none;
    border-color: #c6c6c6; }
  .form-control:disabled, .FormTextbox__Input:disabled, .xform input[type="text"]:disabled, .xform textarea:disabled, .xform input[type="password"]:disabled, .xform input[type="email"]:disabled, .xform input[type="number"]:disabled, .form-control[disabled="disabled"], [disabled="disabled"].FormTextbox__Input, .xform input[disabled="disabled"][type="text"], .xform textarea[disabled="disabled"], .xform input[disabled="disabled"][type="password"], .xform input[disabled="disabled"][type="email"], .xform input[disabled="disabled"][type="number"] {
    background-color: #eee;
    border-color: #DFDFDF;
    color: #F3F2F1;
    cursor: default; }
  .error .form-control, .error .FormTextbox__Input, .error .xform input[type="text"], .xform .error input[type="text"], .error .xform textarea, .xform .error textarea, .error .xform input[type="password"], .xform .error input[type="password"], .error .xform input[type="email"], .xform .error input[type="email"], .error .xform input[type="number"], .xform .error input[type="number"], .form-control.input-validation-error, .input-validation-error.FormTextbox__Input, .xform input.input-validation-error[type="text"], .xform textarea.input-validation-error, .xform input.input-validation-error[type="password"], .xform input.input-validation-error[type="email"], .xform input.input-validation-error[type="number"] {
    border-color: #E2231A; }

.form-control-static {
  font-size: 1.5em;
  font-weight: 500;
  line-height: normal;
  padding: 0; }

.form-message {
  -webkit-transition: padding ease-in .2s, max-height ease-in .2s;
  transition: padding ease-in .2s, max-height ease-in .2s;
  font-size: 1.3em;
  padding: 0;
  max-height: 0;
  overflow: hidden; }
  .error .form-message {
    color: #E2231A;
    padding: 5px 0;
    max-height: 100%; }

textarea.form-control, textarea.FormTextbox__Input, .xform textarea {
  height: 180px;
  padding: 12px 15px;
  resize: vertical;
  max-width: 100%; }

select.form-control, select.FormTextbox__Input {
  font-family: "ProximaNova-Regular", sans-serif;
  font-size: 1.8rem;
  padding: 18px 30px 18px 16px; }
  select.form-control option, select.FormTextbox__Input option {
    font-size: .8em;
    padding-bottom: 10px;
    padding-top: 10px;
    line-height: 50px; }

input[type=file] {
  font-size: 1.6rem; }

.is-datepicker {
  position: relative; }
  .is-datepicker:before {
    content: "\e900";
    font-family: 'icomoon';
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 1.6em;
    color: #436dda; }

.required:after {
  color: #E2231A;
  content: "*";
  position: relative;
  top: 4px;
  right: 0;
  margin-left: 2px; }

.field-validation-error {
  color: #E2231A;
  display: block;
  font-size: 1.6rem;
  line-height: normal;
  padding: 5px 0 0 0; }

.u-inputIcon {
  position: relative;
  color: #444444; }
  .u-inputIconSymbol {
    pointer-events: none;
    position: absolute;
    left: 11px;
    top: 0.875rem;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-size: 1.25rem; }
  .u-inputIconInp {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-size: 1.25rem;
    padding-left: 1.875rem; }
    .u-inputIconInp[type=number] {
      -moz-appearance: textfield; }
      .u-inputIconInp[type=number]::-webkit-inner-spin-button, .u-inputIconInp[type=number]::-webkit-outer-spin-button {
        -webkit-appearance: none; }

.u-fileUpload {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0; }
  .u-fileUploadWrap {
    position: relative;
    overflow: hidden; }
  .u-fileUploadSelected {
    display: block;
    margin-top: 7px;
    color: #616365;
    font-size: 0.75rem; }
  .u-fileUploadTitle {
    /*
  * Removes inner padding and border in Firefox 4+.
  */
    -webkit-appearance: none;
    overflow: visible;
    font: inherit;
    font-size: 1rem;
    text-transform: none;
    margin: 0;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 12px;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 0.15s linear;
    transition: background-color 0.15s linear;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    line-height: 1.5rem;
    min-height: 1.5rem;
    text-decoration: none;
    text-align: center;
    cursor: default;
    /*
    Has transparent border because :focus adds 1px border.
    Border used, instead of outline, because it preserves border-radius.
    */
    border-radius: 0;
    border: 1px solid transparent;
    border-radius: 2px;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    position: relative;
    font-size: 0.75rem;
    padding: 3px 14px;
    border-width: 1px;
    min-width: 150px; }
    .u-fileUploadTitle::-moz-focus-inner {
      border: 0;
      padding: 0; }
    .ie-msie9 .u-fileUploadTitle {
      word-break: break-all; }
    .u-fileUploadTitle:not([disabled]):not(.no-btn) {
      cursor: pointer; }
    .u-fileUploadTitle[disabled] {
      pointer-events: none; }
    .u-fileUploadTitle.is-processing {
      cursor: not-allowed !important;
      opacity: 0.6 !important; }
    .u-fileUploadTitle.no-click {
      cursor: not-allowed !important;
      pointer-events: none !important; }
    .is-mouseuser .u-fileUploadTitle:hover:not([disabled]) {
      background-color: #3D7EDB;
      color: #fff; }
    .is-touchuser .u-fileUploadTitle:focus:not([disabled]), .is-mouseuser .u-fileUploadTitle:focus:not([disabled]) {
      outline: 0;
      background-color: #3D7EDB;
      color: #fff; }
    .is-touchuser .u-fileUploadTitle:focus:not([disabled]), .is-mouseuser .u-fileUploadTitle:focus:not([disabled]) {
      outline: 0;
      text-decoration: underline; }
    .is-touchuser .u-fileUploadTitle:active:not([disabled]) {
      background-color: #3D7EDB;
      color: #fff; }
    .u-fileUploadTitle[disabled] {
      color: #bababa;
      background-color: white;
      border-color: #CCDFF0; }
    .u-fileUploadTitle:not([disabled]) {
      background-color: white;
      color: #3D7EDB;
      border-color: #3D7EDB; }

.intro {
  margin: auto;
  max-width: 950px;
  text-align: center;
  padding-bottom: 20px; }
  .intro .page-title {
    margin-bottom: 16px; }
  .intro p {
    font-size: 2.4rem;
    line-height: 1.6em; }

/*######################################################
	radio
#######################################################*/
.radio {
  font-size: 1.5em;
  line-height: 20px; }
  .radio label {
    color: #444;
    font-size: 2rem;
    line-height: normal;
    padding-left: 20px;
    padding-right: 20px;
    position: relative; }
  .radio input[type=radio] {
    position: relative;
    outline: none;
    top: 4px;
    height: 20px;
    width: 20px;
    /*
		&:before {
			border: 2px solid;
			display: block;
			content: "";
			height: 20px;
			width: 20px;
		}
		&:after {
			border: 2px solid red;
			display: block;
			content: "";
			height: 20px;
			width: 20px;
		}
		*/ }

/*######################################################
	section
#######################################################*/
/*
Removed to be replaced by block padding (see https://levogroup.atlassian.net/browse/CHCWR-28)
.page-section {
	padding: 60px 0;

	@include break-sm {
		padding: 35px 0;
	}

	@include break-xs {
		padding: 20px 0;
	}
}
*/
.section-title {
  padding-bottom: 30px; }

/*######################################################
	select
#######################################################*/
select {
  background-color: transparent;
  font-size: 1.5em;
  line-height: 1.4em;
  outline: none !important;
  padding: 14px 40px 14px 15px;
  position: relative;
  width: 100%;
  z-index: 2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  .table-wrapper select {
    padding: 10px 35px 14px 10px; }
  select:hover {
    cursor: pointer; }
  select:disabled, select[disabled="disabled"] {
    background-color: #eee;
    color: #F3F2F1;
    cursor: default; }
  td select,
  th select {
    font-size: 14px; }

.select-option {
  position: relative; }
  .select-option:after {
    color: #3D7EDB;
    content: "\e907";
    margin-top: -5px;
    position: absolute;
    right: 15px;
    font-family: 'icomoon';
    font-size: 0.65em;
    top: 50%;
    z-index: 0; }
    td .select-option:after,
    th .select-option:after {
      font-size: 6.5px; }

/*
Visibility

Hide elements based on conditions.

Styleguide 6.4.0
*/
/*
u-hiddenTouch and u-hiddenMouse

Hide elements based on if they are touch or mouse users.

markup:
<div>
  <p class="u-hiddenMouse">I'm only for touch users</p>
  <p class="u-hiddenTouch">I'm only for mouse users</p>
</div>

Styleguide 6.4.1
*/
.is-touchuser .u-hiddenTouch,
.is-mouseuser .u-hiddenMouse {
  display: none !important; }

/*
u-hidden

Remove from the flow and screen readers on any device

markup:
<p class="u-hidden">I'm completely hidden</p>

Styleguide 6.4.2
*/
.u-hidden {
  display: none !important;
  visibility: hidden !important; }

/*
u-invisible

It's hidden, but still affects layout

markup:
<p class="u-invisible">Harry Potter in his invisibility cloak</p>

Styleguide 6.4.3
*/
.u-invisible {
  visibility: hidden !important; }

/*
u-display

Shortcuts for changing the display property, such as showing elements that are hidden by display:none.

markup:
<div>
  <p class="u-displayBlock">I'm display block</p>
  <p class="u-displayInline">I'm display inline</p>
  <p class="u-displayInlineBlock">I'm display inline-block</p>
</div>

Styleguide 6.4.4
*/
.u-displayBlock {
  display: block !important; }

.u-displayInline {
  display: inline !important; }

.u-displayInlineBlock {
  display: inline-block !important;
  max-width: 100%; }

/*
u-visible

Shortcuts for hiding elements based on certain breakpoints.

Notes:
- Avoids setting display to `block` so it works also with `inline-block` and `table`

markup:
<div>
  <p class="u-visibleMl">I'm only visible on mobiles landscape and lower</p>
  <p class="u-visibleDs">I'm only visible on small desktops and landscape tablets and higher</p>
  <p class="u-visibleTp">I'm only visible on small portrait tablets specifically</p>
  <p class="u-hiddenMl">I'm hidden on mobile landscape and lower</p>
  <p class="u-hiddenTp">I'm hidden on small desktops and landscape tablets specifically</p>
  <p class="u-hiddenDs">I'm hidden on small desktops and landscape tablets and higher</p>
</div>

Styleguide 6.4.5
*/
@media only screen and (min-width: 62em) {
  .u-visibleMp {
    display: none !important; }
  .u-visibleMl {
    display: none !important; }
  .u-visibleTp {
    display: none !important; }
  .u-hiddenDs {
    display: none !important; } }

@media only screen and (max-width: 61.9375em) and (min-width: 48em) {
  .u-visibleMp {
    display: none !important; }
  .u-visibleMl {
    display: none !important; }
  .u-visibleDs {
    display: none !important; }
  .u-hiddenTp {
    display: none !important; } }

@media only screen and (max-width: 47.9375em) {
  .u-visibleTp {
    display: none !important; }
  .u-visibleDs {
    display: none !important; }
  .u-hiddenMl {
    display: none !important; } }

@media only screen and (max-width: 29.9375em) {
  .u-visibleTp {
    display: none !important; }
  .u-visibleDs {
    display: none !important; }
  .u-visibleMl {
    display: none !important; }
  .u-hiddenMp {
    display: none !important; } }

/*
u-accessibleHidden

Hide content from view, but still make it accessible for screen readers and crawlers.
Ref: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility

markup:
<div>
  <p class="u-pSm">Should be nothing visible below this line.</p>
  <p class="u-pSm u-accessibleHidden">If you see this, it's not working!</p>
</div>

Styleguide 6.4.6
*/
.u-accessibleHidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/*
no-print

Hide content/element on print mode.

markup:
<div>
  <p class="u-pSm no-print">I'm hidden on print mode</p>
  <button class="u-btnCasual no-print">I'm a hidden button on print mode</button>
</div>

Styleguide 6.4.7
*/
@media print {
  .no-print {
    display: none !important; } }

/*
 * Break inside (for CSS multi-column column).
 * Keeps an element together, so it doesn't break badly when in  a multi-column.
 */
/*
 * For retina display
 */
/*
  create css triangle
*/
/*
Utils

Collection of useful utility classes to style your content

Styleguide 6.0.0
*/
/*
Clearers

Styles for clearing things, like floats, margins and padding.

Styleguide 5.4.0
*/
/*
.u-clearFix

Add this class to a parent container to clear floats.

markup:
<div class="u-clearFix u-clrBg--orange no-hVertMarg">
    <p class="u-hMd u-clrBg--purple u-floatRight">Some floated content</p>
    <p class="u-hMd u-clrBg--purple u-floatLeft">Some floated content</p>
</div>

Styleguide 5.4.1
*/
.u-clearFix:before, .u-clearFix:after {
  content: " ";
  display: table; }

.u-clearFix:after {
  clear: both; }

/*
.u-floatLeft & u-floatRight

Float element left or right.

Uses max-width: 100%; to prevent content overflow on small devices.

Based on UIKit's '.uk-float-left' & '.uk-float-right'.

Modifiers:
- `--mp`: Mobile Portrait and up
- `--ml`: Mobile Landscape and up
- `--tp`: Tablet Portrait and up
- `--ds`: desktop Small and up
- `--dm`: Desktop Medium and up
- `--dl`: Desktop Large and up

markup:
<div class="no-hVertMarg">
    <p class="u-floatLeft u-hSm u-clrBg--pink" >Floated left</p>
    <p class="u-floatRight u-hSm u-clrBg--pink" >Floated right</p>
</div>

sg-wrapper:
<div class="l-sitewrap l-sitewrap--smH u-clrBg--orange">
    <sg-wrapper-content/>
</div>

Styleguide 5.3.1
*/
.u-floatLeft {
  float: left;
  max-width: 100%; }
  @media only screen and (min-width: 22.5em) {
    .u-floatLeft--mp {
      float: left;
      max-width: 100%; } }
  @media only screen and (min-width: 30em) {
    .u-floatLeft--ml {
      float: left;
      max-width: 100%; } }
  @media only screen and (min-width: 48em) {
    .u-floatLeft--tp {
      float: left;
      max-width: 100%; } }
  @media only screen and (min-width: 62em) {
    .u-floatLeft--ds {
      float: left;
      max-width: 100%; } }
  @media only screen and (min-width: 81.25em) {
    .u-floatLeft--dm {
      float: left;
      max-width: 100%; } }
  @media only screen and (min-width: 100em) {
    .u-floatLeft--dl {
      float: left;
      max-width: 100%; } }

.u-floatRight {
  float: right;
  max-width: 100%; }
  @media only screen and (min-width: 22.5em) {
    .u-floatRight--mp {
      float: right;
      max-width: 100%; } }
  @media only screen and (min-width: 30em) {
    .u-floatRight--ml {
      float: right;
      max-width: 100%; } }
  @media only screen and (min-width: 48em) {
    .u-floatRight--tp {
      float: right;
      max-width: 100%; } }
  @media only screen and (min-width: 62em) {
    .u-floatRight--ds {
      float: right;
      max-width: 100%; } }
  @media only screen and (min-width: 81.25em) {
    .u-floatRight--dm {
      float: right;
      max-width: 100%; } }
  @media only screen and (min-width: 100em) {
    .u-floatRight--dl {
      float: right;
      max-width: 100%; } }

/*
.u-borderCircle

Create a circle.

markup:
<div class="u-borderCircle u-clrBg--pink" style="width: 50px; height: 50px;"></div>

Styleguide 6.2.2
*/
.u-borderCircle {
  border-radius: 50%; }

/*
.u-borderRounded

Add rounded edges.

markup:
<div class="u-borderRounded u-clrBg--orange" style="width: 100px; height: 50px;"></div>

Styleguide 6.2.3
*/
.u-borderRounded {
  border-radius: 5px; }

/* underline */
.ulOffset {
  border-bottom: 2px solid transparent;
  display: inline;
  color: transparent;
  margin: 0;
  pointer-events: none; }
  .ulOffsetWrap {
    cursor: text;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    right: 0;
    margin: 0; }

.iconCircle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  padding: 0;
  display: inline-block;
  text-align: center;
  font-size: 0.75rem;
  color: #3D7EDB;
  border: 1px solid #DFDFDF;
  /*&:before {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
    }*/ }
  .iconCircle:before {
    display: inline-block;
    vertical-align: middle; }
  .iconCircle--clr1 {
    background-color: #3D7EDB;
    color: white;
    border-color: #3D7EDB; }

/*
Misc

Miscellaneous Utilities

Styleguide 6.8.0
*/
/*
u-highZ10 (20,30,40,50)

Utilities for setting high z-indexes easily.

markup:
<div>
  <p class="u-highZ10">XXXX</p>
</div>

Styleguide 6.8.1
*/
.u-highZ10 {
  z-index: 10;
  position: relative; }

.u-highZ20 {
  z-index: 20;
  position: relative; }

.u-highZ30 {
  z-index: 30;
  position: relative; }

.u-highZ40 {
  z-index: 40;
  position: relative; }

.u-highZ50 {
  z-index: 50;
  position: relative; }

/*
u-pad

Utilities for adding/removing padding easily.


Modifiers:
- Without modifier it removed all padding
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: XX large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-pad"><p class="u-pSm">Zero padding</p></div>
    <div class="u-pad--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-pad--sm"><p class="u-pSm">Small</p></div>
    <div class="u-pad--md"><p class="u-pSm">Medium</p></div>
    <div class="u-pad--lg"><p class="u-pSm">Large</p></div>
    <div class="u-pad--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-pad--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.2
*/
.u-pad {
  padding: 0 !important; }
  .u-pad--xs {
    padding: 0.3125rem !important; }
  .u-pad--sm {
    padding: 0.6875rem !important; }
  .u-pad--md {
    padding: 1.125rem !important; }
  .u-pad--lg {
    padding: 1.75rem !important; }
  .u-pad--xl {
    padding: 2.5rem !important; }
  .u-pad--xxl {
    padding: 3.25rem !important; }
  .u-pad--xxxl {
    padding: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-pad--noMb {
      padding: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-pad--noDt {
      padding: 0 !important; } }

/*
u-padTop

Utilities for adding/removing padding-top easily.


Modifiers:
- Without modifier it removed all padding-top
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--mbXs`: mobile Extra small
- `--mbSm`: mobile Small
- `--mbMd`: mobile Medium
- `--mbLg`: mobile Large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-padTop"><p class="u-pSm">Zero padding-top</p></div>
    <div class="u-padTop--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-padTop--sm"><p class="u-pSm">Small</p></div>
    <div class="u-padTop--md"><p class="u-pSm">Medium</p></div>
    <div class="u-padTop--lg"><p class="u-pSm">Large</p></div>
    <div class="u-padTop--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-padTop--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.3
*/
.u-padTop {
  padding-top: 0 !important; }
  .u-padTop--xs {
    padding-top: 0.3125rem !important; }
  .u-padTop--sm {
    padding-top: 0.625rem !important; }
  .u-padTop--md {
    padding-top: 0.9375rem !important; }
  .u-padTop--lg {
    padding-top: 1.5625rem !important; }
  .u-padTop--xl {
    padding-top: 2.5rem !important; }
  .u-padTop--xxl {
    padding-top: 3.25rem !important; }
  .u-padTop--xxxl {
    padding-top: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-padTop--mbXs {
      padding-top: 0.3125rem !important; }
    .u-padTop--mbSm {
      padding-top: 0.625rem !important; }
    .u-padTop--mbMd {
      padding-top: 0.9375rem !important; }
    .u-padTop--mbLg {
      padding-top: 1.5625rem !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-padTop--noMb {
      padding-top: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-padTop--noDt {
      padding-top: 0 !important; } }

/*
u-padBot

Utilities for adding/removing padding-bottom easily.


Modifiers:
- Without modifier it removed all padding-bottom
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--mbXs`: mobile Extra small
- `--mbSm`: mobile Small
- `--mbMd`: mobile Medium
- `--mbLg`: mobile Large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-padBot"><p class="u-pSm">Zero padding-bottom</p></div>
    <div class="u-padBot--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-padBot--sm"><p class="u-pSm">Small</p></div>
    <div class="u-padBot--md"><p class="u-pSm">Medium</p></div>
    <div class="u-padBot--lg"><p class="u-pSm">Large</p></div>
    <div class="u-padBot--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-padBot--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.4
*/
.u-padBot {
  padding-bottom: 0 !important; }
  .u-padBot--xs {
    padding-bottom: 0.3125rem !important; }
  .u-padBot--sm {
    padding-bottom: 0.625rem !important; }
  .u-padBot--md {
    padding-bottom: 0.9375rem !important; }
  .u-padBot--lg {
    padding-bottom: 1.5625rem !important; }
  .u-padBot--xl {
    padding-bottom: 2.5rem !important; }
  .u-padBot--xxl {
    padding-bottom: 3.25rem !important; }
  .u-padBot--xxxl {
    padding-bottom: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-padBot--mbXs {
      padding-bottom: 0.3125rem !important; }
    .u-padBot--mbSm {
      padding-bottom: 0.625rem !important; }
    .u-padBot--mbMd {
      padding-bottom: 0.9375rem !important; }
    .u-padBot--mbLg {
      padding-bottom: 1.5625rem !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-padBot--noMb {
      padding-bottom: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-padBot--noDt {
      padding-bottom: 0 !important; } }

/*
u-padLeft

Utilities for adding/removing padding-bottom easily.


Modifiers:
- Without modifier it removed all padding-bottom
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--mbXs`: mobile Extra small
- `--mbSm`: mobile Small
- `--mbMd`: mobile Medium
- `--mbLg`: mobile Large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-padLeft"><p class="u-pSm">Zero padding-bottom</p></div>
    <div class="u-padLeft--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-padLeft--sm"><p class="u-pSm">Small</p></div>
    <div class="u-padLeft--md"><p class="u-pSm">Medium</p></div>
    <div class="u-padLeft--lg"><p class="u-pSm">Large</p></div>
    <div class="u-padLeft--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-padLeft--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.5
*/
.u-padLeft {
  padding-left: 0 !important; }
  .u-padLeft--xs {
    padding-left: 0.3125rem !important; }
  .u-padLeft--sm {
    padding-left: 0.625rem !important; }
  .u-padLeft--md {
    padding-left: 0.9375rem !important; }
  .u-padLeft--lg {
    padding-left: 1.5625rem !important; }
  .u-padLeft--xl {
    padding-left: 2.5rem !important; }
  .u-padLeft--xxl {
    padding-left: 3.25rem !important; }
  .u-padLeft--xxxl {
    padding-left: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-padLeft--mbXs {
      padding-left: 0.3125rem !important; }
    .u-padLeft--mbSm {
      padding-left: 0.625rem !important; }
    .u-padLeft--mbMd {
      padding-left: 0.9375rem !important; }
    .u-padLeft--mbLg {
      padding-left: 1.5625rem !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-padLeft--noMb {
      padding-left: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-padLeft--noDt {
      padding-left: 0 !important; } }

/*
u-padRight

Utilities for adding/removing padding-bottom easily.


Modifiers:
- Without modifier it removed all padding-bottom
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--mbXs`: mobile Extra small
- `--mbSm`: mobile Small
- `--mbMd`: mobile Medium
- `--mbLg`: mobile Large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-padRight"><p class="u-pSm">Zero padding-bottom</p></div>
    <div class="u-padRight--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-padRight--sm"><p class="u-pSm">Small</p></div>
    <div class="u-padRight--md"><p class="u-pSm">Medium</p></div>
    <div class="u-padRight--lg"><p class="u-pSm">Large</p></div>
    <div class="u-padRight--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-padRight--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.6
*/
.u-padRight {
  padding-right: 0 !important; }
  .u-padRight--xs {
    padding-right: 0.3125rem !important; }
  .u-padRight--sm {
    padding-right: 0.625rem !important; }
  .u-padRight--md {
    padding-right: 0.9375rem !important; }
  .u-padRight--lg {
    padding-right: 1.5625rem !important; }
  .u-padRight--xl {
    padding-right: 2.5rem !important; }
  .u-padRight--xxl {
    padding-right: 3.25rem !important; }
  .u-padRight--xxxl {
    padding-right: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-padRight--mbXs {
      padding-right: 0.3125rem !important; }
    .u-padRight--mbSm {
      padding-right: 0.625rem !important; }
    .u-padRight--mbMd {
      padding-right: 0.9375rem !important; }
    .u-padRight--mbLg {
      padding-right: 1.5625rem !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-padRight--noMb {
      padding-right: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-padRight--noDt {
      padding-right: 0 !important; } }

/*
u-padSide

Utilities for adding/removing padding left and right easily.


Modifiers:
- `--xsNeg`: Extra small
- `--smNeg`: Small
- `--mdNeg`: Medium


markup:
<div>
    <div class="u-padSide--mbXsNeg"><p class="u-pSm">Extra Small negative side margin for mobile</p></div>
    <div class="u-padSide--mbSmNeg"><p class="u-pSm">Small negative side margin for mobile</p></div>
    <div class="u-padSide--mbMdNeg"><p class="u-pSm">Medium negative side margin for mobile</p></div>
</div>

Styleguide 6.8.1--
*/
.u-padSide {
  padding-right: 0 !important;
  padding-left: 0 !important; }
  .u-padSide--xs {
    padding-right: 0.3125rem !important; }
  .u-padSide--sm {
    padding-right: 0.625rem !important; }
  .u-padSide--md {
    padding-right: 0.9375rem !important; }
  .u-padSide--lg {
    padding-right: 1.5625rem !important; }
  .u-padSide--xl {
    padding-right: 2.5rem !important; }
  .u-padSide--xxl {
    padding-right: 3.25rem !important; }
  .u-padSide--xxxl {
    padding-right: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-padSide--mbXs {
      padding-right: 0.3125rem !important; }
    .u-padSide--mbSm {
      padding-right: 0.625rem !important; }
    .u-padSide--mbMd {
      padding-right: 0.9375rem !important; }
    .u-padSide--mbLg {
      padding-right: 1.5625rem !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-padSide--noMb {
      padding-right: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-padSide--noDt {
      padding-right: 0 !important; } }
  .u-padSide--xs {
    padding-left: 0.3125rem !important; }
  .u-padSide--sm {
    padding-left: 0.625rem !important; }
  .u-padSide--md {
    padding-left: 0.9375rem !important; }
  .u-padSide--lg {
    padding-left: 1.5625rem !important; }
  .u-padSide--xl {
    padding-left: 2.5rem !important; }
  .u-padSide--xxl {
    padding-left: 3.25rem !important; }
  .u-padSide--xxxl {
    padding-left: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-padSide--mbXs {
      padding-left: 0.3125rem !important; }
    .u-padSide--mbSm {
      padding-left: 0.625rem !important; }
    .u-padSide--mbMd {
      padding-left: 0.9375rem !important; }
    .u-padSide--mbLg {
      padding-left: 1.5625rem !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-padSide--noMb {
      padding-left: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-padSide--noDt {
      padding-left: 0 !important; } }

/*
u-margTop

Utilities for adding/removing margin-top easily.


Modifiers:
- Without modifier it removed all margin-top
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile

markup:
<div>
    <div class="u-margTop"><p class="u-pSm">Zero margin-top</p></div>
    <div class="u-margTop--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-margTop--sm"><p class="u-pSm">Small</p></div>
    <div class="u-margTop--md"><p class="u-pSm">Medium</p></div>
    <div class="u-margTop--lg"><p class="u-pSm">Large</p></div>
    <div class="u-margTop--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-margTop--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.7
*/
.u-margTop {
  margin-top: 0 !important; }
  .u-margTop--xs {
    margin-top: 0.3125rem !important; }
  .u-margTop--sm {
    margin-top: 0.625rem !important; }
  .u-margTop--md {
    margin-top: 0.9375rem !important; }
  .u-margTop--lg {
    margin-top: 1.5625rem !important; }
  .u-margTop--xl {
    margin-top: 2.5rem !important; }
  .u-margTop--xxl {
    margin-top: 3.25rem !important; }
  .u-margTop--xxxl {
    margin-top: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-margTop--noMb {
      margin-top: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-margTop--noDt {
      margin-top: 0 !important; } }

/*
u-margBot

Utilities for adding/removing margin-bottom easily.


Modifiers:
- Without modifier it removed all margin-bottom
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-margBot"><p class="u-pSm">Zero margin-bottom</p></div>
    <div class="u-margBot--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-margBot--sm"><p class="u-pSm">Small</p></div>
    <div class="u-margBot--md"><p class="u-pSm">Medium</p></div>
    <div class="u-margBot--lg"><p class="u-pSm">Large</p></div>
    <div class="u-margBot--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-margBot--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.8
*/
.u-margBot {
  margin-bottom: 0 !important; }
  .u-margBot--xs {
    margin-bottom: 0.3125rem !important; }
  .u-margBot--sm {
    margin-bottom: 0.625rem !important; }
  .u-margBot--md {
    margin-bottom: 0.9375rem !important; }
  .u-margBot--lg {
    margin-bottom: 1.5625rem !important; }
  .u-margBot--xl {
    margin-bottom: 2.5rem !important; }
  .u-margBot--xxl {
    margin-bottom: 3.25rem !important; }
  .u-margBot--xxxl {
    margin-bottom: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-margBot--noMb {
      margin-bottom: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-margBot--noDt {
      margin-bottom: 0 !important; } }

/*
u-margLeft

Utilities for adding/removing margin-left easily.


Modifiers:
- Without modifier it removed all margin-left
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-margLeft"><p class="u-pSm">Zero margin-left</p></div>
    <div class="u-margLeft--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-margLeft--sm"><p class="u-pSm">Small</p></div>
    <div class="u-margLeft--md"><p class="u-pSm">Medium</p></div>
    <div class="u-margLeft--lg"><p class="u-pSm">Large</p></div>
    <div class="u-margLeft--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-margLeft--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.9
*/
.u-margLeft {
  margin-left: 0 !important; }
  .u-margLeft--xs {
    margin-left: 0.3125rem !important; }
  .u-margLeft--sm {
    margin-left: 0.625rem !important; }
  .u-margLeft--md {
    margin-left: 0.9375rem !important; }
  .u-margLeft--lg {
    margin-left: 1.5625rem !important; }
  .u-margLeft--xl {
    margin-left: 2.5rem !important; }
  .u-margLeft--xxl {
    margin-left: 3.25rem !important; }
  .u-margLeft--xxxl {
    margin-left: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-margLeft--noMb {
      margin-left: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-margLeft--noDt {
      margin-left: 0 !important; } }

/*
u-margRight

Utilities for adding/removing margin-right easily.


Modifiers:
- Without modifier it removed all margin-right
- `--xs`: Extra small
- `--sm`: Small
- `--md`: Medium
- `--lg`: Large
- `--xl`: Extra large
- `--xxl`: Extra large
- `--noDt`: Force remove for desktop
- `--noMb`: Force remove for mobile


markup:
<div>
    <div class="u-margRight"><p class="u-pSm">Zero margin-left</p></div>
    <div class="u-margRight--xs"><p class="u-pSm">Extra Small</p></div>
    <div class="u-margRight--sm"><p class="u-pSm">Small</p></div>
    <div class="u-margRight--md"><p class="u-pSm">Medium</p></div>
    <div class="u-margRight--lg"><p class="u-pSm">Large</p></div>
    <div class="u-margRight--xl"><p class="u-pSm">Extra Large</p></div>
    <div class="u-margRight--xxl"><p class="u-pSm">XX Large</p></div>
</div>

Styleguide 6.8.10
*/
.u-margRight {
  margin-right: 0 !important; }
  .u-margRight--xs {
    margin-right: 0.3125rem !important; }
  .u-margRight--sm {
    margin-right: 0.625rem !important; }
  .u-margRight--md {
    margin-right: 0.9375rem !important; }
  .u-margRight--lg {
    margin-right: 1.5625rem !important; }
  .u-margRight--xl {
    margin-right: 2.5rem !important; }
  .u-margRight--xxl {
    margin-right: 3.25rem !important; }
  .u-margRight--xxxl {
    margin-right: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-margRight--noMb {
      margin-right: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-margRight--noDt {
      margin-right: 0 !important; } }

/*
u-margSide

Utilities for adding/removing margin left and right easily.


Modifiers:
- `--xsNeg`: Extra small
- `--smNeg`: Small
- `--mdNeg`: Small


markup:
<div>
    <div class="u-margSide--mbXsNeg"><p class="u-pSm">Extra Small negative side margin for mobile</p></div>
    <div class="u-margSide--mbSmNeg"><p class="u-pSm">Small negative side margin for mobile</p></div>
    <div class="u-margSide--mbMdNeg"><p class="u-pSm">Medium negative side margin for mobile</p></div>
</div>

Styleguide 6.8.11
*/
.u-margSide {
  margin-left: 0 !important;
  margin-right: 0 !important; }
  .u-margSide--xs {
    margin-left: 0.3125rem !important; }
  .u-margSide--sm {
    margin-left: 0.625rem !important; }
  .u-margSide--md {
    margin-left: 0.9375rem !important; }
  .u-margSide--lg {
    margin-left: 1.5625rem !important; }
  .u-margSide--xl {
    margin-left: 2.5rem !important; }
  .u-margSide--xxl {
    margin-left: 3.25rem !important; }
  .u-margSide--xxxl {
    margin-left: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-margSide--noMb {
      margin-left: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-margSide--noDt {
      margin-left: 0 !important; } }
  .u-margSide--xs {
    margin-right: 0.3125rem !important; }
  .u-margSide--sm {
    margin-right: 0.625rem !important; }
  .u-margSide--md {
    margin-right: 0.9375rem !important; }
  .u-margSide--lg {
    margin-right: 1.5625rem !important; }
  .u-margSide--xl {
    margin-right: 2.5rem !important; }
  .u-margSide--xxl {
    margin-right: 3.25rem !important; }
  .u-margSide--xxxl {
    margin-right: 6.25rem !important; }
  @media only screen and (max-width: 47.9375em) {
    .u-margSide--noMb {
      margin-right: 0 !important; } }
  @media only screen and (min-width: 48em) {
    .u-margSide--noDt {
      margin-right: 0 !important; } }
  @media only screen and (max-width: 47.9375em) {
    .u-margSide--mbXsNeg {
      margin-left: -5px !important;
      margin-right: -5px !important; }
    .u-margSide--mbSmNeg {
      margin-left: -10px !important;
      margin-right: -10px !important; }
    .u-margSide--mbMdNeg {
      margin-left: -15px !important;
      margin-right: -15px !important; } }

/*
u-frame

Utilities for adding border.
    
Modifiers:
- `--mdClr1`: Makes the border gold
- `--xdkGry`: Makes the border extra dark gray (almost black)
- `--single`: Makes the border single (1px) with #CCC color (lighter gray)
- `--top`: just top
- `--bot`: just bottom
- `--left`: just left
- `--right`: just right
- `--ends`: just top and bottom
- `--sides`: just left and right

markup:
<div>
    <div class="u-frame"><p class="u-pSm">Adds a frame</p></div>
</div>

Styleguide 6.8.12
*/
.u-frame {
  border: 2px solid #DFDFDF !important; }
  .u-frame--single {
    border: 1px solid #DFDFDF !important; }
  .u-frame--top {
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important; }
  .u-frame--bot {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important; }
  .u-frame--left {
    border-bottom: none !important;
    border-right: none !important;
    border-top: none !important; }
  .u-frame--right {
    border-bottom: none !important;
    border-left: none !important;
    border-top: none !important; }
  .u-frame--sides {
    border-bottom: none !important;
    border-top: none !important; }
  .u-frame--ends {
    border-left: none !important;
    border-right: none !important; }

/*
u-shadow

Adds a drop shadow
markup:
<div class="u-frame" style="height: 400px; width: 100%; background: white;">
    <p class="u-pSm">Shadow</p>
</div>

Styleguide 6.8.14
*/
.u-shadow {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2); }
  .u-shadow--big {
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2); }
  .u-shadow--bot {
    box-shadow: inset 0 -14px 17px -9px rgba(0, 0, 0, 0.1); }

.u-iframe {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .u-iframe {
      border: 1px solid #c6c6c6; } }
  .u-iframe iframe {
    width: 100%;
    border: 0; }

/*
Colours

Styleguide 3.0.0
*/
/*
Background colours

Background colour utility classes, using naming convention `.u-clrBg--{COLOUR_NAME}`.

markup:
<div class="u-clrBg--orange">
  <h1 class="u-hMd">I should have an orange bg</h1>
</div>

Styleguide 3.1.0
*/
/*
Shades

List of BG grayscale shades

markup:
<div class="u-clrBg--mdGry">
  <h1 class="u-hMd">I should have a 'medium-gray' bg</h1>
</div>

Styleguide 3.1.1
*/
.u-clrBg--white {
  background-color: #fff !important; }

.u-clrBg--xxltGry {
  background-color: #f2f2f2 !important; }

.u-clrBg--xltGry {
  background-color: #F3F2F1 !important; }

.u-clrBg--ltGry {
  background-color: #DFDFDF !important; }

.u-clrBg--mLtGry {
  background-color: #c6c6c6 !important; }

.u-clrBg--mdGry {
  background-color: gray !important; }

.u-clrBg--dkGry {
  background-color: #616365 !important; }

.u-clrBg--xdkGry {
  background-color: #4F5357 !important; }

.u-clrBg--xxdkGry {
  background-color: #444444 !important; }

.u-clrBg--black {
  background-color: #000 !important; }

/*
Soft BG colours

List of soft colours, used mainly in styleguide

markup:
<div class="u-clrBg--purple">
  <h1 class="u-hMd">I should have an purple bg</h1>
</div>

Styleguide 3.1.2
*/
.u-clrBg--pink {
  background-color: #ffd4dc !important; }

.u-clrBg--orange {
  background-color: #ffd280 !important; }

.u-clrBg--orange-1 {
  background-color: #E98300 !important; }

.u-clrBg--purple {
  background-color: #956FDF !important; }

.u-clrBg--brown {
  background-color: #9D646C !important; }

.u-clrBg--blue {
  background-color: #0073CF !important; }

.u-clrBg--light-green {
  background-color: #7a9d49 !important; }

.u-clrBg--soft-green {
  background-color: #7ca295 !important; }

.u-clrBg--light-purple {
  background-color: #8783a4 !important; }

/*
Foreground colours

Foreground colour utility classes, using naming convention `.u-clr--{COLOUR_NAME}`.

markup:
<h1 class="u-hMd u-clr--orange">I should be orange</h1>

Styleguide 3.2.0
*/
/*
Shades

List of grayscale shades `.u-clr--{COLOUR_NAME}`.
    
markup:
<div class="u-clrBg--orange">
    <h1 class="u-hMd u-clr--white">u-clr--white</h1>
    <h1 class="u-hMd u-clr--xltGry">u-clr--xltGry</h1>
    <h1 class="u-hMd u-clr--ltGry">u-clr--ltGry</h1>
    <h1 class="u-hMd u-clr--mdGry">u-clr--mdGry</h1>
    <h1 class="u-hMd u-clr--dkGry">u-clr--dkGry</h1>
    <h1 class="u-hMd u-clr--xdkGry">u-clr--xdkGry</h1>
    <h1 class="u-hMd u-clr--xxdkGry">u-clr--xxdkGry</h1>
    <h1 class="u-hMd u-clr--black">u-clr--black</h1>
</div>

Styleguide 3.2.1
*/
.u-clr--white {
  color: #fff !important; }

.u-clr--xxltGry {
  color: #f2f2f2 !important; }

.u-clr--xltGry {
  color: #F3F2F1 !important; }

.u-clr--ltGry {
  color: #DFDFDF !important; }

.u-clr--mLtGry {
  color: #c6c6c6 !important; }

.u-clr--mdGry {
  color: gray !important; }

.u-clr--dkGry {
  color: #616365 !important; }

.u-clr--xdkGry {
  color: #4F5357 !important; }

.u-clr--xxdkGry {
  color: #444444 !important; }

.u-clr--black {
  color: #000 !important; }

/*
Soft colours

List of soft colours, used mainly in styleguide

markup:
<h1 class="u-hMd u-clr--purple">I should be purple</h1>

Styleguide 3.2.2
*/
.u-clr--pink {
  color: #ffd4dc !important; }

.u-clr--orange {
  color: #ffd280 !important; }

.u-clr--orange-1 {
  color: #E98300 !important; }

.u-clr--purple {
  color: #956FDF !important; }

.u-clr--brown {
  color: #9D646C !important; }

.u-clr--blue {
  color: #0073CF !important; }

.u-clr--light-green {
  color: #7a9d49 !important; }

.u-clr--soft-green {
  color: #7ca295 !important; }

.u-clr--light-purple {
  color: #8783a4 !important; }

/*
CHC colours

Colours specific to CHC website.

Styleguide 3.3.0
*/
/*
Soft CHC BG colours

Soft CHC bg colours, using naming convention `.u-clr--{COLOUR_NAME}SoftBg`.

markup:
<div>
    <!--  -->
    <h1 class="u-hMd u-clr--mdClr1SoftBg">u-clr--mdClr1</h1>
    <h1 class="u-hMd u-clr--dkClr1SoftBg">u-clr--dkClr1</h1>
    <!--  -->
</div>

Styleguide 3.3.1
*/
/*
CHC foreground colours

CHC foreground colours, using naming convention `.u-clr--{COLOUR_NAME}`.

markup:
<div>
    <!--  -->
    <h1 class="u-hMd u-clr--mdClr1">u-clr--mdClr1</h1>
    <h1 class="u-hMd u-clr--dkClr1">u-clr--dkClr1</h1>
    <!--  -->
</div>

Styleguide 3.3.2
*/
.u-clr--primary {
  color: #3D7EDB !important; }

.u-clr--success {
  color: #76BD22 !important; }

.u-clr--info {
  color: #644C9E !important; }

.u-clr--warning {
  color: #FFCF59 !important; }

.u-clr--danger {
  color: #E2231A !important; }

.u-clr--themeOrange {
  color: #E98300 !important; }

.u-clr--themeGreen {
  color: #14A085 !important; }

.u-clr--themePurple {
  color: #894B9D !important; }

.u-clr--themePink {
  color: #E44A8F !important; }

.u-clr--themeDark {
  color: #414042 !important; }

.u-clr--blue1 {
  color: #124F76 !important; }

.u-clr--blue2 {
  color: #0073CF !important; }

.u-clr--blue3 {
  color: #009FDA !important; }

.u-clr--blue4 {
  color: #003F72 !important; }

.u-clr--blue5 {
  color: #CCDFF0 !important; }

.u-clr--blue6 {
  color: #eff8ff !important; }

/*
CHC background colours

CHC background colours, using naming convention `.u-clrBg--{COLOUR_NAME}`.

markup:
<div>
    <!--  -->
    <p>"Danger" - #E2231A</p>
    <h1 class="u-hMd u-clrBg--mdClr1">u-clrBg--danger</h1>
</div>

Styleguide 3.3.3
*/
.u-clrBg--primary {
  background-color: #3D7EDB !important; }

.u-clrBg--success {
  background-color: #76BD22 !important; }

.u-clrBg--info {
  background-color: #644C9E !important; }

.u-clrBg--warning {
  background-color: #FFCF59 !important; }

.u-clrBg--danger {
  background-color: #E2231A !important; }

.u-clrBg--themeOrange {
  background-color: #E98300 !important; }

.u-clrBg--themeGreen {
  background-color: #14A085 !important; }

.u-clrBg--themePurple {
  background-color: #894B9D !important; }

.u-clrBg--themePink {
  background-color: #E44A8F !important; }

.u-clrBg--themeDark {
  background-color: #414042 !important; }

.u-clrBg--blue1 {
  background-color: #124F76 !important; }

.u-clrBg--blue2 {
  background-color: #0073CF !important; }

.u-clrBg--blue3 {
  background-color: #009FDA !important; }

.u-clrBg--blue4 {
  background-color: #003F72 !important; }

.u-clrBg--blue5 {
  background-color: #CCDFF0 !important; }

.u-clrBg--blue6 {
  background-color: #eff8ff !important; }

/*
CHC border colours

CHC border colours, using naming convention `.u-clrBorder--{COLOUR_NAME}`.

markup:
<div>
    <!--  -->
    <p>"Danger" - #E2231A</p>
    <h1 class="u-hMd u-clrBorder--danger">u-clrBorder--danger</h1>
</div>

Styleguide 3.3.3
*/
.u-clrBorder--primary {
  border-color: #3D7EDB !important; }

.u-clrBorder--success {
  border-color: #76BD22 !important; }

.u-clrBorder--info {
  border-color: #644C9E !important; }

.u-clrBorder--warning {
  border-color: #FFCF59 !important; }

.u-clrBorder--danger {
  border-color: #E2231A !important; }

.u-clrBorder--themeOrange {
  border-color: #E98300 !important; }

.u-clrBorder--themeGreen {
  border-color: #14A085 !important; }

.u-clrBorder--themePurple {
  border-color: #894B9D !important; }

.u-clrBorder--themePink {
  border-color: #E44A8F !important; }

.u-clrBorder--themeDark {
  border-color: #414042 !important; }

.u-clrBorder--blue1 {
  border-color: #124F76 !important; }

.u-clrBorder--blue2 {
  border-color: #0073CF !important; }

.u-clrBorder--blue3 {
  border-color: #009FDA !important; }

.u-clrBorder--blue4 {
  border-color: #003F72 !important; }

.u-clrBorder--blue5 {
  border-color: #CCDFF0 !important; }

.u-clrBorder--blue6 {
  border-color: #eff8ff !important; }

.u-wysiwygArea {
  /**
     * Headings
     */
  /**
     * Paragraphs
     */
  /**
     * Lists
     */
  /**
     * Tables
     */ }
  .u-wysiwygArea h1 {
    color: #4F5357;
    font-size: 1.875rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1.3rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important;
    padding-bottom: 0.9375rem;
    display: block; }
    .u-wysiwygArea--clrInherit.u-wysiwygArea h1 {
      color: inherit; }
    @media only screen and (min-width: 48em) {
      .u-wysiwygArea h1 {
        font-size: 3rem;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 1rem;
        padding-bottom: 1.3rem;
        line-height: 1.13331;
        -webkit-hyphens: manual !important;
        -ms-hyphens: manual !important;
        hyphens: manual !important;
        padding-bottom: 0.9375rem;
        display: block; } }
  .u-wysiwygArea h2 .u-wysiwygArea:not(.u-wysiwygArea--serifHeaders), .u-wysiwygArea h3 .u-wysiwygArea:not(.u-wysiwygArea--serifHeaders), .u-wysiwygArea h4 .u-wysiwygArea:not(.u-wysiwygArea--serifHeaders), .u-wysiwygArea h5 .u-wysiwygArea:not(.u-wysiwygArea--serifHeaders), .u-wysiwygArea h6 .u-wysiwygArea:not(.u-wysiwygArea--serifHeaders) {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif; }
  .u-wysiwygArea h2 {
    color: #444444;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.8rem;
    padding-bottom: 1rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important;
    font-size: 1.25rem;
    padding-bottom: 0.9375rem;
    display: block; }
    .u-wysiwygArea--clrInherit.u-wysiwygArea h2 {
      color: inherit; }
    @media only screen and (min-width: 48em) {
      .u-wysiwygArea h2 {
        font-size: 1.875rem;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 1rem;
        padding-bottom: 1.3rem;
        line-height: 1.3333;
        -webkit-hyphens: manual !important;
        -ms-hyphens: manual !important;
        hyphens: manual !important;
        font-size: 1.5rem;
        padding-bottom: 0.9375rem;
        display: block; } }
  .u-wysiwygArea h3 {
    color: #444444;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important;
    font-size: 1rem;
    padding-bottom: 0.5rem; }
    .u-wysiwygArea--clrInherit.u-wysiwygArea h3 {
      color: inherit; }
    @media only screen and (min-width: 48em) {
      .u-wysiwygArea h3 {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0.8rem;
        padding-bottom: 1rem;
        line-height: 1.3333;
        -webkit-hyphens: manual !important;
        -ms-hyphens: manual !important;
        hyphens: manual !important;
        font-size: 1.25rem;
        padding-bottom: 0.3125rem; } }
  .u-wysiwygArea h4 {
    color: #000; }
    .u-wysiwygArea--clrInherit.u-wysiwygArea h4 {
      color: inherit; }
  .u-wysiwygArea h4, .u-wysiwygArea h5, .u-wysiwygArea h6 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 1.3333;
    -webkit-hyphens: manual !important;
    -ms-hyphens: manual !important;
    hyphens: manual !important;
    font-size: 0.9375rem;
    padding-bottom: 0;
    color: #4F5357; }
    @media only screen and (min-width: 48em) {
      .u-wysiwygArea h4, .u-wysiwygArea h5, .u-wysiwygArea h6 {
        font-size: 1.25rem;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.75rem;
        line-height: 1.3333;
        -webkit-hyphens: manual !important;
        -ms-hyphens: manual !important;
        hyphens: manual !important;
        font-size: 1rem;
        padding-bottom: 0; } }
    .u-wysiwygArea--clrInherit.u-wysiwygArea h4, .u-wysiwygArea h5, .u-wysiwygArea h6 {
      color: inherit; }
  .u-wysiwygArea h5 {
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    font-style: italic;
    color: #4F5357; }
  .u-wysiwygArea h6 {
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    font-style: italic;
    color: gray; }
  .u-wysiwygArea > *:first-child {
    margin-top: 0;
    padding-top: 0; }
  .u-wysiwygArea > *:last-child:not(a) {
    padding-bottom: 0; }
  .u-wysiwygArea p + h1, .u-wysiwygArea p + h2, .u-wysiwygArea p + h3,
  .u-wysiwygArea ul + h1, .u-wysiwygArea ul + h2, .u-wysiwygArea ul + h3,
  .u-wysiwygArea ol + h1, .u-wysiwygArea ol + h2, .u-wysiwygArea ol + h3,
  .u-wysiwygArea dl + h1, .u-wysiwygArea dl + h2, .u-wysiwygArea dl + h3 {
    padding-top: 1.5625rem; }
  .u-wysiwygArea p + h3,
  .u-wysiwygArea ul + h3,
  .u-wysiwygArea ol + h3,
  .u-wysiwygArea dl + h3 {
    padding-top: 1.125rem; }
  .u-wysiwygArea img {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem; }
  .u-wysiwygArea p {
    font-size: 0.9375rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0.4rem;
    line-height: 1.6;
    display: block;
    color: #444444;
    padding-top: 0.3125rem;
    padding-bottom: 0.9375rem; }
    @media only screen and (min-width: 48em) {
      .u-wysiwygArea p {
        font-size: 1.25rem;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0.3rem;
        padding-bottom: 0.75rem;
        line-height: 1.6; } }
    .u-wysiwygArea--clrInherit.u-wysiwygArea p {
      color: inherit; }
    .u-wysiwygArea p img {
      margin: 5px;
      margin-bottom: 5px;
      margin-left: 5px;
      margin-right: 8px; }
  .u-wysiwygArea--tinyPara p {
    font-size: 0.8125rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0.4rem;
    line-height: 1.6; }
    @media only screen and (min-width: 48em) {
      .u-wysiwygArea--tinyPara p {
        font-size: 0.8125rem;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
        padding-bottom: 0.4rem;
        line-height: 1.6; } }
  .u-wysiwygArea p + ul, .u-wysiwygArea p + ol, .u-wysiwygArea p + dl {
    margin-top: -4px !important; }
  .u-wysiwygArea p b, .u-wysiwygArea p strong, .u-wysiwygArea li b, .u-wysiwygArea li strong, .u-wysiwygArea a b, .u-wysiwygArea a strong {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif; }
  .u-wysiwygArea li > a {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif; }
  .u-wysiwygArea b a, .u-wysiwygArea strong a {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif; }
  .u-wysiwygArea p a:not(.wysIconBtn), .u-wysiwygArea li a:not(.wysIconBtn), .u-wysiwygArea li button:not(.wysIconBtn), .u-wysiwygArea p button:not(.wysIconBtn) {
    text-decoration: none !important;
    /*
  * Removes inner padding and border in Firefox 4+.
  */
    -webkit-appearance: none;
    overflow: visible;
    font: inherit;
    font-size: 1rem;
    text-transform: none;
    margin: 0;
    display: inline-block;
    box-sizing: border-box;
    padding: 0 12px;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 0.15s linear;
    transition: background-color 0.15s linear;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    line-height: 1.5rem;
    min-height: 1.5rem;
    text-decoration: none;
    text-align: center;
    cursor: default;
    /*
    Has transparent border because :focus adds 1px border.
    Border used, instead of outline, because it preserves border-radius.
    */
    border-radius: 0;
    border: 1px solid transparent;
    text-decoration: none;
    border-bottom: 1px solid #3D7EDB;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    background-color: transparent;
    color: inherit;
    display: inline;
    text-align: left;
    padding: 0 1px;
    font-size: inherit;
    vertical-align: baseline;
    min-height: 0;
    line-height: initial;
    color: #444444; }
    .u-wysiwygArea p a:not(.wysIconBtn)::-moz-focus-inner, .u-wysiwygArea li a:not(.wysIconBtn)::-moz-focus-inner, .u-wysiwygArea li button:not(.wysIconBtn)::-moz-focus-inner, .u-wysiwygArea p button:not(.wysIconBtn)::-moz-focus-inner {
      border: 0;
      padding: 0; }
    .ie-msie9 .u-wysiwygArea p a:not(.wysIconBtn), .ie-msie9 .u-wysiwygArea li a:not(.wysIconBtn), .ie-msie9 .u-wysiwygArea li button:not(.wysIconBtn), .ie-msie9 .u-wysiwygArea p button:not(.wysIconBtn) {
      word-break: break-all; }
    .u-wysiwygArea p a:not(.wysIconBtn):not([disabled]):not(.no-btn), .u-wysiwygArea li a:not(.wysIconBtn):not([disabled]):not(.no-btn), .u-wysiwygArea li button:not(.wysIconBtn):not([disabled]):not(.no-btn), .u-wysiwygArea p button:not(.wysIconBtn):not([disabled]):not(.no-btn) {
      cursor: pointer; }
    .u-wysiwygArea p a:not(.wysIconBtn)[disabled], .u-wysiwygArea li a:not(.wysIconBtn)[disabled], .u-wysiwygArea li button:not(.wysIconBtn)[disabled], .u-wysiwygArea p button:not(.wysIconBtn)[disabled] {
      pointer-events: none; }
    .u-wysiwygArea p a:not(.wysIconBtn).is-processing, .u-wysiwygArea li a:not(.wysIconBtn).is-processing, .u-wysiwygArea li button:not(.wysIconBtn).is-processing, .u-wysiwygArea p button:not(.wysIconBtn).is-processing {
      cursor: not-allowed !important;
      opacity: 0.6 !important; }
    .u-wysiwygArea p a:not(.wysIconBtn).no-click, .u-wysiwygArea li a:not(.wysIconBtn).no-click, .u-wysiwygArea li button:not(.wysIconBtn).no-click, .u-wysiwygArea p button:not(.wysIconBtn).no-click {
      cursor: not-allowed !important;
      pointer-events: none !important; }
    .is-mouseuser .u-wysiwygArea p a:not(.wysIconBtn):hover:not([disabled]), .is-mouseuser .u-wysiwygArea li a:not(.wysIconBtn):hover:not([disabled]), .is-mouseuser .u-wysiwygArea li button:not(.wysIconBtn):hover:not([disabled]), .is-mouseuser .u-wysiwygArea p button:not(.wysIconBtn):hover:not([disabled]) {
      border-bottom-color: transparent; }
    .is-touchuser .u-wysiwygArea p a:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea p a:not(.wysIconBtn):focus:not([disabled]), .is-touchuser .u-wysiwygArea li a:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea li a:not(.wysIconBtn):focus:not([disabled]), .is-touchuser .u-wysiwygArea li button:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea li button:not(.wysIconBtn):focus:not([disabled]), .is-touchuser .u-wysiwygArea p button:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea p button:not(.wysIconBtn):focus:not([disabled]) {
      outline: 0;
      border-bottom-color: transparent; }
    .is-touchuser .u-wysiwygArea p a:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea p a:not(.wysIconBtn):focus:not([disabled]), .is-touchuser .u-wysiwygArea li a:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea li a:not(.wysIconBtn):focus:not([disabled]), .is-touchuser .u-wysiwygArea li button:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea li button:not(.wysIconBtn):focus:not([disabled]), .is-touchuser .u-wysiwygArea p button:not(.wysIconBtn):focus:not([disabled]), .is-mouseuser .u-wysiwygArea p button:not(.wysIconBtn):focus:not([disabled]) {
      outline: 0;
      text-decoration: underline; }
    .is-touchuser .u-wysiwygArea p a:not(.wysIconBtn):active:not([disabled]), .is-touchuser .u-wysiwygArea li a:not(.wysIconBtn):active:not([disabled]), .is-touchuser .u-wysiwygArea li button:not(.wysIconBtn):active:not([disabled]), .is-touchuser .u-wysiwygArea p button:not(.wysIconBtn):active:not([disabled]) {
      border-bottom-color: transparent; }
    .u-wysiwygArea p a:not(.wysIconBtn) span, .u-wysiwygArea li a:not(.wysIconBtn) span, .u-wysiwygArea li button:not(.wysIconBtn) span, .u-wysiwygArea p button:not(.wysIconBtn) span {
      text-decoration: none !important; }
    .u-wysiwygArea--clrInherit.u-wysiwygArea p a:not(.wysIconBtn), .u-wysiwygArea li a:not(.wysIconBtn), .u-wysiwygArea li button:not(.wysIconBtn), .u-wysiwygArea p button:not(.wysIconBtn) {
      color: inherit; }
  .u-wysiwygArea blockquote {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    font-style: normal !important;
    padding: 1.8125rem 0;
    border-left: 0;
    border-right: 0;
    border-top: 2px solid #4F5357;
    border-bottom: 2px solid #4F5357;
    margin-top: 1.5625rem;
    margin-bottom: 1.75rem;
    color: #444444; }
    .u-wysiwygArea blockquote p {
      padding: 0; }
  .u-wysiwygArea hr {
    border-color: #DFDFDF;
    margin: 40px 0; }
  .u-wysiwygArea p + hr, .u-wysiwygArea ul + hr, .u-wysiwygArea ol + hr, .u-wysiwygArea dl + hr, .u-wysiwygArea h3 + hr {
    margin-top: 30px; }
  .u-wysiwygArea h2 + hr {
    margin-top: 10px; }
  .u-wysiwygArea ul, .u-wysiwygArea ol, .u-wysiwygArea dl, .u-wysiwygArea li {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    color: #444444 !important; }
    .u-wysiwygArea--clrInherit.u-wysiwygArea ul, .u-wysiwygArea ol, .u-wysiwygArea dl, .u-wysiwygArea li {
      color: inherit !important; }
  .u-wysiwygArea ul {
    padding-left: 1.6875rem;
    list-style-type: none;
    width: 100%;
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    color: inherit; }
    .u-wysiwygArea ul > li {
      padding-left: 0;
      line-height: 1.6;
      text-align: left;
      margin-top: 0;
      margin-bottom: 0;
      padding-bottom: 10px;
      position: relative;
      font-size: 0.9375rem; }
      .u-wysiwygArea ul > li:before {
        content: '• ';
        font-size: 19px;
        position: absolute;
        margin-left: -20px; }
      .u-wysiwygArea ul > li > ul, .u-wysiwygArea ul > li > ol, .u-wysiwygArea ul > li > dl {
        margin-left: -0.1875rem; }
      @media only screen and (max-width: 47.9375em) {
        .u-wysiwygArea ul > li:before {
          margin-top: -4px; } }
      @media only screen and (min-width: 48em) {
        .u-wysiwygArea ul > li {
          font-size: 1.25rem; } }
  .u-wysiwygArea ol {
    padding-left: 1.6875rem;
    width: 100%;
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    color: inherit; }
    .u-wysiwygArea ol > li {
      padding-left: 0.1875rem;
      line-height: 1.6;
      text-align: left;
      margin-top: 0;
      margin-bottom: 0;
      padding-bottom: 10px;
      position: relative;
      font-size: 0.9375rem; }
      .u-wysiwygArea ol > li > ul, .u-wysiwygArea ol > li > ol, .u-wysiwygArea ol > li > dl {
        margin-left: -0.1875rem; }
      @media only screen and (min-width: 48em) {
        .u-wysiwygArea ol > li {
          font-size: 1.25rem; } }
  .u-wysiwygArea > ul {
    padding-left: 1.875rem; }
    @media only screen and (min-width: 48em) {
      .u-wysiwygArea > ul {
        padding-left: 2.3125rem; } }
  .u-wysiwygArea > ol {
    padding-left: 2.3125rem; }
  .u-wysiwygArea ol[type="i"] {
    padding-left: 3rem;
    width: 100%;
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    color: inherit; }
    .u-wysiwygArea ol[type="i"] > li {
      padding-left: 0.1875rem;
      line-height: 1.6;
      text-align: left;
      margin-top: 0;
      margin-bottom: 0;
      padding-bottom: 10px;
      position: relative;
      font-size: 0.9375rem; }
      .u-wysiwygArea ol[type="i"] > li > ul, .u-wysiwygArea ol[type="i"] > li > ol, .u-wysiwygArea ol[type="i"] > li > dl {
        margin-left: -0.1875rem; }
      @media only screen and (min-width: 48em) {
        .u-wysiwygArea ol[type="i"] > li {
          font-size: 1.25rem; } }
  .u-wysiwygArea ol[type="a"] {
    padding-left: 1.4375rem;
    width: 100%;
    color: #000;
    font-size: 1.25rem;
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    color: inherit; }
    .u-wysiwygArea ol[type="a"] > li {
      padding-left: 0.1875rem;
      line-height: 1.6;
      text-align: left;
      margin-top: 0;
      margin-bottom: 0;
      padding-bottom: 10px;
      position: relative;
      font-size: 0.9375rem; }
      .u-wysiwygArea ol[type="a"] > li > ul, .u-wysiwygArea ol[type="a"] > li > ol, .u-wysiwygArea ol[type="a"] > li > dl {
        margin-left: -0.1875rem; }
      .u-wysiwygArea ol[type="a"] > li:before {
        margin-top: -3px; }
      @media only screen and (min-width: 48em) {
        .u-wysiwygArea ol[type="a"] > li {
          font-size: 1.25rem; } }
  .u-wysiwygArea table {
    border: 1px solid #DFDFDF;
    background-color: #FFF;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 15px; }
    .u-wysiwygArea table * + .u-wysiwygArea table {
      margin-top: 15px; }
    .u-wysiwygArea table th, .u-wysiwygArea table td {
      padding: 20px 8px; }
    .u-wysiwygArea table th {
      font-style: normal;
      font-family: "ProximaNova-Regular", sans-serif;
      font-weight: normal; }
    .u-wysiwygArea table th {
      text-align: left; }
    .u-wysiwygArea table td {
      vertical-align: top; }
    .u-wysiwygArea table th {
      vertical-align: bottom; }
    .u-wysiwygArea table caption, .u-wysiwygArea table tfoot {
      font-style: normal; }
    .u-wysiwygArea table caption {
      text-align: left;
      background-color: #DFDFDF;
      font-size: 0.8125rem;
      padding: 0.625rem 0.75rem;
      text-align: left;
      color: #4F5357;
      margin-bottom: 0;
      font-style: normal;
      font-family: "ProximaNova-Regular", sans-serif;
      font-weight: normal;
      font-family: "ProximaNova-Bold", sans-serif; }
    .u-wysiwygArea table thead tr,
    .u-wysiwygArea table tbody tr {
      background-color: white; }
    .u-wysiwygArea table th,
    .u-wysiwygArea table tbody td {
      border-bottom: 1px solid #e3e3e3;
      padding: 1.25rem 0.75rem;
      text-align: center; }
      .u-wysiwygArea table th:first-child, .u-wysiwygArea table th:last-child,
      .u-wysiwygArea table tbody td:first-child,
      .u-wysiwygArea table tbody td:last-child {
        position: relative; }
        .u-wysiwygArea table th:first-child:before, .u-wysiwygArea table th:last-child:before,
        .u-wysiwygArea table tbody td:first-child:before,
        .u-wysiwygArea table tbody td:last-child:before {
          content: "";
          position: absolute;
          top: 1px;
          width: 0.75rem;
          height: 100%;
          background-color: white; }
      .u-wysiwygArea table th:last-child,
      .u-wysiwygArea table tbody td:last-child {
        text-align: right; }
        .u-wysiwygArea table th:last-child:before,
        .u-wysiwygArea table tbody td:last-child:before {
          right: 0; }
      .u-wysiwygArea table th:first-child,
      .u-wysiwygArea table tbody td:first-child {
        text-align: left; }
        .u-wysiwygArea table th:first-child:before,
        .u-wysiwygArea table tbody td:first-child:before {
          left: 0; }
    .u-wysiwygArea table tr:last-child td:before {
      display: none; }

/*######################################################
  banner
#######################################################*/
.banner-inner {
  color: #fff;
  padding: 100px 20px; }
  .banner-inner.is-has-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative; }
    .banner-inner.is-has-image:before {
      background-color: rgba(0, 0, 0, 0.5);
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      z-index: 0; }

.banner-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 5; }

.banner-btn {
  position: relative;
  z-index: 5; }

.cardswrap {
  overflow: hidden; }
  .cardswrap.sg-card-services {
    overflow: visible; }

@media only screen and (min-width: 768px) {
  .crdwrp-row {
    border-collapse: separate;
    border-spacing: 32px;
    display: table;
    margin: -32px -32px;
    table-layout: fixed;
    min-width: 100%; } }
  @media only screen and (min-width: 768px) and (min-width: 768px) {
    .crdwrp-row > .card {
      display: table-cell;
      vertical-align: top; } }
  @media only screen and (min-width: 768px) and (max-width: 767px) {
    .crdwrp-row > .card {
      margin-top: 20px; } }

@media only screen and (max-width: 767px) {
  .crdwrp-row ~ .crdwrp-row {
    padding-top: 20px; } }

@media only screen and (min-width: 768px) {
  .crdwrp-col-2 {
    width: 49%; } }

@media only screen and (max-width: 767px) {
  .crdwrp-col-2:not(:last-child) {
    margin-bottom: 20px; } }

@media only screen and (min-width: 768px) {
  .crdwrp-col-3 {
    width: 32%; } }

@media only screen and (max-width: 767px) {
  .crdwrp-col-3:not(:last-child) {
    margin-bottom: 20px; } }

.card {
  -webkit-transition: all linear .2s;
  transition: all linear .2s;
  background-color: #fff;
  position: relative; }
  .card.is-color-gray {
    background-color: #f9f9f9; }
  .card--fixedH {
    height: 30rem; }
  .card a:not(.btn):not(.FormSubmitButton):not(.xform input[type="submit"]):not(.EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action):not(.u-wysiwygArea > a:not(.wysIconBtn)):not(.u-wysiwygArea > button:not(.wysIconBtn)):not(.u-wysiwygArea .wysIconBtn) {
    color: #000;
    text-decoration: none; }
  .card.is-bgcolor-blue a:not(.btn):not(.FormSubmitButton):not(.xform input[type="submit"]):not(.EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action):not(.u-wysiwygArea > a:not(.wysIconBtn)):not(.u-wysiwygArea > button:not(.wysIconBtn)):not(.u-wysiwygArea .wysIconBtn), .card.is-bgcolor-green a:not(.btn):not(.FormSubmitButton):not(.xform input[type="submit"]):not(.EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action):not(.u-wysiwygArea > a:not(.wysIconBtn)):not(.u-wysiwygArea > button:not(.wysIconBtn)):not(.u-wysiwygArea .wysIconBtn), .card.is-bgcolor-orange a:not(.btn):not(.FormSubmitButton):not(.xform input[type="submit"]):not(.EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action):not(.u-wysiwygArea > a:not(.wysIconBtn)):not(.u-wysiwygArea > button:not(.wysIconBtn)):not(.u-wysiwygArea .wysIconBtn), .card.is-bgcolor-gray a:not(.btn):not(.FormSubmitButton):not(.xform input[type="submit"]):not(.EPiServerForms .Form__NavigationBar .Form__NavigationBar__Action):not(.u-wysiwygArea > a:not(.wysIconBtn)):not(.u-wysiwygArea > button:not(.wysIconBtn)):not(.u-wysiwygArea .wysIconBtn) {
    color: #fff; }
  .card.is-card-hstate a {
    -webkit-transition: all linear .2s;
    transition: all linear .2s; }
  .card.is-card-hstate .crd-content {
    position: relative; }
    .card.is-card-hstate .crd-content:before {
      -webkit-transition: all linear .2s;
      transition: all linear .2s;
      background-color: #fff;
      display: block;
      content: "";
      height: 0;
      position: absolute;
      left: 0;
      bottom: 100%;
      width: 100%; }
  .card.is-card-hstate:hover {
    background-color: #3D7EDB;
    color: #fff; }
    .card.is-card-hstate:hover a {
      color: #fff; }
    .card.is-card-hstate:hover .crd-content:before {
      background-color: #3D7EDB;
      height: 24px; }
  .card.is-card-service {
    box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.1); }
  .card.is-card-checked.is-color-1 {
    box-shadow: 0px 0px 0px 3px #E98300; }
  .card.is-card-checked.is-color-2 {
    box-shadow: 0px 0px 0px 3px #124F76; }
  .card.is-card-checked.is-color-3 {
    box-shadow: 0px 0px 0px 3px #14A085; }
  .card.is-card-checked.is-color-4 {
    box-shadow: 0px 0px 0px 3px #894B9D; }
  .card.is-card-checked.is-color-5 {
    box-shadow: 0px 0px 0px 3px #E44A8F; }
  .card.is-card-checked.is-color-6 {
    box-shadow: 0px 0px 0px 3px #414042; }
  .card.is-card-color.is-bgcolor-blue {
    background-color: #3D7EDB;
    color: #fff; }
  .card.is-card-color.is-bgcolor-yellow {
    background-color: #FFCF59; }
  .card.is-card-color.is-bgcolor-gray {
    background-color: #616365;
    color: #fff; }
  .card.is-card-color.is-bgcolor-orange {
    background-color: #E98300;
    color: #fff; }
  .card.is-card-color.is-bgcolor-green {
    background-color: #76BD22;
    color: #fff; }
  .is-fakeHeightSet .card {
    height: 100%; }

.crd-linkHit {
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  border: none;
  cursor: pointer;
  background-color: rgba(255, 0, 0, 0.3);
  opacity: 0; }

.crd-inner {
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear; }
  .is-card-service .crd-inner {
    border-collapse: collapse;
    display: table;
    padding: 0;
    min-height: inherit;
    table-layout: fixed;
    width: 100%; }
    .is-card-service .crd-inner > [class*="crd-"] {
      display: table-cell; }
  @media only screen and (min-width: 600px) {
    .is-hasimageside .crd-inner {
      border-collapse: collapse;
      display: table;
      padding: 0;
      min-height: inherit;
      table-layout: fixed;
      width: 100%; } }
  .is-fakeHeightSet .crd-inner {
    height: 100%; }
  .is-mouseuser .crd-linkHit:hover + .crd-inner {
    background-color: #3D7EDB;
    color: #FFF; }
    .is-mouseuser .crd-linkHit:hover + .crd-inner .crd-headinfo {
      color: #FFF; }

.crd-image {
  min-height: 100px; }
  .crd-image img {
    width: 100%; }
  .is-card-video .crd-image {
    position: relative;
    height: 100%;
    width: 100%; }
    .is-card-video .crd-image:before {
      -webkit-transition: background-color linear 0.2s;
      transition: background-color linear 0.2s;
      font-family: 'icomoon';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      border-radius: 50%;
      overflow: hidden;
      background-color: #3D7EDB;
      color: #fff;
      display: block;
      font-size: 30px;
      height: 84px;
      left: 50%;
      line-height: 84px;
      margin-left: -42px;
      margin-top: -42px;
      position: absolute;
      text-align: center;
      top: 50%;
      width: 84px; }
    .is-card-video .crd-image:hover:before {
      background-color: #1c4e96; }
  .is-hasimageside .crd-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 200px; }
    .is-fakeHeightSet .is-hasimageside .crd-image,
    .is-fakeHeightSet .is-hasimageside .crd-image img {
      height: 100%; }
    @media only screen and (min-width: 600px) {
      .is-hasimageside .crd-image {
        display: table-cell;
        vertical-align: top;
        width: 52%; } }
    @media only screen and (max-width: 599px) {
      .is-hasimageside .crd-image {
        display: block;
        width: 100%; } }
    @media only screen and (min-width: 48em) {
      .is-hasimageside .crd-image {
        height: 264px; } }

.crd-content {
  padding: 1.25rem 1.5rem 2.5rem 1.5rem; }
  .is-card-v2 .crd-content {
    position: relative;
    min-height: 204px; }
  .is-card-service .crd-content {
    padding: 1.875rem 2.875rem 1.875rem 0.9375rem;
    min-height: 204px; }
  .is-hasimageside .crd-content {
    padding-left: 2.0625rem;
    padding-right: 2.0625rem; }
    @media only screen and (min-width: 600px) {
      .is-hasimageside .crd-content {
        display: table-cell;
        vertical-align: middle; } }
  .has-footInfo .crd-content {
    padding-bottom: 3.375rem; }

.is-card-service .crd-action {
  padding: 20px 0 30px 15px;
  position: relative;
  vertical-align: middle;
  width: 60px; }

.crd-checkbox label {
  display: block;
  position: relative;
  overflow: hidden;
  height: 36px;
  width: 36px; }

.crd-checkbox input[type="checkbox"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: pointer;
  left: inherit;
  right: 100%; }
  .crd-checkbox input[type="checkbox"]:checked::before {
    color: #fff;
    display: block;
    font-size: 25px;
    height: 36px;
    position: absolute;
    right: -40px;
    top: 2px;
    width: 36px;
    z-index: 4; }
  .crd-checkbox input[type="checkbox"]::after {
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    border: 3px solid #C6C6C6;
    content: "";
    display: block;
    height: 36px;
    width: 36px;
    position: absolute;
    top: -4px;
    right: -36px;
    z-index: 0; }
  .is-color-1 .crd-checkbox input[type="checkbox"]:checked::after {
    border-color: #E98300;
    background-color: #E98300; }
  .is-color-2 .crd-checkbox input[type="checkbox"]:checked::after {
    border-color: #124F76;
    background-color: #124F76; }
  .is-color-3 .crd-checkbox input[type="checkbox"]:checked::after {
    border-color: #14A085;
    background-color: #14A085; }
  .is-color-4 .crd-checkbox input[type="checkbox"]:checked::after {
    border-color: #894B9D;
    background-color: #894B9D; }
  .is-color-5 .crd-checkbox input[type="checkbox"]:checked::after {
    border-color: #E44A8F;
    background-color: #E44A8F; }
  .is-color-6 .crd-checkbox input[type="checkbox"]:checked::after {
    border-color: #414042;
    background-color: #414042; }

.crd-icon {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50%;
  overflow: hidden;
  background-color: #3D7EDB;
  bottom: 56px;
  color: #fff;
  display: block;
  font-size: 22px;
  height: 36px;
  line-height: 36px;
  position: absolute;
  margin-left: 10px;
  margin-top: 20px;
  right: 35px;
  text-align: center;
  width: 36px; }
  .is-color-1 .crd-icon {
    background-color: #E98300; }
  .is-color-2 .crd-icon {
    background-color: #124F76; }
  .is-color-3 .crd-icon {
    background-color: #14A085; }
  .is-color-4 .crd-icon {
    background-color: #894B9D; }
  .is-color-5 .crd-icon {
    background-color: #E44A8F; }
  .is-color-6 .crd-icon {
    background-color: #414042; }
  @media only screen and (max-width: 767px) {
    .crd-icon {
      bottom: 22px; } }

.crd-headinfo {
  display: block;
  font-size: 0.75rem;
  color: #444444;
  margin-bottom: 0.3125rem;
  margin-top: 1.0625rem; }

.crd-footinfo {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  display: block;
  font-size: 0.75rem;
  line-height: normal;
  /*.is-card-v2 & {
      position: relative;
      bottom: 0;
    }*/ }
  .is-card-hstate .crd-footinfo {
    position: static;
    margin-top: 15px; }
  .is-mouseuser .crd-linkHit:hover + .crd-inner .crd-footinfo {
    color: white; }

.crd-title {
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal;
  line-height: 2.25rem;
  margin: 0; }
  .crd-title ~ .crd-caption {
    padding-top: 10px; }
  .is-card-service .crd-title {
    font-weight: normal;
    line-height: normal; }
  .is-card-color .crd-title {
    font-weight: normal;
    line-height: normal;
    padding-bottom: 18px; }

.crd-innercontent {
  font-size: 0.9375rem; }

.is-card-hstate .crd-textWrap {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0); }

.is-mouseuser .is-card-hstate .crd-linkHit:hover + .crd-inner .crd-textWrap {
  -webkit-transform: translateY(-24px);
  transform: translateY(-24px); }

.crd-caption {
  font-size: 0.9375rem;
  line-height: 1.5rem;
  color: #444444; }
  .is-mouseuser .crd-linkHit:hover + .crd-inner .crd-caption {
    color: white; }
  .crd-caption p {
    font-size: 1.5rem;
    line-height: 1.6em; }
  .crd-caption ~ .crd-innercontent {
    padding-top: 15px; }

.crd-button {
  margin-top: 20px; }

.crd-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .crd-list > li > a {
    display: inline-block;
    padding: 5px 0;
    line-height: normal; }
    @media only screen and (max-width: 767px) {
      .crd-list > li > a {
        display: block; } }
    .crd-list > li > a:hover {
      text-decoration: underline; }

.crd-testy > .l-tablecell {
  padding-top: 10px;
  padding-bottom: 10px; }

.crd-testy-avatar {
  width: 60px; }

.crd-img-avatar img {
  border: 1px solid #fff;
  max-width: 50px; }

.crsl {
  margin: auto;
  max-width: 800px; }
  .crsl-inner {
    color: #fff;
    position: relative; }
    .crsl-inner p {
      margin: 0; }
  .crsl-nav {
    -webkit-transition: background-color linear .2s;
    transition: background-color linear .2s;
    background-color: rgba(255, 255, 255, 0.5);
    color: #3D7EDB;
    cursor: pointer;
    display: block;
    font-size: 1.25rem;
    text-align: center;
    padding-top: 0.625rem;
    height: 3rem;
    width: 3rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
    margin-top: -1.125rem; }

.crsl-nav:hover {
  background-color: #fff; }

.crsl-nav-right {
  right: 0; }
  @media only screen and (min-width: 48em) {
    .crsl-nav-right {
      right: 1.5rem; } }

.crsl-nav-left {
  left: 0; }
  @media only screen and (min-width: 48em) {
    .crsl-nav-left {
      left: 1.5rem; } }

.brcr {
  border-top: 1px solid #DFDFDF;
  background-color: #FFF; }
  .brcr-list {
    list-style-type: none;
    background: transparent;
    margin: auto;
    padding-bottom: 0.375rem;
    padding-left: 0;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap; }
    .brcr-list > li + li:before {
      content: ""; }
  .brcr-item {
    display: inline-block; }
  .brcr-link {
    font-size: 0.75rem; }

.brcr {
  border-bottom: 1px solid #DFDFDF; }
  .brcr--noBorderBot {
    border-bottom: 0; }
  .brcr-list > li + li:before {
    display: inline-block;
    color: #000;
    font-size: 0.3125rem;
    font-weight: bold;
    padding: 0 2px; }
  .brcr-item:last-child .brcr-link {
    color: black; }

/**
UTILITY FUNCTIONS
**/
/*
Useful mixin for controlling nested selectors, when using trailing "&", like ".mysel &".
If just passing $sel, will append this to the existing selector, regardless of whether you are nested inside a trailing "&".
If passing $outer-sel as well, this will append to the specified $outer-sel with a space and then the specified $sel, followed by the rest of the existing selector.

Example 1:
.mywg {
  &-cont {
    .is-wide & {

      a:hover {
        background-color: black;
        
        @include selWrap(".is-bright") {
            background-color: yellow;
        }
      }
    }
  }
}

outputs:
.is-wide .skatebtn-cont a:hover { background-color: black; }
.is-wide.is-bright .skatebtn-cont a:hover { background-color: yellow; }
(note there is no space between ".is-wide" and ".is-bright")


Example 2:
.mywg {
  &-cont {
    .is-wide & {

      a:hover {
        background-color: black;
        
        @include selWrap(".is-bright", ".is-wide") {
            background-color: yellow;
        }
      }
    }
  }
}

outputs:
.is-wide .skatebtn-cont a:hover { background-color: black; }
.is-wide .is-bright .skatebtn-cont a:hover { background-color: yellow; }
(note the space between ".is-wide" and ".is-bright")
*/
/*
Useful for adding 'modifier' selecters (based on SUIT-CSS syntax)

Example 1:
.myWg {
  &-childSel {
    @include mod("--wide") {
        background-color: yellow;
    }
  }
}

outputs:
.myWg--wide .myWg-childSel { background-color: yellow; }
*/
.hro-title, .hro-desc {
  margin-bottom: 0; }

.hro-image {
  background-image: url("../img/placeholders/broken-image.png");
  background-color: #f3f2f1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .hro-image img {
    width: 100%; }

.hro-caption {
  padding: 32px 48px 32px 24px; }

.hro-action {
  padding-top: 20px; }

.hro-nav {
  -webkit-transition: background-color linear .2s;
  transition: background-color linear .2s;
  background-color: rgba(255, 255, 255, 0.5);
  color: #3D7EDB;
  cursor: pointer;
  display: block;
  font-size: 1.25rem;
  text-align: center;
  padding-top: 0.625rem;
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  margin-top: -1.125rem; }
  .hro-nav-right {
    right: 0; }
  .hro-nav-left {
    left: 0; }

.hro-list .slick-dots > li > button {
  width: 100px;
  height: 6px;
  background-color: #DFDFDF;
  border-radius: 0;
  border: 0; }

.hro-list .slick-dots > li.slick-active > button {
  background-color: #0073CF; }

.hro-caption {
  background-color: #0073CF;
  color: white; }
  @media only screen and (min-width: 62em) {
    .hro-caption {
      vertical-align: middle;
      width: 368px; } }

@media only screen and (min-width: 62em) {
  .hro-image img {
    min-height: 400px; } }

.hro-nav:hover {
  background-color: #fff; }

@media only screen and (max-width: 29.9375em) {
  .hro-list .slick-dots {
    padding: 0; }
    .hro-list .slick-dots > li {
      width: 33.33333%;
      padding: 12px 10px; }
      .hro-list .slick-dots > li:first-child {
        padding-left: 0; }
      .hro-list .slick-dots > li:last-child {
        padding-right: 0; }
    .hro-list .slick-dots > li > button {
      width: 100%; } }

.srch {
  background-color: #003F72;
  padding: 20px 15px; }
  .srch-content {
    margin: auto; }
    @media only screen and (max-width: 991px) {
      .srch-content {
        text-align: center; } }
  .srch-grid {
    padding: 10px;
    vertical-align: middle; }
  .srch-label {
    color: #fff;
    font-size: 1.875rem;
    margin-bottom: 0;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal; }
  .srch-inputWrap {
    position: relative; }
  .srch-input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: 1.25rem;
    padding-bottom: 4px;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif; }
    .srch-input:focus {
      border-color: #fff !important; }
  .srch-select {
    min-width: 230px;
    text-align: left; }
  .srch-suggestions {
    background-color: white;
    max-height: none;
    overflow: visible;
    margin-top: 0.75rem;
    padding-top: 0.625rem; }
  .srch-suggestion {
    padding: 1.125rem 1.5rem;
    font-size: 0.875rem;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif; }
    .srch-suggestion b {
      color: black; }

@media only screen and (min-width: 62em) {
  .srch-label2 {
    max-width: 20%; } }

@media only screen and (min-width: 62em) {
  .srch-input2 {
    max-width: 80%; } }

@media only screen and (max-width: 61.9375em) {
  .srch-grid {
    max-width: 400px;
    margin: 0 auto; } }

.srch-grid1 {
  min-width: 175px; }

.srch-inputWrap {
  display: inline-block; }
  @media only screen and (max-width: 61.9375em) {
    .srch-inputWrap {
      display: block;
      padding-left: 2.5rem; }
      .srch-inputWrap .srch-label {
        position: absolute;
        left: 0;
        top: -0.375rem; } }

.srch-input {
  margin-left: 0.625rem; }
  @media only screen and (max-width: 61.9375em) {
    .srch-input {
      width: 100%;
      margin-left: 0; } }

.srch-suggestions:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid rgba(0, 0, 0, 0.1);
  left: 1.5rem;
  top: -0.75rem; }

.srch-suggestions:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid white;
  left: 1.5625rem;
  top: -0.625rem; }

.srch-suggestion.selected {
  background-color: #E2EFFA; }

.ctBx {
  background-color: #0073CF; }
  .ctBx-content {
    padding: 25px 20px 10px; }
  .ctBx-title {
    color: white;
    margin-bottom: 27px;
    font-size: 1.25rem; }
  .ctBx-btn {
    margin-bottom: 24px; }

.artBx {
  background-color: white; }
  .artBx-content {
    padding: 25px 35px 10px; }
  .artBx-desc {
    padding-top: 10px; }
  .artBx-para {
    line-height: 24px;
    margin-bottom: 11px; }

.lnPn {
  background-color: #E0DED8; }
  .lnPn-content {
    padding: 25px; }
  .lnPn-linkList {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    padding-top: 8px; }
  .lnPn-item {
    padding: 7px 0; }
  .lnPn-link {
    font-weight: bold;
    font-size: 16px; }

body.is-mbMenuOpen {
  overflow-y: hidden; }

.gTrans.goog-te-menu-frame {
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: 0.875rem; }

.appWrap > .main-content {
  padding-top: 0 !important; }

.apHd {
  background-color: white;
  -webkit-transition: -webkit-transform .3s ease-in-out;
  transition: -webkit-transform .3s ease-in-out;
  transition: transform .3s ease-in-out;
  transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
  .apHd-row1, .apHd-row2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .apHd-row1 {
    padding-top: 10px;
    padding-bottom: 0; }
  .apHd-row2 {
    background-color: white;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .apHd-searchWrap {
    position: relative; }
  .apHd-mbVersion {
    background-color: white;
    height: 78px;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .apHd-hr {
    max-width: 1198px;
    border-color: #DFDFDF; }
  .apHd-mbSearch {
    float: left;
    margin-top: 10px;
    margin-bottom: 20px; }
  .apHd-smallNavItem {
    font-size: 0.75rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #003F72; }
  .apHd-controlsCol {
    padding-left: 0.5625rem;
    padding-right: 0.5625rem;
    border-left: 1px solid #DFDFDF; }
    .apHd-controlsCol:first-child {
      border-left: none; }
  .apHd-fontWrap {
    min-width: 5.625rem;
    text-align: center;
    background-color: red; }
  .apHd-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .apHd-logoCol {
    width: 299px;
    min-width: 299px; }
  .apHd-logoColMb {
    padding-left: 15px;
    width: 250px; }
  .apHd-bigNavCol {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 20px; }
  .apHd-bigNavItem {
    -webkit-transform: none !important;
    transform: none !important;
    display: block;
    color: #3D7EDB;
    font-weight: bold;
    font-size: 1.125rem; }
  .apHd-logoBtn, .apHd-logoImage {
    display: block;
    width: 100%; }
  .apHd-top {
    position: relative; }
  .apHd-btnPrint {
    font-size: 0.875rem;
    display: block;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    padding-right: 0; }
  .apHd-btnTour {
    font-size: 0.75rem;
    display: block;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    float: left; }
  .apHd-iconPrint {
    font-size: 0.8125rem; }
  .apHd-btnSearch {
    color: #3D7EDB;
    padding: 0;
    font-size: 1.25rem;
    display: block;
    width: 2.1875rem;
    height: 1.5625rem;
    text-decoration: none !important; }
    .apHd-btnSearch:after {
      content: "";
      position: absolute;
      top: -10px;
      right: -9px;
      width: 55px;
      height: 46px;
      background-color: #51626F; }
  .apHd-btnSearchIcon1, .apHd-btnSearchIcon2 {
    position: relative !important;
    z-index: 10; }
  .apHd-btnSearchIcon2 {
    font-size: 0.8125rem;
    color: white !important;
    padding-top: 2px; }
  .apHd-btnTel {
    font-size: 1.125rem;
    float: left;
    display: block;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif; }
  .apHd-btnPhone {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #003F72;
    position: relative; }
    .apHd-btnPhone .ulOffset {
      border-color: #003F72; }
  .apHd-iconFontDown, .apHd-iconFontUp {
    font-size: 0.75rem; }
  .apHd-iconFontUp {
    padding-left: 1px; }
  .apHd-btnFontDown, .apHd-btnFontUp {
    display: block;
    float: left; }
  .apHd-font {
    font-size: 0.75rem;
    display: block;
    float: left;
    margin: 0 6px;
    -webkit-transform: translateY(3px);
    transform: translateY(3px); }
  .apHd-lang {
    position: relative; }
  .apHd-gTrans {
    background-color: aliceblue;
    position: relative; }
    .apHd-gTrans .goog-te-gadget img {
      display: none; }
    .apHd-gTrans .goog-te-gadget-simple {
      width: 100%;
      border: 0;
      padding: 0;
      display: block; }
      .apHd-gTrans .goog-te-gadget-simple:before {
        content: ""; }
    .apHd-gTrans .goog-te-gadget-simple .goog-te-menu-value {
      margin: 0;
      line-height: 1.25rem; }
    .apHd-gTrans .goog-te-gadget-simple .goog-te-menu-value span {
      font-size: 0.875rem;
      overflow-x: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      display: block;
      padding-right: 1rem;
      font-style: normal;
      font-family: "ProximaNova-Regular", sans-serif;
      font-weight: normal;
      font-family: "ProximaNova-Bold", sans-serif; }
  .apHd-menu {
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out; }
  .apHd-menuBtn {
    font-size: 1.75rem;
    color: #3D7EDB;
    border-radius: 0;
    -webkit-transform: none !important;
    transform: none !important;
    box-shadow: none !important; }
  .apHd-menuBtnWrap {
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 60;
    -webkit-transition: -webkit-transform .3s ease-in;
    transition: -webkit-transform .3s ease-in;
    transition: transform .3s ease-in;
    transition: transform .3s ease-in, -webkit-transform .3s ease-in;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  .apHd-searchBar {
    position: absolute;
    left: 15px;
    right: 15px;
    z-index: 1;
    top: 10px;
    margin-left: -1px; }
  .apHd-mbMenuOverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    border: none;
    cursor: pointer;
    background-color: rgba(255, 0, 0, 0.3);
    opacity: 0;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 50; }
  .apHd-searchForm {
    -webkit-transition: width .3s;
    transition: width .3s; }
  .apHd-searchFormWrap {
    position: relative;
    border: 1px solid #009FDA;
    border-radius: 4px;
    font-size: 14px;
    background-color: #eff8ff; }
  .apHd-searchFormInput {
    width: 100%;
    background: none;
    border: 0; }
  .apHd-searchFormBtn {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #009FDA;
    font-size: 1rem; }
    .apHd-searchFormBtn:hover {
      color: #009FDA; }
  .apHd-row3 {
    background-color: #003F72;
    margin-top: 10px; }
  .apHd-mainLinkList {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0; }
  .apHd-mainLinkItem {
    position: relative; }
  .apHd-mainLink {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: block;
    -webkit-transition: background-color .4s;
    transition: background-color .4s; }
  .apHd-mainLinkIcon {
    font-size: 11px; }
  .apHd-ddMenu {
    margin-top: 0;
    border-radius: 0;
    border: 0; }
  ul.apHd-ddMenu > li .apHd-ddLink {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: block;
    -webkit-transition: background-color .3s;
    transition: background-color .3s; }

@media only screen and (min-width: 62em) {
  .is-sticky .apHd {
    position: fixed;
    width: 100%;
    z-index: 70;
    top: 0;
    left: 0;
    padding: 0.625rem 0 0;
    box-shadow: -5px 3px 8px 0 rgba(0, 0, 0, 0.2); } }

.is-sticky .apHd {
  box-shadow: -5px 3px 8px 0 rgba(0, 0, 0, 0.2); }

.is-mbMenuOpen .apHd {
  -webkit-transform: translateX(-270px);
  transform: translateX(-270px); }

@media only screen and (max-width: 61.9375em) {
  .apHd {
    position: fixed;
    width: 100%;
    z-index: 70;
    top: 0; } }

.apHd-dtVersion {
  display: none; }
  @media only screen and (min-width: 62em) {
    .apHd-dtVersion {
      display: block; } }
  .apHd-dtVersion .apHd-mbSearch {
    display: none; }

.apHd-mbVersion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (min-width: 62em) {
    .apHd-mbVersion {
      display: none; } }

.apHd-row2 {
  padding-top: 15px;
  padding-bottom: 20px; }
  @media only screen and (min-width: 62em) {
    .apHd-row2 {
      -webkit-transition: 0.3s ease-out;
      transition: 0.3s ease-out;
      -webkit-transition-property: padding-top padding-bottom;
      transition-property: padding-top padding-bottom; } }
  @media only screen and (min-width: 62em) {
    .is-sticky .apHd-row2 {
      padding-top: 0;
      padding-bottom: 0; } }

@media only screen and (max-width: 61.9375em) {
  .apHd-smallNav {
    margin-top: 20px;
    margin-bottom: 20px; } }

@media only screen and (min-width: 62em) {
  .apHd-smallNavCol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; } }

.apHd-smallNavItem {
  padding-right: 1rem; }
  @media only screen and (max-width: 61.9375em) {
    .apHd-smallNavItem {
      display: block;
      padding-top: 0.625rem; } }
  @media only screen and (min-width: 62em) {
    .apHd-smallNavItem {
      padding-right: 0;
      padding-left: 1.875rem; } }

@media only screen and (min-width: 62em) {
  .apHd-bigNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; } }

@media only screen and (min-width: 62em) {
  .apHd-bigNavCol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; } }

.apHd-bigNavItem {
  padding: 0.625rem 0; }
  @media only screen and (min-width: 62em) {
    .apHd-bigNavItem {
      padding: 1.125rem;
      padding-bottom: 0.6875rem;
      text-align: center; } }
  @media only screen and (max-width: 81.1875em) {
    .ie-msie11 .apHd-bigNavItem,
    .ie-msie10 .apHd-bigNavItem {
      -ms-flex-negative: 1;
      flex-shrink: 1;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%; } }

.apHd-content {
  padding: 10px 0 20px; }
  .is-sticky .apHd-content {
    padding: 10px 0; }
    @media only screen and (min-width: 62em) {
      .is-sticky .apHd-content {
        padding: 0; } }

.apHd-mbMenuOverlay {
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear; }
  body:not(.is-mbMenuOpen) .apHd-mbMenuOverlay {
    opacity: 0;
    display: none; }
  .is-mbMenuOpen .apHd-mbMenuOverlay {
    opacity: 1;
    display: block; }
  body.adrift .apHd-mbMenuOverlay {
    display: block !important; }

@media only screen and (max-width: 61.9375em) {
  .apHd-row1 {
    display: none; } }

@media only screen and (min-width: 62em) {
  .is-sticky .apHd-row1 {
    display: none; } }

@media only screen and (min-width: 62em) {
  .is-sticky .apHd-hr {
    display: none; } }

.apHd-btnSearch {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none !important;
  transform: none !important; }
  .is-mouseuser .apHd-btnSearch:hover:not([disabled]) {
    color: black; }
  .is-touchuser .apHd-btnSearch:focus:not([disabled]), .is-mouseuser .apHd-btnSearch:focus:not([disabled]) {
    outline: 0;
    color: black; }
  .is-touchuser .apHd-btnSearch:active:not([disabled]) {
    color: black; }
  .apHd-btnSearch:after {
    display: none; }
    .is-searchOpen .apHd-btnSearch:after {
      display: block; }
  .is-searchOpen .apHd-btnSearch {
    background-color: #51626F;
    color: white; }

.is-searchOpen .apHd-btnSearchIcon1 {
  display: none !important; }

.apHd-btnSearchIcon2 {
  display: none !important; }
  .is-searchOpen .apHd-btnSearchIcon2 {
    display: block !important; }

.apHd-btnTelIcon {
  color: #003F72;
  font-size: 0.75rem; }
  @media only screen and (min-width: 62em) {
    .apHd-btnTelIcon {
      margin-top: -0.1875rem;
      font-size: 1.0625rem; } }

.apHd-btnPhone {
  font-size: 0.75rem;
  padding-left: 16px; }
  @media only screen and (min-width: 62em) {
    .apHd-btnPhone {
      font-size: 1.25rem;
      padding-left: 20px; } }

.apHd-lang {
  width: 150px;
  min-width: 150px; }
  @media only screen and (max-width: 1199px) {
    .apHd-lang {
      width: 130px;
      min-width: 130px; } }

.apHd-gTrans .goog-te-gadget-simple:before {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #3D7EDB; }

.apHd-btnTel {
  margin-top: 1.0625rem; }
  @media only screen and (max-width: 81.1875em) and (min-width: 62em) {
    .apHd-btnTel {
      display: none; } }
  @media only screen and (min-width: 62em) {
    .apHd-btnTel {
      margin-top: 0;
      margin-left: 0.625rem; } }

.apHd-linkList {
  margin-top: 1.875rem; }
  @media only screen and (min-width: 62em) {
    .apHd-linkList {
      margin-top: 0.3125rem;
      float: left;
      max-width: 42%; } }

.apHd-linkItem {
  padding: 0.3125rem 0; }
  @media only screen and (min-width: 62em) {
    .apHd-linkItem {
      display: inline-block;
      padding: 0 0.625rem 0 0;
      float: left; } }

.apHd-divider {
  margin: 10px -20px 20px; }
  @media only screen and (max-width: 1199px) {
    .apHd-divider {
      margin: 10px 0 20px; } }
  @media only screen and (max-width: 991px) {
    .apHd-divider {
      display: none; } }

.apHd-logoImage {
  -webkit-transition: max-width 0.3s ease-out;
  transition: max-width 0.3s ease-out; }
  @media only screen and (min-width: 62em) {
    .is-sticky .apHd-logoImage {
      max-width: 200px; } }

.apHd-menu {
  position: fixed;
  top: 0;
  right: -270px;
  width: 270px;
  height: 100%;
  padding: 1.125rem 0.625rem 0.9375rem 1.5625rem; }
  @media only screen and (max-width: 61.9375em) {
    .apHd-menu {
      background-color: #FFF;
      z-index: 51; } }
  @media only screen and (min-width: 62em) {
    .apHd-menu {
      position: static;
      width: auto;
      padding: 0;
      height: auto; } }
  .is-mbMenuOpen .apHd-menu {
    -webkit-transform: translateX(-270px);
    transform: translateX(-270px); }
  @media only screen and (max-width: 61.9375em) {
    .is-sticky .apHd-menu {
      padding-top: 0.9375rem; } }

.apHd-menuBtn {
  background-color: white; }
  .apHd-menuBtn:focus {
    outline: none !important;
    background-color: #e0ebf6; }
  @media only screen and (min-width: 62em) {
    .apHd-menuBtn {
      display: none; } }
  .apHd-menuBtn:hover, .apHd-menuBtn:active, .apHd-menuBtn:focus {
    color: #3D7EDB; }
  .apHd-menuBtn:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%; }

.apHd-searchBar {
  display: none; }
  .is-searchOpen .apHd-searchBar {
    display: block; }

.apHd-mbAction {
  padding-top: 1.875rem; }
  @media only screen and (min-width: 62em) {
    .apHd-mbAction {
      display: none; } }

.apHd-searchFormWrap {
  padding: 6px 35px 6px 10px; }
  @media only screen and (min-width: 62em) {
    .apHd-searchFormWrap {
      padding: 6px 35px 6px 20px; } }

.apHd-searchForm {
  margin-top: 1.25rem; }
  .apHd-searchForm.is-focus {
    width: 100%; }
  @media only screen and (min-width: 62em) {
    .apHd-searchForm {
      margin-left: 2.5rem;
      margin-top: 0;
      width: 275px; } }

@media only screen and (min-width: 62em) {
  .apHd-mainNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; } }

@media only screen and (min-width: 62em) {
  .apHd-mainLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; } }

.apHd-mainLinkListBtn {
  margin-bottom: 20px;
  margin-top: 10px; }
  @media only screen and (min-width: 62em) {
    .apHd-mainLinkListBtn {
      margin-bottom: 0;
      margin-top: 0; } }

@media only screen and (min-width: 62em) {
  .apHd-mainLinkItem:hover {
    -webkit-transform: none;
    transform: none;
    background-color: #0073CF; } }

@media only screen and (min-width: 62em) {
  .apHd-mainLinkListBtn .apHd-mainLinkItem {
    background-color: #02579d; }
    .apHd-mainLinkListBtn .apHd-mainLinkItem::before {
      content: '';
      position: absolute;
      top: 25%;
      bottom: 25%;
      left: -1px;
      width: 2px;
      background-color: rgba(0, 0, 0, 0.2); }
    .apHd-mainLinkListBtn .apHd-mainLinkItem:first-child:before {
      content: none; } }

.apHd-mainLink {
  color: #003F72;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 0 0;
  position: relative;
  display: inline-block; }
  @media only screen and (min-width: 62em) {
    .apHd-mainLink {
      color: #FFF;
      display: block;
      font-size: 0.9375rem;
      padding: 20px;
      font-weight: 400; }
      .apHd-mainLinkListBtn .apHd-mainLink {
        text-transform: uppercase; } }
  @media only screen and (min-width: 81.25em) {
    .apHd-mainLink {
      padding: 20px 30px; } }

.apHd-mainLinkIcon {
  display: inline-block;
  padding: 10px 20px 10px 10px; }
  @media only screen and (min-width: 62em) {
    .apHd-mainLinkIcon {
      display: none; } }
  .is-active .apHd-mainLinkIcon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    padding: 10px 10px 10px 20px; }

@media only screen and (max-width: 61.9375em) {
  .apHd-ddMenu {
    position: static;
    box-shadow: none;
    padding-top: 0;
    float: none; } }

@media only screen and (min-width: 62em) {
  .apHd-ddMenu {
    background-color: #003F72;
    width: 25rem;
    padding: 10px 0 30px; }
    .apHd-ddMenu.dropdown-menu-right {
      text-align: right; } }

ul.apHd-ddMenu > li .apHd-ddLink {
  padding: 5px 10px 5px 25px;
  font-size: 12px;
  color: #0073CF; }
  @media only screen and (min-width: 62em) {
    ul.apHd-ddMenu > li .apHd-ddLink {
      background-color: #003F72;
      color: #FFF;
      font-size: 15px;
      padding: 23px 25px 0 49px; }
      ul.apHd-ddMenu > li .apHd-ddLink:hover {
        background-color: #0073CF;
        color: #FFF; }
      ul.apHd-ddMenu > li .apHd-ddLink::after {
        content: '';
        display: block;
        height: 2px;
        border-bottom: 2px solid #fff;
        margin-top: 13px;
        opacity: .29; } }

@media only screen and (min-width: 62em) {
  ul.apHd-ddMenu.dropdown-menu-right > li .apHd-ddLink {
    padding: 23px 49px 0 25px; } }

.srcBr-content {
  position: relative; }

.srcBr-input {
  display: block;
  width: 100%;
  border: 1px solid #c6c6c6;
  font-style: normal;
  font-family: "Adelle-Regular", serif;
  font-weight: normal; }
  .srcBr-input::-webkit-input-placeholder {
    color: gray; }
  .srcBr-input:-moz-placeholder {
    color: gray; }
  .srcBr-input::-moz-placeholder {
    color: gray; }
  .srcBr-input:-ms-input-placeholder {
    color: gray; }

.srcBr-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #3D7EDB;
  background-color: transparent;
  font-size: 1.25rem;
  border: 0;
  padding: 0; }

.srcBr--header .srcBr-content {
  background-color: #51626F;
  padding: 3.125rem 6%; }

.srcBr-input {
  height: 3.125rem;
  font-size: 1.5625rem;
  padding: 3px 42px 0 15px; }
  @media only screen and (min-width: 48em) {
    .srcBr-input {
      height: 5.25rem;
      font-size: 3rem;
      padding: 0 55px 0 20px; } }
  .srcBr-input:focus {
    box-shadow: none;
    outline: none; }
  .srcBr-input::-ms-clear {
    display: none; }
  .srcBr--header .srcBr-input {
    border: 0;
    border-bottom: 4px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: white;
    padding-right: 3.75rem; }
  .srcBr--mb .srcBr-input {
    height: 2.75rem;
    font-size: 1rem;
    padding: 0 0.625rem; }

.srcBr-btn {
  right: 0.625rem; }
  @media only screen and (min-width: 48em) {
    .srcBr-btn {
      right: 1.25rem; } }
  .srcBr--header .srcBr-btn {
    color: rgba(255, 255, 255, 0.3);
    font-size: 2.875rem;
    right: 6%; }

.prTl-title {
  font-size: 1.875rem; }

.prTl-descWrap {
  padding-top: 0.875rem; }

.prTl-desc {
  font-size: 0.9375rem;
  color: #444444; }

.prTl-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0; }

.prTl-link {
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  padding: 0.375rem 0; }
  .prTl-link a {
    font-size: 1rem;
    display: block;
    color: black; }

.prTl {
  background-color: #E0DED8; }
  .is-fakeHeightSet .prTl {
    height: 100%; }
  .prTl--clr1 {
    background-color: #69923A;
    color: white; }
  .prTl-content {
    padding: 2.125rem; }
  .prTl--clr1 .prTl-link a {
    color: white; }

.pgn {
  padding: 20px 10px;
  text-align: center; }
  .pgn-list {
    display: inline-block;
    list-style: none;
    margin: auto;
    padding: 0;
    width: initial; }
  .pgn-item {
    float: left;
    display: block;
    margin: 2px 1px; }
  .pgn-link, .pgn-prev, .pgn-next, .pgn-ellipsis {
    -webkit-transition: background-color linear .3s, color linear .3s;
    transition: background-color linear .3s, color linear .3s;
    color: #000;
    display: block;
    font-size: 1.25rem;
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    line-height: 48px;
    height: 48px;
    padding: 0 5px;
    min-width: 48px;
    text-align: center;
    text-decoration: none; }
    .pgn-link:focus, .pgn-link:hover, .pgn-prev:focus, .pgn-prev:hover, .pgn-next:focus, .pgn-next:hover, .pgn-ellipsis:focus, .pgn-ellipsis:hover {
      color: #3D7EDB;
      text-decoration: none; }
    .pgn-link.current, .pgn-prev.current, .pgn-next.current, .pgn-ellipsis.current {
      background-color: #65646A;
      cursor: default;
      color: #fff; }
  .pgn-prev:before, .pgn-next:before {
    font-size: 1.9375rem;
    display: block;
    position: absolute;
    top: 0px;
    left: 15px; }
  .pgn-ellipsis:before {
    font-size: 1rem;
    position: absolute;
    top: 0px;
    left: 18px; }
  .pgn-prev, .pgn-next, .pgn-ellipsis {
    padding: 5px;
    position: relative; }
    .pgn-prev:before, .pgn-next:before, .pgn-ellipsis:before {
      display: block; }
  .pgn-prev {
    color: #3D7EDB;
    margin-right: 20px; }
    .pgn-prev:before {
      content: ""; }
    .pgn-prev.disabled {
      cursor: default;
      opacity: 0.3; }
  .pgn-next {
    color: #3D7EDB;
    margin-left: 20px; }
    .pgn-next:before {
      content: ""; }
    .pgn-next.disabled {
      cursor: default;
      opacity: 0.3; }
  .pgn-ellipsis {
    font-size: 0.8125rem;
    font-weight: 100;
    padding-top: 28px; }
    .pgn-ellipsis:before {
      content: ""; }

.sdNv-navList {
  padding-left: 0;
  display: block;
  width: 100%; }

.sdNv-hdr {
  padding: 0.25rem 0.625rem 0.9375rem;
  text-align: left;
  color: #4F5357;
  margin-bottom: 0; }

.sdNv-navItem {
  list-style: none;
  list-style-type: none;
  text-align: left; }

.sdNv-navBtn {
  /*
  * Removes inner padding and border in Firefox 4+.
  */
  -webkit-appearance: none;
  overflow: visible;
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  margin: 0;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 12px;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.15s linear;
  transition: background-color 0.15s linear;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.5rem;
  min-height: 1.5rem;
  text-decoration: none;
  text-align: center;
  cursor: default;
  /*
    Has transparent border because :focus adds 1px border.
    Border used, instead of outline, because it preserves border-radius.
    */
  border-radius: 0;
  border: 1px solid transparent;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  font-size: 0.9375rem;
  display: block;
  color: #000;
  border-top: 1px solid #DFDFDF;
  text-align: left; }
  .sdNv-navBtn::-moz-focus-inner {
    border: 0;
    padding: 0; }
  .ie-msie9 .sdNv-navBtn {
    word-break: break-all; }
  .sdNv-navBtn:not([disabled]):not(.no-btn) {
    cursor: pointer; }
  .sdNv-navBtn[disabled] {
    pointer-events: none; }
  .sdNv-navBtn.is-processing {
    cursor: not-allowed !important;
    opacity: 0.6 !important; }
  .sdNv-navBtn.no-click {
    cursor: not-allowed !important;
    pointer-events: none !important; }
  .is-mouseuser .sdNv-navBtn:hover:not([disabled]) {
    color: #FFF;
    background-color: #003F72; }
  .is-touchuser .sdNv-navBtn:focus:not([disabled]), .is-mouseuser .sdNv-navBtn:focus:not([disabled]) {
    outline: 0;
    color: #FFF;
    background-color: #003F72; }
  .is-touchuser .sdNv-navBtn:focus:not([disabled]), .is-mouseuser .sdNv-navBtn:focus:not([disabled]) {
    outline: 0;
    text-decoration: underline; }
  .is-touchuser .sdNv-navBtn:active:not([disabled]) {
    color: #FFF;
    background-color: #003F72; }
  .sdNv-navBtn.is-selected {
    color: #FFF;
    background-color: #003F72; }

.sdNv-navBtnWrap {
  position: relative; }

.sdNv-icon {
  font-size: 0.75rem;
  margin-top: -0.4375rem;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  color: #3D7EDB; }

@media print {
  .sdNv {
    display: none; } }

.is-mb .sdNv-dtNav {
  display: none; }

@media only screen and (max-width: 47.9375em) {
  .is-mbInit .sdNv-dtNav {
    height: 0;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    display: block; } }

.sdNv-mbNav {
  display: none; }
  .is-mb .sdNv-mbNav {
    display: block; }

.sdNv-navBtn {
  padding: 1.0625rem 0.75rem; }
  .is-mouseuser .no-callback .sdNv-navBtn {
    cursor: pointer !important; }

.is-selected .sdNv-icon {
  -webkit-transform: scaleY(-1) translateY(-3px);
  transform: scaleY(-1) translateY(-3px);
  -webkit-transform-origin: center;
  transform-origin: center; }

.smVd-content {
  position: relative;
  background-color: #DFDFDF; }

.smVd-cover {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 10; }

.smVd-coverImg {
  width: 100%;
  visibility: hidden; }

.smVd-videoWrap {
  position: relative;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%; }
  .smVd-videoWrap iframe, .smVd-videoWrap object, .smVd-videoWrap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.smVd-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
  color: white;
  font-size: 2.125rem; }

.smVd-embedItem {
  border: 0; }

.smVd-cover {
  display: block; }
  .is-playing .smVd-cover {
    display: none;
    opacity: 0; }

.smVd-coverImg {
  min-height: 200px; }
  @media only screen and (min-width: 48em) {
    .smVd-coverImg {
      min-height: 400px; } }
  .has-ytImage .smVd-coverImg {
    min-height: 0; }

.smVd-videoWrap {
  display: none; }
  .is-playing .smVd-videoWrap {
    display: block; }

.smVd-play {
  background-color: #3D7EDB; }
  .smVd-play:hover {
    background-color: #1c4e96; }

.smVd-playIcon:before {
  margin-left: 0.375rem; }

.adrMp {
  background-color: #616365;
  color: #fff; }
  .adrMp-content {
    padding: 30px 25px 35px; }
  .adrMp-title {
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    font-size: 20px; }
  .adrMp-address {
    font-size: 15px;
    padding: 15px 0 18px;
    line-height: 24px;
    margin-bottom: 0; }
  .adrMp-map {
    height: 194px; }

.dpLs {
  position: relative;
  font-size: 0.875rem; }
  .dpLs--inText {
    display: inline-block;
    margin-left: 4px;
    margin-right: 4px; }
  .dpLs-sel {
    display: none; }
  .dpLs-selOpt {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    line-height: 20px;
    border: 1px solid #dfdfdf;
    position: relative;
    cursor: pointer;
    z-index: 10; }
  .dpLs-selOptWrap {
    position: relative; }
  .dpLs-dropDown {
    position: relative;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
    margin-top: 12px; }
  .dpLs-opt {
    padding: 20px 24px;
    cursor: pointer; }
    .dpLs--slim .dpLs-opt {
      padding: 14px 16px; }
  .dpLs-btnOption {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    pointer-events: none; }
  .dpLs-arrowIcon {
    position: absolute;
    right: 12px;
    pointer-events: none;
    z-index: 20; }

.dpLs--gray {
  background-color: #616365; }

.dpLs--blue {
  background-color: #003F72; }

.dpLs.is-initializing {
  height: 52px;
  border: 1px solid; }
  .dpLs.is-initializing * {
    opacity: 0; }
  .dpLs.is-initializing.dpLs--gray {
    background-color: #616365; }
  .dpLs.is-initializing.dpLs--blue {
    background-color: #003F72; }
  .dpLs.is-initializing.dpLs--noBorder {
    border: none; }
  .dpLs.is-initializing.dpLs--white {
    color: white;
    border-color: white; }
  .dpLs.is-initializing.dpLs--blueArrow {
    border-color: #3D7EDB; }

.dpLs-dropDown {
  display: none;
  padding: 12px 0; }
  .open .dpLs-dropDown {
    display: block; }
  .dpLs-dropDown:before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(0, 0, 0, 0.1);
    left: 24px;
    top: -12px; }
  .dpLs-dropDown:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid white;
    left: 25px;
    top: -10px; }
  .dpLs--noArrow .dpLs-dropDown {
    padding: 0 1px 1px;
    margin-top: 0; }
    .dpLs--noArrow .dpLs-dropDown:before, .dpLs--noArrow .dpLs-dropDown:after {
      display: none; }
  .dpLs--longList .dpLs-dropDown {
    max-height: 160px;
    overflow-y: scroll; }
  .dpLs--overlay .dpLs-dropDown {
    position: absolute;
    z-index: 6;
    width: 100%; }
  .dpLs--inForm .dpLs-dropDown {
    margin-top: 0; }

.dpLs-selOpt {
  padding: 12px;
  padding-right: 1.875rem; }
  .dpLs-selOpt:active, .dpLs-selOpt:focus {
    outline: none; }
  .open .dpLs-selOpt {
    border-color: #E2EFFA; }
  .dpLs--truncate .dpLs-selOpt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .dpLs--noBorder .dpLs-selOpt {
    border: none; }
  .dpLs--white .dpLs-selOpt {
    color: white;
    border-color: white; }
  .dpLs--blueArrow .dpLs-selOpt {
    border-color: #3D7EDB; }
  .dpLs--xl .dpLs-selOpt {
    padding: 0.9375rem;
    padding-right: 2.5rem; }
  .dpLs--xl.dpLs--textSm .dpLs-selOpt {
    padding-top: 1.1875rem; }
  .dpLs--xl:not(.dpLs--textSm) .dpLs-selOpt {
    font-size: 1.25rem; }
  .dpLs--borderBot .dpLs-selOpt {
    border-width: 0 0 2px;
    padding-top: 0.625rem;
    padding-bottom: 0.25rem;
    padding-left: 1px; }
  .dpLs--tightBorderBot .dpLs-selOpt {
    padding-bottom: 0; }
  .dpLs--xl.dpLs--tightBorderBot .dpLs-selOpt {
    padding-bottom: 2px; }
  .dpLs--noBold .dpLs-selOpt {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    color: #444; }
  .dpLs--inForm .dpLs-selOpt {
    padding-top: 1rem;
    padding-left: 0.625rem;
    padding-bottom: 0.9375rem;
    background-color: #FFF;
    border-color: #c6c6c6; }

.dpLs-opt.highlighted {
  background-color: rgba(226, 239, 250, 0.5); }
  .dpLs--gray .dpLs-opt.highlighted {
    background-color: rgba(97, 99, 101, 0.5);
    color: #FFF; }
  .dpLs--blue .dpLs-opt.highlighted {
    background-color: rgba(0, 63, 114, 0.5);
    color: #FFF; }

.dpLs-opt.ticked {
  background-color: #E2EFFA; }
  .dpLs--gray .dpLs-opt.ticked {
    background-color: #616365;
    color: #FFF; }
  .dpLs--blue .dpLs-opt.ticked {
    background-color: #003F72;
    color: #FFF; }

.dpLs-opt.ticked {
  cursor: default !important; }

.dpLs-arrowIcon {
  font-size: 1rem;
  top: 50%;
  margin-top: -0.625rem; }
  .open .dpLs-arrowIcon {
    -webkit-transform: scale(-1);
    transform: scale(-1);
    -webkit-transform-origin: center;
    transform-origin: center; }
  .dpLs--blueArrow .dpLs-arrowIcon {
    color: #3D7EDB; }
  .dpLs--white .dpLs-arrowIcon {
    color: white; }
  .dpLs--xl .dpLs-arrowIcon {
    margin-top: -0.75rem; }
  .dpLs--borderBot .dpLs-arrowIcon {
    margin-top: -0.5rem;
    right: 0; }
  .dpLs--tightBorderBot .dpLs-arrowIcon {
    margin-top: -0.4375rem; }
  .dpLs--bigChevron .dpLs-arrowIcon {
    font-size: 1.25rem;
    margin-top: -0.8125rem; }
  .dpLs--bigChevron.dpLs--xl .dpLs-arrowIcon {
    margin-top: -0.75rem; }
  .dpLs--bigChevron.dpLs--borderBot .dpLs-arrowIcon {
    margin-top: -0.6875rem; }

.main-footer {
  color: #fff; }
  .main-footer li, .main-footer a {
    font-size: 1rem; }
  .main-footer a {
    color: #fff; }
    .main-footer a:focus {
      color: #fff;
      text-decoration: none; }
    .main-footer a:hover {
      color: #fff;
      text-decoration: underline; }
  @media only screen and (max-width: 767px) {
    .main-footer .text-right {
      text-align: left; } }

.foot-sitemap {
  background-color: #65646A;
  padding-top: 40px;
  padding-bottom: 40px; }
  @media only screen and (max-width: 480px) {
    .foot-sitemap [class^="col-"],
    .foot-sitemap [class*="col-"] {
      width: 100%; } }

.foot-list {
  list-style: none;
  margin: 0;
  padding: 0; }
  .foot-list-inline {
    display: inline-block;
    list-style: none;
    margin: 0;
    padding: 0;
    width: initial; }
    .foot-list-inline:before, .foot-list-inline:after {
      content: " ";
      display: table; }
    .foot-list-inline:after {
      clear: both; }
    .foot-list-inline > li {
      float: left;
      padding-top: 10px;
      padding-bottom: 10px; }
      .foot-list-inline > li:not(:first-child) {
        padding-left: 20px; }
      @media only screen and (max-width: 480px) {
        .foot-list-inline > li {
          display: block;
          text-align: center; } }

.foot-bar {
  background-color: #414042;
  padding-top: 20px;
  padding-bottom: 20px; }

.foot-menu li, .foot-menu a {
  font-size: 0.8125rem;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif; }

@media only screen and (min-width: 48em) {
  .foot-menu {
    padding-top: 6px; } }

.foot-socmed [class*="icon-"],
.foot-socmed [class^="icon-"] {
  display: block;
  font-weight: normal;
  font-size: 1.125rem; }

.foot-copyright {
  display: block;
  font-size: 0.6875rem;
  line-height: normal; }
  @media only screen and (max-width: 47.9375em) {
    .foot-copyright {
      line-height: 2.2; } }

.foot-iconCol {
  margin-bottom: 10px; }
  @media only screen and (min-width: 48em) {
    .foot-iconCol {
      margin-bottom: 0;
      float: right;
      padding-left: 0; } }

.foot-iconItem {
  padding-left: 10px;
  padding-right: 10px; }
  @media only screen and (min-width: 48em) {
    .foot-iconItem {
      padding-top: 0 !important; } }
  @media only screen and (max-width: 61.9375em) and (min-width: 48em) {
    .foot-iconItem:not(:first-child) {
      padding-left: 10px !important; } }

@media only screen and (max-width: 47.9375em) {
  .foot-bottomLinks {
    margin-bottom: 15px; } }

@media only screen and (max-width: 47.9375em) {
  .foot-bottomLinkItem {
    text-align: left;
    display: block;
    clear: left;
    padding: 4px 0 !important; } }

@media only screen and (min-width: 48em) {
  .foot-bottomLinkItem {
    padding-top: 0 !important; } }

.sitemap-list {
  font-size: 0.8125rem; }
  .sitemap-list li {
    padding-bottom: 6px;
    padding-top: 4px; }
    .sitemap-list li:not(:first-child) {
      padding-top: 6px; }

.smrItm {
  padding: 0 0 2.25rem 0;
  position: relative; }
  .smrItm .u-wysiwygArea p {
    font-size: 0.9375rem; }
  .smrItm-content {
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    background-color: white; }
    .smrItm-content.u-clrBg--blue .u-wysiwygArea h2, .smrItm-content.u-clrBg--blue .u-wysiwygArea h3, .smrItm-content.u-clrBg--blue .u-wysiwygArea h4, .smrItm-content.u-clrBg--blue .u-wysiwygArea h5, .smrItm-content.u-clrBg--blue .u-wysiwygArea p, .smrItm-content.u-clrBg--blue .u-wysiwygArea li, .smrItm-content.u-clrBg--dkGry .u-wysiwygArea h2, .smrItm-content.u-clrBg--dkGry .u-wysiwygArea h3, .smrItm-content.u-clrBg--dkGry .u-wysiwygArea h4, .smrItm-content.u-clrBg--dkGry .u-wysiwygArea h5, .smrItm-content.u-clrBg--dkGry .u-wysiwygArea p, .smrItm-content.u-clrBg--dkGry .u-wysiwygArea li, .smrItm-content.u-clrBg--light-green .u-wysiwygArea h2, .smrItm-content.u-clrBg--light-green .u-wysiwygArea h3, .smrItm-content.u-clrBg--light-green .u-wysiwygArea h4, .smrItm-content.u-clrBg--light-green .u-wysiwygArea h5, .smrItm-content.u-clrBg--light-green .u-wysiwygArea p, .smrItm-content.u-clrBg--light-green .u-wysiwygArea li, .smrItm-content.u-clrBg--light-purple .u-wysiwygArea h2, .smrItm-content.u-clrBg--light-purple .u-wysiwygArea h3, .smrItm-content.u-clrBg--light-purple .u-wysiwygArea h4, .smrItm-content.u-clrBg--light-purple .u-wysiwygArea h5, .smrItm-content.u-clrBg--light-purple .u-wysiwygArea p, .smrItm-content.u-clrBg--light-purple .u-wysiwygArea li, .smrItm-content.u-clrBg--soft-green .u-wysiwygArea h2, .smrItm-content.u-clrBg--soft-green .u-wysiwygArea h3, .smrItm-content.u-clrBg--soft-green .u-wysiwygArea h4, .smrItm-content.u-clrBg--soft-green .u-wysiwygArea h5, .smrItm-content.u-clrBg--soft-green .u-wysiwygArea p, .smrItm-content.u-clrBg--soft-green .u-wysiwygArea li {
      color: #ffffff !important; }
  .smrItm-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #DFDFDF;
    width: 168px;
    height: 120px;
    float: left;
    position: absolute;
    top: 0;
    left: 0; }

@media only screen and (min-width: 48em) {
  .smrItm.smrItm--img {
    padding-left: 168px; } }

.is-mouseuser .smrItm.smrItm--link:hover:not([disabled]) .smrItm-content {
  background-color: #e7e7e7; }

.is-touchuser .smrItm.smrItm--link:focus:not([disabled]), .is-mouseuser .smrItm.smrItm--link:focus:not([disabled]) {
  outline: 0; }
  .is-touchuser .smrItm.smrItm--link:focus:not([disabled]) .smrItm-content, .is-mouseuser .smrItm.smrItm--link:focus:not([disabled]) .smrItm-content {
    background-color: #e7e7e7; }

.is-touchuser .smrItm.smrItm--link:active:not([disabled]) .smrItm-content {
  background-color: #e7e7e7; }

.smrItm-content {
  padding: 1rem 0.75rem; }
  @media only screen and (min-width: 48em) {
    .smrItm-content {
      padding: 1.5rem 2.25rem; }
      .smrItm--img .smrItm-content {
        min-height: 120px; } }

@media only screen and (max-width: 47.9375em) {
  .smrItm-img {
    display: none; } }

.rmCal-content {
  background-color: white; }

.rmCal-top {
  padding: 2rem 1.5rem; }

.rmCal-bottom {
  padding: 1.25rem 1.5rem;
  border-top: 2px solid #E5E5E5; }

.rmCal-dropListWrap {
  margin-bottom: 1.25rem; }

.rmCal-label {
  font-size: 1rem; }

.rmCal-slider {
  height: 2.25rem;
  border-radius: 1.25rem;
  border: 1px solid #DFDFDF; }

.rmCal-tooltip {
  padding: 0.625rem 1.5625rem; }

.rmCal-ttLabel {
  font-size: 1.25rem; }

.rmCal-ttVal {
  padding-top: 0.625rem; }

.rmCal-ttVal, .rmCal-depPrice {
  display: block;
  font-style: normal;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: normal;
  font-family: "ProximaNova-Bold", sans-serif;
  font-size: 1.25rem; }

.rmCal-depText {
  padding-top: 4.375rem;
  padding-bottom: 1rem; }

.rmCal-depLabel {
  font-size: 0.9375rem;
  color: #444; }

.rmCal-note {
  font-size: 0.75rem;
  line-height: 1.5rem;
  margin-top: 1.875rem; }

.rmCal .noUi-connect {
  background: #CCDFF0;
  opacity: .99;
  border-radius: 1.25rem;
  border: 2px solid white;
  box-shadow: none; }

.rmCal .noUi-handle {
  border-radius: 50%;
  color: white;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.25rem; }
  .rmCal .noUi-handle:before {
    content: ""; }

.rmCal .noUi-tooltip {
  border-radius: 4px;
  border: 1px solid black;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2); }

.rmCal-accomodation {
  position: relative;
  z-index: 30; }

.rmCal-formValMsg {
  color: #E2231A; }

.rmCal-formContainer {
  margin-bottom: 15px; }

@media only screen and (min-width: 48em) {
  .rmCal-slider {
    margin-left: 1.875rem;
    margin-right: 1.875rem; } }

.rmCal .noUi-horizontal .noUi-handle {
  top: -0.75rem; }

.rmCal .noUi-handle {
  width: 3.75rem;
  height: 3.75rem;
  background-color: #0071CF; }
  .rmCal .noUi-handle:before {
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: transparent; }
  .rmCal .noUi-handle:after {
    content: none; }
  .rmCal .noUi-handle:focus {
    outline: none; }

.rmCal .noUi-tooltip:before, .rmCal .noUi-tooltip:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.rmCal .noUi-tooltip:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid black;
  bottom: -12px; }

.rmCal .noUi-tooltip:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid white;
  bottom: -11px; }

.is-touchuser .rmCal .noUi-tooltip {
  pointer-events: none; }

.rmCal .noUi-tooltip {
  background-color: rgba(255, 255, 255, 0.9); }

.rmCal.is-toolTipLeftMd .noUi-tooltip {
  margin-left: 20px; }
  .rmCal.is-toolTipLeftMd .noUi-tooltip:before, .rmCal.is-toolTipLeftMd .noUi-tooltip:after {
    margin-left: -20px; }

.rmCal.is-toolTipLeft .noUi-tooltip {
  margin-left: 45px; }
  .rmCal.is-toolTipLeft .noUi-tooltip:before, .rmCal.is-toolTipLeft .noUi-tooltip:after {
    margin-left: -45px; }

.rmCal.is-toolTipRightMd .noUi-tooltip {
  margin-left: -35px; }
  .rmCal.is-toolTipRightMd .noUi-tooltip:before, .rmCal.is-toolTipRightMd .noUi-tooltip:after {
    margin-left: 35px; }

.rmCal.is-toolTipRight .noUi-tooltip {
  margin-left: -70px; }
  .rmCal.is-toolTipRight .noUi-tooltip:before, .rmCal.is-toolTipRight .noUi-tooltip:after {
    margin-left: 70px; }

.is-formSuccess .rmCal-calc,
.is-formShown .rmCal-calc {
  display: none; }

.rmCal-thankYou {
  display: none; }
  .is-formSuccess .rmCal-thankYou {
    display: block; }

.rmCal-form {
  display: none; }
  .is-formShown .rmCal-form {
    display: block; }

.rmCal-formValMsg {
  display: none; }
  .has-error .rmCal-formValMsg {
    display: block; }

.rmCal-formLabel {
  width: 100%; }

.rmCal-formLabelText {
  margin-bottom: 5px;
  display: block; }

.accrdn {
  margin: auto;
  max-width: 800px;
  padding: 2.5rem 0.9375rem; }
  .accrdn-inner {
    overflow: hidden;
    display: none; }
    .accrdn-inner.show {
      /*display: block;*/ }
  .accrdn-title, .accrdn-toggle, .accrdn-inner {
    color: #444444; }
    .u-clrBg--blue .accrdn-title,
    .u-clrBg--dkGry .accrdn-title,
    .u-clrBg--light-green .accrdn-title,
    .u-clrBg--light-purple .accrdn-title,
    .u-clrBg--soft-green .accrdn-title, .u-clrBg--blue .accrdn-toggle,
    .u-clrBg--dkGry .accrdn-toggle,
    .u-clrBg--light-green .accrdn-toggle,
    .u-clrBg--light-purple .accrdn-toggle,
    .u-clrBg--soft-green .accrdn-toggle, .u-clrBg--blue .accrdn-inner,
    .u-clrBg--dkGry .accrdn-inner,
    .u-clrBg--light-green .accrdn-inner,
    .u-clrBg--light-purple .accrdn-inner,
    .u-clrBg--soft-green .accrdn-inner {
      color: #fff; }
  .accrdn-item {
    padding: 1.25rem 0;
    border-top: 1px solid #000;
    /*.u-clrBg--ltGry &,
		.u-clrBg--white & {
			border-top: 1px solid #000;
		}*/ }
    .u-clrBg--blue .accrdn-item,
    .u-clrBg--dkGry .accrdn-item,
    .u-clrBg--light-green .accrdn-item,
    .u-clrBg--light-purple .accrdn-item,
    .u-clrBg--soft-green .accrdn-item {
      border-color: #fff; }
    .accrdn-item:last-child {
      border-bottom: 1px solid #000; }
      .u-clrBg--blue .accrdn-item:last-child,
      .u-clrBg--dkGry .accrdn-item:last-child,
      .u-clrBg--light-green .accrdn-item:last-child,
      .u-clrBg--light-purple .accrdn-item:last-child,
      .u-clrBg--soft-green .accrdn-item:last-child {
        border-color: #fff; }

/*######################################################
	content
#######################################################*/
.ic-text {
  padding-left: 5px; }
  .ic-text span {
    font-family: "ProximaNova-Regular", sans-serif; }
  .ic-text:before {
    position: relative;
    left: -5px; }

/* section global */
.hero-section {
  padding-top: 0;
  padding-bottom: 36px; }

.intro-section {
  padding-bottom: 36px; }

.search-section {
  padding: 0 !important; }

.banner-section {
  padding-bottom: 0; }

.is-card-aside ~ .is-card-aside {
  margin-top: 20px; }

@media only screen and (min-width: 992px) {
  .tpbr-wrap {
    table-layout: inherit; } }

.tpbr-grid {
  padding: 10px; }
  @media only screen and (min-width: 992px) {
    .tpbr-grid {
      vertical-align: middle; }
      .tpbr-grid.has-rb {
        border-right: 1px solid #DFDFDF; } }

.nwDtl-title {
  margin-bottom: 0.3125rem; }

.nwDtl-titleWrap {
  padding-top: 1.875rem; }
  @media only screen and (min-width: 48em) {
    .nwDtl-titleWrap {
      padding-top: 3.125rem; } }

.nwDtl-inset {
  max-width: 768px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }

.cntDtl {
  background-color: #F3F2F1; }
  .cntDtl .tbslb-container {
    padding-left: 0;
    padding-right: 0; }
  .cntDtl-content {
    padding-top: 1.875rem;
    padding-bottom: 50px; }
    @media only screen and (min-width: 48em) {
      .cntDtl-content {
        padding-top: 3.125rem; } }
  .cntDtl-title {
    margin-bottom: 0.9375rem; }
    @media only screen and (min-width: 48em) {
      .cntDtl-title {
        margin-bottom: 2.5rem; }
        [data-grid-type="middle-right"] .cntDtl-title,
        [data-grid-type="middle"] .cntDtl-title {
          text-align: center; } }
  @media only screen and (min-width: 48em) {
    .cntDtl-subtitle {
      margin-top: -2.1875rem; } }
  .cntDtl-promoPosB {
    padding-top: 1.875rem; }
    @media only screen and (min-width: 48em) {
      .cntDtl-promoPosB {
        padding-top: 0; } }
  .cntDtl-promo {
    padding-bottom: 30px; }
    .cntDtl-promo > * {
      margin-top: 30px; }
      .cntDtl-promo > *:first-child {
        margin-top: 0; }
  .cntDtl-sideNavWrap {
    margin-bottom: 1.25rem; }
  .cntDtl-staffDetailImage {
    float: left;
    padding-right: 25px;
    padding-bottom: 15px;
    max-width: 200px; }
    @media only screen and (min-width: 48em) {
      .cntDtl-staffDetailImage {
        max-width: 100%; } }

.resDtl-heroImg {
  max-width: 800px; }

.resDtl-rightColum .l-blockPad {
  display: none; }

.resDtl-rightColum > * {
  margin-bottom: 24px; }

@media only screen and (max-width: 47.9375em) {
  .resDtl-rightColum {
    margin-top: 30px; } }

.hrTlBlk-grid {
  height: 100%; }

.hrTlBlk-col {
  margin-bottom: 2.1875rem; }

@media only screen and (max-width: 767px) {
  .home-tiles .card {
    margin-bottom: 20px; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-grid-table {
    border-collapse: separate;
    border-spacing: 32px;
    display: table;
    margin: -32px -32px;
    table-layout: fixed;
    min-width: 100%; } }
  @media only screen and (min-width: 768px) and (min-width: 768px) {
    .home-tiles .hmetil-grid-table > .card {
      display: table-cell;
      vertical-align: top; } }
  @media only screen and (min-width: 768px) and (max-width: 767px) {
    .home-tiles .hmetil-grid-table > .card {
      margin-top: 20px; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-grid-2-col-2-space-1 {
    width: 49%; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-grid-3-col-2-space-1 {
    width: 32%; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-grid-3-col-2-space-2 {
    width: 67%; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-grid-3-col-3-space-1 {
    width: 33.33333333333333%; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-col-3 {
    width: 29.9%; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-col-4 {
    width: 29.9%; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-col-6 {
    width: 45%; } }

@media only screen and (min-width: 768px) {
  .home-tiles .hmetil-col-8 {
    width: 70%; } }

.home-articles-grid {
  background-color: #644C9E; }

@media only screen and (min-width: 1200px) {
  .hmartclgrd-row {
    border-collapse: separate;
    border-spacing: 32px;
    display: table;
    margin: -32px 0;
    table-layout: fixed;
    min-width: 100%; } }

@media only screen and (max-width: 1199px) {
  .hmartclgrd-row {
    display: block;
    margin-bottom: -20px; }
    .hmartclgrd-row:before, .hmartclgrd-row:after {
      content: " ";
      display: table; }
    .hmartclgrd-row:after {
      clear: both; } }

@media only screen and (min-width: 1200px) {
  .hmartclgrd-row > .card {
    display: table-cell;
    vertical-align: top; } }

@media only screen and (max-width: 1199px) {
  .hmartclgrd-row > .card {
    display: block;
    float: left;
    margin-right: 4%;
    margin-bottom: 30px;
    width: 46%; }
    .hmartclgrd-row > .card:nth-child(2n+1) {
      clear: both; } }

@media only screen and (max-width: 767px) {
  .hmartclgrd-row > .card {
    margin: 0 2% 20px 2%; } }

@media only screen and (max-width: 599px) {
  .hmartclgrd-row > .card {
    width: 100%;
    margin: 0 0 20px 0; } }

@media only screen and (min-width: 1200px) {
  .hmartclgrd-col-4 {
    width: 20%; } }

.hmartclgrd-column {
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px; }
  @media only screen and (max-width: 767px) {
    .hmartclgrd-column {
      padding: 30px 20px;
      width: 100%; } }
  .hmartclgrd-column-left {
    padding-left: 20px;
    width: 200px; }
    @media only screen and (max-width: 1199px) {
      .hmartclgrd-column-left {
        padding-right: 20px;
        width: 300px; } }
    @media only screen and (max-width: 991px) {
      .hmartclgrd-column-left {
        width: 250px; } }
    @media only screen and (max-width: 767px) {
      .hmartclgrd-column-left {
        padding-bottom: 0;
        text-align: center;
        width: 100%; } }
  .hmartclgrd-column .crd-title {
    font-family: "ProximaNova-Regular", sans-serif; }

.hcta-inner {
  color: #fff;
  padding: 100px 20px; }
  .hcta-inner.is-has-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative; }
    .hcta-inner.is-has-image:before {
      background-color: rgba(0, 0, 0, 0.5);
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      z-index: 0; }

.hcta-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 5; }

.hcta-btn {
  position: relative;
  z-index: 5; }

.nwLstBlk {
  background-color: #E0DED8; }
  .nwLstBlk-title {
    color: #4F5357;
    padding-top: 0.5rem;
    padding-bottom: 0.3125rem; }
  .nwLstBlk-left, .nwLstBlk-right {
    overflow: hidden;
    padding-top: 2.1875rem;
    padding-bottom: 2.1875rem; }
  .nwLstBlk-col {
    display: block;
    float: left; }
  .nwLstBlk .card {
    height: 100%; }
  .nwLstBlk .crd-title {
    margin-bottom: 0.3125rem;
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: normal;
    line-height: 1.5; }
  .nwLstBlk .crd-content {
    padding: 20px 24px 50px 24px; }
  .nwLstBlk .crd-headinfo,
  .nwLstBlk .crd-caption {
    font-size: 0.9375rem; }
  .nwLstBlk .crd-headinfo {
    margin-bottom: 0.75rem; }
  .nwLstBlk .crd-image {
    display: none; }
    @media only screen and (min-width: 48em) {
      .nwLstBlk .crd-image {
        display: block; } }

@media only screen and (max-width: 47.9375em) {
  .nwLstBlk {
    padding-bottom: 2.5rem; } }

.nwLstBlk-title {
  font-size: 1.25rem;
  text-align: center; }
  @media only screen and (max-width: 47.9375em) {
    .nwLstBlk-title {
      margin-bottom: 0.125rem; } }
  @media only screen and (max-width: 29.9375em) {
    .nwLstBlk-title {
      margin-bottom: 0.5625rem; } }
  @media only screen and (min-width: 48em) {
    .nwLstBlk-title {
      text-align: left;
      font-size: 1.875rem; } }

.nwLstBlk-left {
  text-align: center;
  width: 100%;
  padding-bottom: 0; }
  @media only screen and (min-width: 48em) {
    .nwLstBlk-left {
      text-align: left;
      width: 15.625rem;
      padding-left: 1.875rem; } }
  @media only screen and (min-width: 62em) {
    .nwLstBlk-left {
      width: 18.75rem; } }
  @media only screen and (min-width: 81.25em) {
    .nwLstBlk-left {
      width: 12.5rem; } }

.nwLstBlk-right {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }
  @media only screen and (max-width: 47.9375em) {
    .nwLstBlk-right {
      padding-top: 0;
      padding-bottom: 0.625rem;
      padding-left: 0.75rem;
      padding-right: 0.75rem; } }

.nwLstBlk-col {
  padding: 0.375rem 0;
  width: 100%; }
  @media only screen and (min-width: 30em) {
    .nwLstBlk-col {
      padding: 0.9375rem;
      width: 50%; } }
  @media only screen and (min-width: 48em) {
    .nwLstBlk-col {
      max-width: 26.25rem; } }
  @media only screen and (min-width: 1200px) {
    .nwLstBlk-col-1 {
      width: 100%; } }
  @media only screen and (min-width: 1200px) {
    .nwLstBlk-col-2 {
      width: 50%; } }
  @media only screen and (min-width: 1200px) {
    .nwLstBlk-col-3 {
      width: 33.33333%; } }
  @media only screen and (min-width: 1200px) {
    .nwLstBlk-col-4 {
      width: 25%; } }
  @media only screen and (max-width: 47.9375em) {
    .nwLstBlk-col-1 {
      width: 100%; } }

.tbslb:not(.no-loop) .smrItm:first-child {
  padding-top: 0; }

.tbslb:not(.no-loop) .smrItm:last-child {
  padding-bottom: 0; }

@media only screen and (max-width: 61.9375em) {
  .ctaStripBlk-col:nth-child(odd) {
    padding-right: 7px; }
  .ctaStripBlk-col:nth-child(even) {
    padding-left: 7px; } }

.ctaStripBlk-btn {
  width: 100%; }
  @media only screen and (max-width: 61.9375em) {
    .ctaStripBlk-btn {
      margin-top: 7px;
      margin-bottom: 7px; } }
  @media only screen and (max-width: 47.9375em) {
    .ctaStripBlk-btn {
      padding: 0.625rem; }
      .ctaStripBlk-btn.btn--iconL, .u-wysiwygArea .ctaStripBlk-btn.wysIconBtn {
        padding-left: 1.875rem; }
        .ctaStripBlk-btn.btn--iconL .btn-icon, .u-wysiwygArea .ctaStripBlk-btn.wysIconBtn .btn-icon, .ctaStripBlk-btn.btn--iconL .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .ctaStripBlk-btn.btn--iconL .wysIconBtn > [class^="icon-"], .u-wysiwygArea .ctaStripBlk-btn.wysIconBtn .wysIconBtn > [class^="icon-"] {
          left: 0.3125rem; } }

.rmStBlk {
  background-color: white;
  padding: 1.0625rem 1.25rem; }
  .rmStBlk-list {
    display: table; }
  .rmStBlk-row {
    display: table-row; }
  .rmStBlk-left, .rmStBlk-right {
    display: table-cell;
    padding: 0.625rem 0.3125rem; }
  .rmStBlk-left {
    font-style: normal;
    font-family: "Adelle-Regular", serif;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: right;
    display: block;
    line-height: 1.5rem; }
  .rmStBlk-right {
    font-size: 1.25rem;
    padding-left: 1.25rem; }

.tstBlk {
  background-color: #009FDA;
  padding: 1.875rem 1.5625rem 2.1875rem;
  color: white; }
  .tstBlk-desc {
    font-size: 0.9375rem;
    line-height: 1.5rem; }
  .tstBlk-profile {
    padding-top: 0.625rem;
    padding-bottom: 1.125rem; }
  .tstBlk-photo {
    border: 1px solid white; }
  .tstBlk-name {
    font-style: normal;
    font-family: "ProximaNova-Regular", sans-serif;
    font-weight: normal;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 1rem;
    margin-left: 0.625rem; }

.tstBlk-desc:before, .tstBlk-desc:after {
  content: "\""; }

.ctaBlock {
  background-color: #0073CF;
  color: white;
  padding: 1.75rem 1.25rem 0.75rem; }
  .ctaBlock-wysiwyg *:last-child {
    margin-bottom: 0 !important; }
  .ctaBlock-wysiwyg p, .ctaBlock-wysiwyg li {
    line-height: 1.2 !important; }
  .ctaBlock-wysiwyg ul, .ctaBlock-wysiwyg ol {
    padding-left: 1.3125rem; }
  .ctaBlock-btnWrap {
    padding-top: 1.75rem; }
  .ctaBlock-btn {
    margin-bottom: 1.5rem;
    padding-left: 38px !important;
    padding-right: 10px;
    text-indent: -12px; }
    .ctaBlock-btn .btn-icon, .ctaBlock-btn .u-wysiwygArea .wysIconBtn > [class^="icon-"], .u-wysiwygArea .ctaBlock-btn .wysIconBtn > [class^="icon-"] {
      text-indent: 0; }
    .ctaBlock-btn--noIcon {
      padding-left: 10px !important;
      text-indent: 0; }

.rtbLsblk-title {
  margin-bottom: 0.75rem; }

.rtbLsblk-col {
  display: block;
  float: left; }

.rtbLsblk .card {
  height: 100%;
  background-color: #f9f8f7; }

.rtbLsblk {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem; }
  @media only screen and (min-width: 48em) {
    .rtbLsblk {
      padding-top: 2.625rem;
      padding-bottom: 2.625rem; } }
  .rtbLsblk-col {
    padding: 0.375rem 0;
    width: 100%; }
    @media only screen and (min-width: 30em) {
      .rtbLsblk-col {
        padding: 0.9375rem;
        width: 50%; } }
    @media only screen and (min-width: 62em) {
      .rtbLsblk-col {
        width: 33.33333%; } }
    @media only screen and (min-width: 30em) {
      .rtbLsblk-col-2 {
        width: 50%; } }
    @media only screen and (min-width: 62em) {
      .rtbLsblk-col-2 .card {
        max-width: 26.25rem; }
      .rtbLsblk-col-2:first-child .card {
        float: right; } }
    .rtbLsblk-col-1 {
      max-width: 26.25rem;
      float: none;
      margin: 0 auto;
      width: 100%; }
      @media only screen and (max-width: 29.9375em) {
        .rtbLsblk-col-1 {
          max-width: none; } }

.tblb-tile {
  padding-top: 15px;
  padding-bottom: 15px; }
  .tblb-tile--singleTile {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    float: none; }

.splb-tile {
  padding-top: 15px;
  padding-bottom: 15px; }
  .splb-tile .crd-title {
    color: #000; }
    .splb-tile .crd-title:hover {
      color: #fff; }
  .splb-tile .card:hover .crd-title {
    color: #fff; }

.prBlk {
  height: 100%; }

.shrBlk {
  padding: 15px; }
  .shrBlk:before, .shrBlk:after {
    content: " ";
    display: table; }
  .shrBlk:after {
    clear: both; }
  .shrBlk-btn {
    display: block;
    float: left;
    padding: 10px;
    margin-left: 10px; }
    .shrBlk-btn:first-child {
      margin-left: 0; }

/*
These styles were added by Paul Leatham and Cale Maxwell and need to be tidied up by a front end developer at
some point. They could potentially be dangerous, as they seem to be intended to mostly target the accordion widget,
but are actually targting global styles and base elements in some cases.
*/
.u-clrBg--light-purple .accrdn:first-child,
.u-clrBg--dkGry .accrdn:first-child,
.u-clrBg--soft-green .accrdn:first-child,
.u-clrBg--dkGry .accrdn:first-child {
  border-bottom: 1px solid #fff; }

.u-clrBg--light-purple .accrdn,
.u-clrBg--dkGry .accrdn:first-child,
.u-clrBg--soft-green .accrdn,
.u-clrBg--dkGry .accrdn {
  border-top: 1px solid #fff; }

.smVdBlk {
  margin-bottom: 40px; }

.u-clrBg--soft-green .u-clr--black {
  color: #fff !important; }

.u-clrBg--light-purple .u-clr--black {
  color: #fff !important; }

.u-clrBg-- .accrdn:first-child {
  border-bottom: 1px solid #4F5357; }

.u-clrBg-- .accrdn {
  border-top: 1px solid #4F5357; }

.u-clrBg-- .u-clr--white {
  color: #4F5357; }

.u-clrBg--bg-blue {
  background-color: #0073CF; }

.u-clrBg--bg-blue .accrdn:first-child {
  border-top: 1px solid #ffffff; }

.u-clrBg--bg-blue .accrdn {
  border-bottom: 1px solid #ffffff; }

.u-clrBg-- {
  background-color: #fff;
  color: #444444; }

.u-clrBg-- .accrdn:first-child {
  border-top: 1px solid #444444;
  color: #444444 !important; }

.u-clrBg-- .accrdn {
  border-bottom: 1px solid #444444; }

.u-clrBg-- h2, .u-clrBg-- a, .u-clrBg-- div {
  color: #444444 !important; }

.u-clrBg--ltGry {
  background-color: #fff;
  color: #444444; }

.u-clrBg--ltGry .accrdn:first-child {
  border-top: 1px solid #444444;
  color: #444444 !important; }

.u-clrBg--ltGry .accrdn {
  border-bottom: 1px solid #444444; }

.u-clrBg--ltGry h2, .u-clrBg--ltGry a, .u-clrBg--ltGry div {
  color: #444444 !important; }

.accrdn {
  padding: 0 0.9375rem; }

.accrdn-item {
  border-bottom: 1px solid #444;
  border-top: none; }

/*# sourceMappingURL=maps/main.css.map */
