@charset "UTF-8";
/*------------------------------------*\
    #MAIN
\*------------------------------------*/
/**
 * SETTINGS
 * Config...............Project-level config.
 * Global...............Project-specific, globally available settings.
 *
 * TOOLS
 * Mixins...............Global mixins.
 * Functions............Global functions.
 *
 * GENERIC
 * Normalize.css........Normalise browser defaults...
 * Reset................and zero them out.
 * Box-sizing...........More manageable box-model.
 * Shared...............Share certain high-level styles as broadly as possible.
 *
 * ELEMENTS
 * Headings.............H1–H4
 * Links................A links.
 * Forms................Element-level form styling.
 *
 * OBJECTS
 * Layout...............Simple Layout abstraction tool.
 * List-bare............‘Unstyled’ lists: bullets and indent removed.
 * List-pair............Simple key–value pair list.
 * Pack.................Force elements to pack up into all available space.
 *
 * COMPONENTS
 * Forms................Component-level form styling.
 * Buttons..............Element-agnostic button styles.
 * Comments.............Comment styles.
 * Messaging............User feedback messaging.
 *
 * UTILS
 * Typography...........Utilities for manipulating text.
 * Display..............Helper classes for showing or hiding content.
 * Widths...............Width helper classes for use with our Layout system.
 *
 */
/* Colour definitions */
/* colors on a light background */
/* colors on a dark background */
/* Messaging on white */
/* Messaging on dark background */
/* Colour use cases */
/* this variable allows opting out of the font imports.
 it is temporarily needed for projects migrating to sd-ui
 while the fonts are not on a CDN. This will be removed
 once all projects are using the masterbrand fonts */
/* typography serif */
@font-face {
  font-family: 'NexusSerif';
  src: url("/shared-assets/3/fonts/nexus/1.0/serif/NexusSerifWebPro-Regular.woff") format("woff"); }

@font-face {
  font-family: 'NexusSerif';
  src: url("/shared-assets/3/fonts/nexus/1.0/serif/NexusSerifWebPro-Bold.woff") format("woff");
  font-weight: bold; }

@font-face {
  font-family: 'NexusSerif';
  src: url("/shared-assets/3/fonts/nexus/1.0/serif/NexusSerifWebPro-Italic.woff") format("woff");
  font-style: italic; }

@font-face {
  font-family: 'NexusSerif';
  src: url("/shared-assets/3/fonts/nexus/1.0/serif/NexusSerifWebPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }

/* typography sans */
@font-face {
  font-family: 'NexusSans';
  src: url("/shared-assets/3/fonts/nexus/1.0/sans/NexusSansWebPro-Regular.woff") format("woff"); }

@font-face {
  font-family: 'NexusSans';
  src: url("/shared-assets/3/fonts/nexus/1.0/sans/NexusSansWebPro-Bold.woff") format("woff");
  font-weight: bold; }

@font-face {
  font-family: 'NexusSans';
  src: url("/shared-assets/3/fonts/nexus/1.0/sans/NexusSansWebPro-Italic.woff") format("woff");
  font-style: italic; }

@font-face {
  font-family: 'NexusSans';
  src: url("/shared-assets/3/fonts/nexus/1.0/sans/NexusSansWebPro-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }

/* High-level base settings */
/* base spacing */
/*
// Create a fully formed type style (sizing and vertical rhythm) by passing in a
// single value, e.g.:
//
// .foo {
//     @include font-size(12px);
// }
//
// This will generate a rem-based font-size with its pixel fallback, as well as
// a unitless line-height which will place the element on your baseline, e.g.:
//
// .foo {
//     font-size: 12px;
//     font-size: 0.75rem;
//     line-height: 2;
// }
//
// If you do not want to generate a line-height automatically, you simply pass
// in your own as a second paramater, e.g.:
//
// .foo {
//     @include font-size(12px, 1.5);
// }
//
// This will yield:
//
// .foo {
//     font-size: 12px;
//     font-size: 0.75rem;
//     line-height: 1.5;
// }
//
// This parameter can be any integer, ‘inherit’, or ‘normal’.
//
// If you don’t want a line-height at all, pass in a second paramater of ‘none’
// or ‘false’, e.g.:
//
// .foo {
//     @include font-size(12px, none);
// }
//
// This will yield:
//
// .foo {
//     font-size: 12px;
//     font-size: 0.75rem;
// }
//
// If you would like the rules to carry `!important`, pass in a third paramater
// of ‘important’, e.g.:
//
// .foo {
//     @include font-size(12px, none, important);
// }
//
// This will yield:
//
// .foo {
//     font-size: 12px !important;
//     font-size: 0.75rem !important;
// }
*/
/*
// Mixin to drop micro clearfix into a selector.
//
// .simple-usage {
//   @include clearfix();
// }
//
// .detailed-usage {
//   @include clearfix(important);
// }
*/
/*
// Simple truncation mixin to cut off text using an ellipsis after a certain
// width.
//
// .simple-usage {
//   @include truncate();
// }
//
// .detailed-usage {
//   @include truncate(<value>, important);
// }
*/
/*
// For setting border box sizing e.g. used by _generic.grid.scss as a reset
//
// .simple-usage {
//   @include border-box;
// }
//
// .detailed-usage {
//   @include border-box;
// }
*/
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */

/**
 * Add the correct display in iOS 4-7.
 */

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  border-radius: 0; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 * 3. Correct rounded corners in iOS.
 */
[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  border-radius: 0;
  /* 3 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/* wbr
   ========================================================================== */
/**
 * Add zero width breaking space after wbr elements to fix IE behaviour.
 */
wbr:after {
  content: "\200B"; }

/*------------------------------------*\
    #RESET
\*------------------------------------*/
/**
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1, h2, h3, h5,
p, pre, ol, ul,
form, fieldset, legend,
figure,
table, caption {
  margin: 0;
  padding: 0; }

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */

dfn[title] {
  cursor: help; }

/**
 * Remove underlines from potentially troublesome elements.
 */

ins {
  text-decoration: none; }

/**
 * Apply faux underlines to inserted text via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/*------------------------------------*\
  #BOX-SIZING
\*------------------------------------*/
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

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

/*------------------------------------*\
    #SHARED
\*------------------------------------*/
/**
 * Set basic typography that has far reach.
 * Applying default font sizes allows us to use REMs relative to what we define.
 */
html {
  /**
     * 16px is usually the browser default size
     * setting font-size to a pixel value here will
     * not allow users to set their browser font
     * so we set to (20/16) => 1.25rem => 20px and allow users
     * to override for accessibility
     */
  font-size: 1.25rem;
  line-height: 1.4; }

body {
  font-family: NexusSans, Arial, Helvetica, Lucida Sans Unicode, Microsoft Sans Serif, Segoe UI Symbol, STIXGeneral, Cambria Math, Arial Unicode MS, sans-serif;
  color: #323232;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/*------------------------------------*\
    #GRID
\*------------------------------------*/
*, *:after, *:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

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

.grid, .row {
  *zoom: 1; }
  .grid:before, .row:before, .grid:after, .row:after {
    content: " ";
    display: table; }
  .grid:after, .row:after {
    clear: both; }

.grid img {
  width: auto;
  max-width: 100%;
  height: auto; }

[class*='col-'] {
  float: left;
  width: 100%;
  min-height: 1px; }

/**
 * Responsive grid columns
 */
@media only screen and (min-width: 20em) {
  .col-xs-8, .row > .col-xs-8 {
    width: 33.33333%; }
  .col-xs-12, .row > .col-xs-12 {
    width: 50%; }
  .col-xs-18, .row > .col-xs-18 {
    width: 75%; }
  .col-xs-24, .row > .col-xs-24 {
    width: 100%; } }

@media only screen and (min-width: 36em) {
  .col-sm-2, .row > .col-sm-2 {
    width: 8.33333%; }
  .col-sm-8, .row > .col-sm-8 {
    width: 33.33333%; }
  .col-sm-16, .row > .col-sm-16 {
    width: 66.66667%; }
  .col-sm-20, .row > .col-sm-20 {
    width: 83.33333%; }
  .col-sm-24, .row > .col-sm-24 {
    width: 100%; } }

@media only screen and (min-width: 48em) {
  .col-md-2, .row > .col-md-2 {
    width: 8.33333%; }
  .col-md-8, .row > .col-md-8 {
    width: 33.33333%; }
  .col-md-24, .row > .col-md-24 {
    width: 100%; } }

@media only screen and (min-width: 62em) {
  .col-lg-6, .row > .col-lg-6 {
    width: 25%; }
  .col-lg-8, .row > .col-lg-8 {
    width: 33.33333%; }
  .col-lg-12, .row > .col-lg-12 {
    width: 50%; }
  .col-lg-16, .row > .col-lg-16 {
    width: 66.66667%; }
  .col-lg-18, .row > .col-lg-18 {
    width: 75%; }
  .col-lg-24, .row > .col-lg-24 {
    width: 100%; } }

@media only screen and (min-width: 75em) {
  .col-xl-3, .row > .col-xl-3 {
    width: 12.5%; }
  .col-xl-4, .row > .col-xl-4 {
    width: 16.66667%; }
  .col-xl-5, .row > .col-xl-5 {
    width: 20.83333%; } }

.move-left {
  float: left;
  left: 0; }

.move-right {
  float: right;
  right: 0; }

.move-top {
  position: absolute;
  top: 0; }

.move-bottom {
  position: absolute;
  bottom: 0; }

.move-middle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
  .move-middle.move-center {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

.move-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%); }
  .move-center.move-middle {
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }

 .modal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

/*------------------------------------*\
    #HEADINGS
\*------------------------------------*/
/* Preconfigure these settings before the @import of this file. */
h1,
h2,
h3 {
  font-weight: normal; }

h5 {
  font-weight: bold; }

h1 {
  font-size: 28px;
  font-size: 1.4rem;
  line-height: 1.333;
  color: #505050; }

h2 {
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1.333;
  color: #505050; }

h3 {
  font-size: 20px;
  font-size: 1rem;
  line-height: 1.333; }

h5 {
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1.4; }

@media only screen and (min-width: 36em) {
  h1 {
    font-size: 36px;
    font-size: 1.8rem;
    line-height: 1.333;
    color: #505050; }
  h2 {
    font-size: 30px;
    font-size: 1.5rem;
    line-height: 1.333;
    color: #505050; }
  h3 {
    font-size: 24px;
    font-size: 1.2rem;
    line-height: 1.333;
    color: #505050; }
  h5 {
    font-size: 16px;
    font-size: 0.8rem;
    line-height: 1.4; } }

/*------------------------------------*\
    #DIVIDERS
\*------------------------------------*/
.hor-line {
  border-bottom: 0.1rem solid #DCDCDC; }

/*------------------------------------*\
    #LISTS
\*------------------------------------*/
/**
 * branded base styles.
*/
.branded ul {
  list-style: none;
  margin: .5em 0; }
  .branded ul > li {
    padding-left: 1.6em; }
    .branded ul > li::before {
      margin: .45em 0 0 -1em;
      content: '';
      display: block;
      float: left;
      width: .35em;
      height: .35em;
      background-color: #e9711c;
      border-radius: 50%; }

.branded ol {
  list-style-type: none;
  margin: .5em 0;
  counter-reset: item; }
  .branded ol > li {
    padding-left: 1.7em;
    counter-increment: item; }
    .branded ol > li::before {
      margin: 0.25em 0 0 -1.4em;
      content: counter(item, decimal) ".";
      display: block;
      float: left;
      color: #e9711c;
      font-size: 0.8em;
      font-weight: bold; }

/**
 * List tags.
 *
 * Useful when you want to turn an unordered list into a comma seperated inline list.
 * <ul class="list-tags><li class="list-tags-item">List item</li>...</ul>
 *
 */

/*------------------------------------*\
    #ANCHORS
\*------------------------------------*/
/**
 * branded base styles.
*/
.branded a {
  color: #007398;
  -webkit-transition: color 0.3s ease, border-bottom-color 0.3s ease;
  -o-transition: color 0.3s ease, border-bottom-color 0.3s ease;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  text-decoration: none;
  border-bottom: 2px solid transparent; }
  .branded a:link, .branded a:visited {
    color: #007398;
    border-bottom: 2px solid transparent; }
  .branded a:active, .branded a:focus, .branded a:hover {
    cursor: pointer;
    color: #e9711c;
    border-bottom-color: #e9711c; }

/*------------------------------------*\
    #PANEL

    All @extend classes are self-contained (they do not extend classes from outside this file)
\*------------------------------------*/
.container, .panel, .panel-s {
  position: relative;
  overflow: auto; }

.panel, .panel-s {
  background: #F5F5F5;
  overflow: auto; }
  .panel:not(.panel-s):not(.panel-m):not(.panel-l):not(.panel-m):not(.panel-l), .panel-s:not(.panel-s):not(.panel-m):not(.panel-l):not(.panel-m):not(.panel-l) {
    padding: 32px; }

.panel-s {
  padding: 16px; }

.button-alternative {
  background-color: transparent;
  border: none;
  text-decoration: none;
  font-family: inherit; }
  .button-alternative svg.icon {
    border: 2px solid;
    padding: 2px;
    -webkit-transition: background-color .3s, border-color .3s, color .3s, fill .3s;
    -o-transition: background-color .3s, border-color .3s, color .3s, fill .3s;
    transition: background-color .3s, border-color .3s, color .3s, fill .3s;
    vertical-align: middle; }
    .button-alternative svg.icon:first-child {
      margin-right: 8px; }
    .button-alternative svg.icon:last-child {
      margin-left: 8px; }
    .button-alternative svg.icon:only-child {
      margin: 0; }
  .button-alternative-text {
    color: #323232;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    vertical-align: middle; }
  .button-alternative-primary svg.icon {
    background-color: #007398;
    border-color: #007398;
    fill: #ffffff; }
  .button-alternative-secondary svg.icon {
    background-color: #ffffff;
    border-color: #007398;
    fill: #007398; }
  .button-alternative-tertiary svg.icon {
    background-color: #ffffff;
    border-color: #B9B9B9;
    fill: #007398; }
  .button-alternative:hover, .button-alternative:focus {
    cursor: pointer; }
  .button-alternative:disabled {
    cursor: default; }
  .button-alternative:hover:not(:disabled) svg.icon, .button-alternative:active:not(:disabled) svg.icon, .button-alternative:focus:not(:disabled) svg.icon {
    background-color: #e9711c;
    border: 2px solid #e9711c;
    fill: #ffffff; }
  .button-alternative:hover:not(:disabled) .button-alternative-text, .button-alternative:active:not(:disabled) .button-alternative-text, .button-alternative:focus:not(:disabled) .button-alternative-text {
    color: #e9711c; }
  .button-alternative-primary:disabled svg.icon {
    background-color: #B9B9B9;
    border-color: #B9B9B9;
    fill: #ffffff; }
  .button-alternative-secondary:disabled svg.icon,
  .button-alternative-tertiary:disabled svg.icon {
    background-color: #ffffff;
    border-color: #B9B9B9;
    fill: #B9B9B9; }
  .button-alternative:disabled .button-alternative-text {
    color: #B9B9B9; }

.anchor {
  color: #007398;
  -webkit-transition: color 0.3s ease, border-bottom-color 0.3s ease;
  -o-transition: color 0.3s ease, border-bottom-color 0.3s ease;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  text-decoration: none; }
  .anchor:active, .anchor:focus, .anchor:hover {
    cursor: pointer;
    color: #e9711c; }
    .anchor:active .anchor-text, .anchor:focus .anchor-text, .anchor:hover .anchor-text {
      border-bottom: 2px solid #e9711c; }
  .anchor svg.icon {
    fill: currentColor;
    vertical-align: middle; }
    .anchor svg.icon:first-child {
      margin-right: .5rem; }
    .anchor svg.icon:last-child {
      margin-left: .5rem; }
    .anchor svg.icon:only-child {
      margin: 0; }
  .anchor-text {
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom-color .3s;
    -o-transition: border-bottom-color .3s;
    transition: border-bottom-color .3s; }
  .anchor-external-link::after {
    content: ' \2197';
    opacity: 0.6;
    speak: none; }
  .anchor-has-inherit-color {
    color: inherit; }
  .anchor-has-background-color:active, .anchor-has-background-color:focus, .anchor-has-background-color:hover {
    cursor: pointer;
    color: inherit; }
    .anchor-has-background-color:active .anchor-text, .anchor-has-background-color:focus .anchor-text, .anchor-has-background-color:hover .anchor-text {
      border-bottom: 2px solid currentColor; }
  .anchor-has-colored-icon svg.icon {
    fill: #007398; }
  .anchor-has-colored-icon:active svg.icon, .anchor-has-colored-icon:focus svg.icon, .anchor-has-colored-icon:hover svg.icon {
    fill: #e9711c; }
  .anchor[aria-disabled="true"] {
    cursor: default;
    color: #B9B9B9 !important; }
    .anchor[aria-disabled="true"] svg.icon {
      fill: #B9B9B9 !important; }
    .anchor[aria-disabled="true"] .anchor-text {
      -webkit-transition: all 0s ease 0s;
      -o-transition: all 0s ease 0s;
      transition: all 0s ease 0s; }
    .anchor[aria-disabled="true"]:active .anchor-text, .anchor[aria-disabled="true"]:focus .anchor-text, .anchor[aria-disabled="true"]:hover .anchor-text {
      border-bottom: none; }

.button-link {
  background-color: transparent;
  border: none;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-family: inherit; }
  .button-link:active, .button-link:focus, .button-link:hover {
    color: #e9711c;
    cursor: pointer; }
    .button-link:active .button-link-text, .button-link:focus .button-link-text, .button-link:hover .button-link-text {
      border-bottom: 2px solid #e9711c; }
    .button-link:active svg.icon, .button-link:focus svg.icon, .button-link:hover svg.icon {
      fill: currentColor; }
  .button-link:disabled {
    color: #B9B9B9;
    cursor: default; }
    .button-link:disabled .button-link-text {
      border-bottom: none; }
    .button-link:disabled svg.icon {
      fill: currentColor; }
  .button-link svg.icon {
    fill: #007398;
    vertical-align: middle;
    -webkit-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
    transition: fill 0.3s ease; }
    .button-link svg.icon:first-child {
      margin-right: 8px; }
    .button-link svg.icon:last-child {
      margin-left: 8px; }
    .button-link svg.icon:only-child {
      margin: 0; }
  .button-link-text {
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom-color 0.3s ease;
    -o-transition: border-bottom-color 0.3s ease;
    transition: border-bottom-color 0.3s ease;
    vertical-align: middle; }
  .button-link-primary {
    color: #323232; }
  .button-link-secondary {
    color: #007398; }

.checkbox-label:hover .checkbox-check {
  border: 2px solid #505050; }
  .is-disabled .checkbox-label:hover .checkbox-check {
    border-color: #B9B9B9; }

.is-disabled .checkbox-label {
  color: #B9B9B9; }

.checkbox-input {
  opacity: 0;
  position: absolute; }
  .checkbox-input:focus + .checkbox-check {
    border: 2px solid #505050; }
  .checkbox-input:checked + .checkbox-check::after {
    border-color: #e9711c #e9711c #ffffff #ffffff; }
    .is-disabled .checkbox-input:checked + .checkbox-check::after {
      border-color: #B9B9B9; }
  .checkbox-input:checked + .checkbox-check.partial::after {
    border-color: #ffffff #e9711c #ffffff #ffffff; }

.checkbox-check {
  cursor: pointer;
  display: inline-block;
  position: relative;
  -webkit-transition: border ease .3s;
  -o-transition: border ease .3s;
  transition: border ease .3s;
  border: 2px solid #B9B9B9;
  background-color: #ffffff;
  width: 24px;
  height: 24px;
  line-height: 24px; }
  .checkbox-check::after {
    display: inline-block;
    position: relative;
    vertical-align: top;
    left: 4px;
    top: 4px;
    -webkit-transition: border-color .3s;
    -o-transition: border-color .3s;
    transition: border-color .3s;
    border-width: 12px 12px 0 0;
    border-style: solid;
    border-color: #ffffff;
    background-color: #ffffff;
    content: ''; }
  .checkbox-check.checkbox-label-indent {
    vertical-align: top;
    margin-right: -30px; }
  .is-disabled .checkbox-check {
    cursor: default; }

.checkbox-label-value {
  margin-left: 8px;
  cursor: pointer;
  font-size: 1rem;
  vertical-align: middle; }
  .checkbox-label-value.checkbox-label-indent {
    display: inline-block;
    margin-left: 38px;
    margin-right: -30px; }
  .is-disabled .checkbox-label-value {
    cursor: default; }

.checkbox-small.checkbox-label-value {
  font-size: 0.8rem; }

.checkbox-small.checkbox-check {
  width: 20px;
  height: 20px;
  line-height: 20px; }
  .checkbox-small.checkbox-check::after {
    top: 3px;
    left: 3px;
    border-width: 10px 10px 0 0; }

.tab-list {
  border-bottom: 2px solid #DCDCDC;
  padding: 0;
  margin-bottom: 0.8rem;
  width: 100%;
  line-height: 1.2; }

.tab {
  display: inline-block;
  list-style: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  margin-right: 1.6rem;
  -webkit-transition: border-color 0.3s, color 0.3s;
  -o-transition: border-color 0.3s, color 0.3s;
  transition: border-color 0.3s, color 0.3s;
  color: #505050;
  font-size: 1.25rem;
  font-weight: normal; }
  .tab button {
    cursor: pointer; }
  .tab:after {
    display: block;
    content: '';
    height: 2px;
    background-color: transparent;
    margin-bottom: -2px;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s; }
  .tab.tab-is-selected:after {
    background-color: #e9711c; }
  .tab.tab-is-disabled {
    border-bottom-color: transparent;
    cursor: default; }
    .tab.tab-is-disabled .tab-title {
      color: #B9B9B9; }

.tab-title {
  font-family: inherit;
  display: block;
  padding: 0 0 0.45rem 0;
  color: inherit;
  background-color: transparent;
  border: 0;
  text-decoration: none; }
  .tab-title:hover:not([disabled]), .tab-title:focus:not([disabled]) {
    color: #e9711c; }
    .tab-title:hover:not([disabled]):after, .tab-title:focus:not([disabled]):after {
      background-color: #e9711c; }

.tab-panel {
  display: none; }
  .tab-panel.tab-panel-is-selected, .tab-panel.tab-panel-force-rendered {
    display: block; }

.tabs-container {
  overflow: hidden; }

.tablist-container {
  position: relative;
  margin-bottom: 0.8rem;
  padding: 0 1.6rem; }

.tablist-container:after {
  border-bottom: solid 2px #DCDCDC;
  display: block;
  content: '';
  margin-top: -2px; }

.tab-list[class*='responsive-to-'] {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 2px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }

.tabs-control {
  position: absolute;
  top: 2px;
  background-color: #ffffff;
  padding: 0 0.8rem; }

.tabs-control-back {
  left: 0;
  padding-left: 0; }

.tabs-control-next {
  right: 0;
  padding-right: 0; }

.accordion-container .accordion-panel-title {
  display: block;
  width: 100%;
  background-color: transparent;
  font-family: inherit;
  padding-right: 2rem;
  border-bottom: 2px solid transparent;
  position: relative;
  border: 0;
  cursor: pointer; }
  .accordion-container .accordion-panel-title span {
    color: #323232; }
  .accordion-container .accordion-panel-title:hover span, .accordion-container .accordion-panel-title:active span, .accordion-container .accordion-panel-title:focus span {
    color: #e9711c;
    text-decoration: underline; }
  .accordion-container .accordion-panel-title:hover .accordion-icon, .accordion-container .accordion-panel-title:active .accordion-icon, .accordion-container .accordion-panel-title:focus .accordion-icon {
    fill: #e9711c; }

.accordion-container .accordion-panel {
  list-style: none;
  max-width: none;
  border-bottom: 2px solid #EBEBEB; }
  .accordion-container .accordion-panel:first-child {
    border-top: 2px solid #EBEBEB; }

.accordion-container .accordion-icon {
  position: absolute;
  right: 0.3rem;
  top: 0.8rem;
  fill: #007398; }

.accordion-container .accordion-icon.navigate-up {
  fill: #e9711c; }

.pagination :last-child {
  margin-right: 0; }

.pagination-button {
  font-family: NexusSans, Arial, Helvetica, Lucida Sans Unicode, Microsoft Sans Serif, Segoe UI Symbol, STIXGeneral, Cambria Math, Arial Unicode MS, sans-serif;
  background-color: transparent;
  border: none;
  margin-right: 16px;
  padding: 0;
  height: 32px;
  cursor: pointer; }
  .pagination-button svg.icon {
    -webkit-transition: background-color .3s, border-color .3s, fill .3s ease;
    -o-transition: background-color .3s, border-color .3s, fill .3s ease;
    transition: background-color .3s, border-color .3s, fill .3s ease;
    border: 2px solid #969696;
    padding: 2px;
    width: 32px;
    height: 32px;
    fill: #007398;
    vertical-align: middle; }
  .pagination-button .pagination-label {
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
    color: #323232;
    vertical-align: middle;
    margin: 0 8px; }
  .pagination-button:hover .pagination-label {
    color: #e9711c; }
  .pagination-button:hover svg.icon {
    background-color: #e9711c;
    border-color: #e9711c;
    fill: #ffffff; }

.pagination-button[disabled] {
  cursor: default; }
  .pagination-button[disabled] .pagination-label {
    color: #B9B9B9; }
  .pagination-button[disabled] svg.icon {
    border-color: #B9B9B9;
    background-color: transparent;
    fill: #B9B9B9; }

.pagination-pages-label {
  color: #323232;
  margin-right: 16px; }

.button {
  border: 2px solid;
  display: inline-block;
  font-family: inherit;
  height: 40px;
  line-height: 40px;
  margin: 0;
  overflow: hidden;
  padding: 0 16px;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  /* primary */
  /* secondary */
  /* tertiary */
  /* warning */
  /* states */ }
  .button svg.icon {
    fill: currentColor;
    vertical-align: middle;
    -webkit-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
    transition: fill 0.3s ease; }
    .button svg.icon:first-child {
      margin-right: 8px; }
    .button svg.icon:last-child {
      margin-left: 8px; }
    .button svg.icon:only-child {
      margin: 0; }
  .button-text {
    border-bottom: none;
    -webkit-transition: border-bottom-color 0.3s ease, color 0.3s;
    -o-transition: border-bottom-color 0.3s ease, color 0.3s;
    transition: border-bottom-color 0.3s ease, color 0.3s;
    vertical-align: middle; }
  .button-primary {
    background-color: #007398;
    border-color: #007398;
    color: #ffffff; }
  .button-secondary {
    background-color: #ffffff;
    border-color: #007398;
    color: #323232; }
  .button-secondary svg.icon {
    fill: #007398; }
  .button-tertiary {
    background-color: #ffffff;
    border-color: #B9B9B9;
    color: #323232; }
  .button-tertiary svg.icon {
    fill: #007398; }
  .button-warning {
    background-color: #C83727;
    border-color: #C83727;
    color: #ffffff; }
  .button-anchor {
    border-color: transparent;
    background-color: transparent;
    color: #007398; }
    .button-anchor:disabled {
      color: #B9B9B9; }
  .button:hover, .button:focus {
    cursor: pointer; }
  .button-primary:hover:not(:disabled), .button-secondary:hover:not(:disabled), .button-tertiary:hover:not(:disabled), .button-warning:hover:not(:disabled), .button-primary:focus:not(:disabled), .button-secondary:focus:not(:disabled), .button-tertiary:focus:not(:disabled), .button-warning:focus:not(:disabled) {
    border-color: #e9711c;
    background-color: #e9711c; }
  .button-primary:hover:not(:disabled) svg.icon,
  .button-secondary:hover:not(:disabled) svg.icon,
  .button-tertiary:hover:not(:disabled) svg.icon,
  .button-warning:hover:not(:disabled) svg.icon,
  .button-primary:focus:not(:disabled) svg.icon,
  .button-secondary:focus:not(:disabled) svg.icon,
  .button-tertiary:focus:not(:disabled) svg.icon,
  .button-warning:focus:not(:disabled) svg.icon {
    fill: #ffffff; }
  .button-anchor:hover:not(:disabled) svg.icon,
  .button-anchor:focus:not(:disabled) svg.icon {
    fill: #e9711c; }
  .button-primary:hover:not(:disabled) .button-text,
  .button-secondary:hover:not(:disabled) .button-text,
  .button-tertiary:hover:not(:disabled) .button-text,
  .button-warning:hover:not(:disabled) .button-text,
  .button-primary:focus:not(:disabled) .button-text,
  .button-secondary:focus:not(:disabled) .button-text,
  .button-tertiary:focus:not(:disabled) .button-text,
  .button-warning:focus:not(:disabled) .button-text {
    color: #ffffff; }
  .button-anchor:hover:not(:disabled) .button-text {
    color: #e9711c;
    border-bottom: 2px solid #e9711c; }
  .button-anchor:focus:not(:disabled) .button-text {
    color: #e9711c; }
  .button:disabled {
    cursor: default; }
  .button-primary:disabled, .button-warning:disabled {
    background-color: #B9B9B9;
    border-color: #B9B9B9; }
  .button-secondary:disabled {
    background-color: #ffffff;
    border-color: #B9B9B9;
    color: #B9B9B9; }
    .button-secondary:disabled svg.icon {
      fill: #ffffff; }
  .button-secondary:disabled svg.icon,
  .button-tertiary:disabled svg.icon {
    fill: #B9B9B9; }
  .button-tertiary:disabled {
    background-color: #ffffff;
    border-color: #B9B9B9;
    color: #B9B9B9; }

@-webkit-keyframes icon-spinner-anim {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes icon-spinner-anim {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.icon-spinner > rect {
  -webkit-animation: icon-spinner-anim .4s linear 0s infinite;
          animation: icon-spinner-anim .4s linear 0s infinite; }
  .icon-spinner > rect:nth-of-type(2) {
    -webkit-animation-delay: -.4s;
            animation-delay: -.4s; }
  .icon-spinner > rect:nth-of-type(3) {
    -webkit-animation-delay: -.35s;
            animation-delay: -.35s; }
  .icon-spinner > rect:nth-of-type(4) {
    -webkit-animation-delay: -.3s;
            animation-delay: -.3s; }
  .icon-spinner > rect:nth-of-type(5) {
    -webkit-animation-delay: -.25s;
            animation-delay: -.25s; }
  .icon-spinner > rect:nth-of-type(6) {
    -webkit-animation-delay: -.2s;
            animation-delay: -.2s; }
  .icon-spinner > rect:nth-of-type(7) {
    -webkit-animation-delay: -.15s;
            animation-delay: -.15s; }
  .icon-spinner > rect:nth-of-type(8) {
    -webkit-animation-delay: -.1s;
            animation-delay: -.1s; }
  .icon-spinner > rect:nth-of-type(9) {
    -webkit-animation-delay: -.05s;
            animation-delay: -.05s; }
  .icon-spinner > rect:nth-of-type(10) {
    -webkit-animation: none;
            animation: none; }

.modal {
  border: 0.8rem solid rgba(220, 220, 220, 0.5);
  min-width: 14.4rem; }
  .modal:active, .modal:focus, .modal:hover {
    outline: 0; }
  .modal-content {
    border-top: 2px solid #e9711c; }
  .modal-close-button {
    -webkit-transition: fill .3s;
    -o-transition: fill .3s;
    transition: fill .3s;
    fill: currentColor; }
    .modal-close-button svg.icon {
      margin: 0; }
    .modal-close-button:active, .modal-close-button:focus, .modal-close-button:hover {
      color: #e9711c; }
  .modal-overlay {
    background-color: rgba(235, 235, 235, 0.85);
    z-index: 1000;
    position: fixed; }

.text-input .text-input-container {
  position: relative;
  min-height: 3em; }
  .text-input .text-input-container-no-label {
    min-height: 1.6em; }
    .text-input .text-input-container-no-label .text-input-field {
      top: 0;
      padding: 0 0 4px 0; }

.text-input-field {
  border: none;
  border-bottom: 2px solid #DCDCDC;
  position: relative;
  top: 20px;
  color: #505050;
  display: inline-block;
  padding: 12px 0;
  height: 100%;
  padding-bottom: 4px;
  outline: 0;
  -webkit-transition: border-bottom .4s ease-out;
  -o-transition: border-bottom .4s ease-out;
  transition: border-bottom .4s ease-out;
  width: 100%;
  font-family: inherit; }
  .text-input-field:focus {
    color: #000000;
    border-color: #505050; }
  .text-input-field:hover {
    border-color: #505050; }
  .text-input-field:focus + .text-input-label,
  .text-input-field.text-input-has-value + .text-input-label {
    top: 5px; }
  .text-input-field.text-input-animation-off + .text-input-label {
    top: 5px; }
  .text-input-field:disabled {
    border-bottom: 2px dotted #DCDCDC;
    background-color: transparent; }
    .text-input-field:disabled + .text-input-label {
      cursor: default;
      color: #DCDCDC; }

.text-input-error, .text-input-error:focus {
  border-color: #C83727; }

.text-input-label {
  top: 25px;
  color: #007398;
  cursor: pointer;
  display: block;
  height: 30px;
  margin: 0;
  position: absolute;
  -webkit-transition: bottom .2s,font-size .2s, top .2s;
  -o-transition: bottom .2s,font-size .2s, top .2s;
  transition: bottom .2s,font-size .2s, top .2s; }

.text-input-error-message {
  color: #C83727;
  font-size: 0.8rem; }

.text-input-hint {
  color: #B9B9B9;
  font-size: 0.8rem; }

.search-input .search-input-container, .adv-form .PublicationAutoSuggestInput .react-autosuggest__container .search-input-container {
  position: relative;
  min-height: 3em; }
  .search-input .search-input-container-no-label, .adv-form .PublicationAutoSuggestInput .react-autosuggest__container .search-input-container-no-label {
    min-height: 1.6em; }
    .search-input .search-input-container-no-label .search-input-field, .adv-form .PublicationAutoSuggestInput .react-autosuggest__container .search-input-container-no-label .search-input-field, .search-input .search-input-container-no-label .adv-form .PublicationAutoSuggestInput input, .adv-form .PublicationAutoSuggestInput .search-input .search-input-container-no-label input, .adv-form .PublicationAutoSuggestInput .react-autosuggest__container .search-input-container-no-label input {
      top: 0;
      padding: 0 0 4px 0; }

.search-input-field, .adv-form .PublicationAutoSuggestInput input {
  border: none;
  border-bottom: 2px solid #DCDCDC;
  position: relative;
  top: 20px;
  color: #505050;
  display: inline-block;
  padding: 12px 0;
  height: 100%;
  padding-bottom: 4px;
  outline: 0;
  -webkit-transition: border-bottom .4s ease-out;
  -o-transition: border-bottom .4s ease-out;
  transition: border-bottom .4s ease-out;
  width: 100%;
  font-family: inherit; }
  .search-input-field:focus ~ .search-input-clear, .adv-form .PublicationAutoSuggestInput input:focus ~ .search-input-clear,
  .search-input-field:hover ~ .search-input-clear,
  .adv-form .PublicationAutoSuggestInput input:hover ~ .search-input-clear {
    display: block; }
  .search-input-field-with-clear {
    padding-right: 20px; }
  .search-input-field:focus, .adv-form .PublicationAutoSuggestInput input:focus {
    color: #000000;
    border-color: #505050; }
  .search-input-field:hover, .adv-form .PublicationAutoSuggestInput input:hover {
    border-color: #505050; }
  .search-input-field:focus + .search-input-label, .adv-form .PublicationAutoSuggestInput input:focus + .search-input-label,
  .search-input-field.search-input-has-value + .search-input-label,
  .adv-form .PublicationAutoSuggestInput input.search-input-has-value + .search-input-label {
    top: 5px; }
  .search-input-field.search-input-animation-off + .search-input-label, .adv-form .PublicationAutoSuggestInput input.search-input-animation-off + .search-input-label {
    top: 5px; }
  .search-input-field:disabled, .adv-form .PublicationAutoSuggestInput input:disabled {
    border-bottom: 2px dotted #DCDCDC;
    background-color: transparent; }
    .search-input-field:disabled + .search-input-label, .adv-form .PublicationAutoSuggestInput input:disabled + .search-input-label {
      cursor: default;
      color: #DCDCDC; }
  .search-input-field::-ms-clear, .adv-form .PublicationAutoSuggestInput input::-ms-clear {
    display: none; }

.search-input-error, .search-input-error:focus {
  border-color: #C83727; }

.search-input-label {
  top: 25px;
  color: #007398;
  cursor: pointer;
  display: block;
  height: 30px;
  margin: 0;
  position: absolute;
  -webkit-transition: bottom .2s,font-size .2s, top .2s;
  -o-transition: bottom .2s,font-size .2s, top .2s;
  transition: bottom .2s,font-size .2s, top .2s; }

.search-input-clear {
  display: none;
  position: absolute;
  top: 30px;
  right: 0; }
  .search-input-clear .icon {
    margin: 0 !important; }
  .search-input-clear:hover, .search-input-clear:focus {
    display: block; }

.search-input-error-message {
  color: #C83727;
  font-size: 0.8rem; }

.search-input-hint {
  color: #B9B9B9;
  font-size: 0.8rem; }

.alert {
  background-color: transparent;
  clear: both; }
  .alert-text {
    display: inline-block;
    margin-left: 40px;
    padding-top: 3px;
    color: #323232; }

.alert-icon-box {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding: 4px;
  vertical-align: top;
  margin-right: -32px; }

.popover {
  position: relative;
  display: inline-block; }

.popover-content {
  position: absolute;
  margin-top: 16px;
  z-index: 9999;
  padding: 16px;
  border-top: solid 2px #e9711c;
  background: rgba(235, 235, 235, 0.85); }
  .popover-content.popover-align-left {
    left: 0; }
    .popover-content.popover-align-left.popover-align-left:before {
      content: '';
      position: absolute;
      left: 0;
      top: -16px;
      border-right: 16px solid transparent;
      border-bottom: 16px solid #e9711c; }
    .popover-content.popover-align-left.popover-align-left:after {
      content: '';
      position: absolute;
      left: 0;
      top: -13px;
      border-right: 14px solid transparent;
      border-bottom: 14px solid #ebebeb; }
  .popover-content.popover-align-right {
    right: 0; }
    .popover-content.popover-align-right.popover-align-right:before {
      content: '';
      position: absolute;
      right: 0;
      top: -16px;
      border-left: 16px solid transparent;
      border-bottom: 16px solid #e9711c; }
    .popover-content.popover-align-right.popover-align-right:after {
      content: '';
      position: absolute;
      right: 0;
      top: -13px;
      border-left: 14px solid transparent;
      border-bottom: 14px solid #ebebeb; }

.popover-content-inner {
  background: #ffffff;
  padding: 28px 16px; }

.popover-button-close {
  position: relative;
  right: 0; }
  .popover-button-close svg.icon {
    fill: #505050; }

.badge-info, .badge-success, .badge-warning {
  display: inline-block;
  font-weight: normal;
  border-radius: 10px;
  line-height: 0 !important; }

.badge-sm {
  font-size: 10px;
  font-size: 0.5rem;
  line-height: 2.8;
  padding: 8px 5px; }

.badge-md {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 2;
  padding: 10px 7px; }

.badge-info {
  color: #000000;
  background: #44C6F4; }

.badge-success {
  color: #ffffff;
  background: #29A61B; }

.badge-warning {
  color: #ffffff;
  background: #C83727; }

.show-more-icon {
  -webkit-transition: color .3s, -webkit-transform .3s;
  transition: color .3s, -webkit-transform .3s;
  -o-transition: color .3s, transform .3s;
  transition: color .3s, transform .3s;
  transition: color .3s, transform .3s, -webkit-transform .3s; }
  .show-more-icon.active {
    -webkit-transform: scale(-1);
            transform: scale(-1);
    -ms-transform: scale(-1); }

/* mixin for multiline */
.is-truncated-content {
  overflow: hidden;
  position: relative;
  line-height: 1.4em;
  max-height: 4.2em;
  margin-right: -1em;
  padding-right: 1em; }
  .is-truncated-content:before {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0; }
  .is-truncated-content:after {
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: white; }

.switch-label:hover .switch-check {
  border-color: #505050; }
  .is-disabled .switch-label:hover .switch-check {
    border-color: #B9B9B9; }

.is-disabled .switch-label {
  color: #B9B9B9; }

.switch-input {
  opacity: 0;
  position: absolute; }
  .switch-input:focus + .switch-check,
  .switch-input:hover + .switch-check {
    border-color: #e9711c; }
  .switch-input:checked + .switch-check::after {
    left: 4px;
    top: 4px;
    border-width: 6px;
    border-color: #e9711c;
    -webkit-transform: translateX(22px);
        -ms-transform: translateX(22px);
            transform: translateX(22px); }
    .is-disabled .switch-input:checked + .switch-check::after {
      border-color: #B9B9B9; }

.switch-check {
  cursor: pointer;
  display: inline-block;
  position: relative;
  -webkit-transition: border ease .3s;
  -o-transition: border ease .3s;
  transition: border ease .3s;
  border: 2px solid #B9B9B9;
  border-radius: 12px;
  background-color: #ffffff;
  width: 48px;
  height: 24px;
  line-height: 24px; }
  .switch-check::after {
    display: inline-block;
    position: relative;
    vertical-align: top;
    left: 6px;
    top: 6px;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    border-radius: 50%;
    border-width: 4px;
    border-style: solid;
    border-color: #B9B9B9;
    background-color: #B9B9B9;
    content: ''; }
  .is-disabled .switch-check {
    cursor: default; }

.switch-label-value {
  margin-left: 8px;
  cursor: pointer;
  font-size: 1rem;
  vertical-align: middle; }
  .is-disabled .switch-label-value {
    cursor: default; }

.InputDropdown {
  border-bottom: 2px solid #DCDCDC;
  height: 60px; }
  .InputDropdown .value {
    float: left;
    width: calc(100% - 40px); }
    .InputDropdown .value .search-input-field, .InputDropdown .value .adv-form .PublicationAutoSuggestInput input, .adv-form .PublicationAutoSuggestInput .InputDropdown .value input {
      outline: none;
      border-bottom: none;
      cursor: pointer; }
  .InputDropdown .options-list-container {
    position: relative;
    visibility: hidden; }
    .InputDropdown .options-list-container.isVisible {
      visibility: visible; }
  .InputDropdown .options-list {
    position: absolute;
    top: 58px;
    margin: 0;
    border: 1px solid #B9B9B9;
    border-top: 2px solid #505050;
    background: #ffffff;
    padding: 0;
    width: 100%;
    z-index: 1; }
    .InputDropdown .options-list .option-item {
      cursor: pointer;
      padding: 8px;
      height: 40px;
      list-style: none;
      font-size: .8rem;
      font-weight: 300; }
      .InputDropdown .options-list .option-item:hover .options-item-text, .InputDropdown .options-list .option-item.isCurrent .options-item-text {
        border-bottom: 2px solid #e9711c;
        color: #e9711c; }
  .InputDropdown .button {
    position: relative;
    top: 20px;
    float: right;
    padding: 0 4px;
    width: 32px;
    height: 32px; }
    .InputDropdown .button svg {
      margin-right: 0 !important;
      vertical-align: inherit; }
  .InputDropdown.fancy {
    margin: 0 -16px -16px;
    border: none;
    background: rgba(220, 220, 220, 0.5);
    padding: 0 16px; }
    .InputDropdown.fancy .search-input-container input {
      background: transparent; }
    .InputDropdown.fancy .options-list-container .options-list {
      top: 60px;
      margin-left: -16px;
      border: none;
      background: rgba(220, 220, 220, 0.5);
      padding: 16px;
      padding-top: 0;
      width: calc(100% + 32px);
      z-index: 1; }
      .InputDropdown.fancy .options-list-container .options-list li {
        background: #ffffff; }
        .InputDropdown.fancy .options-list-container .options-list li:first-child {
          border-top: 2px solid #e9711c; }
    .InputDropdown.fancy .button.options-visible {
      border-color: #e9711c;
      background-color: #e9711c; }
      .InputDropdown.fancy .button.options-visible svg {
        fill: #ffffff; }

.with-loading-state svg.icon.icon-spinner {
  vertical-align: middle;
  margin: 0; }

.with-loading-state.is-complete-default {
  background-color: #29A61B;
  border-color: #29A61B; }

.with-loading-state.is-active {
  cursor: default; }

.u-padding-0 {
  padding: 0px !important; }

.u-padding-0-hor {
  padding-right: 0px !important;
  padding-left: 0px !important; }

.u-margin-0-right {
  margin-right: 0px !important; }

.u-padding-xs-ver {
  padding-top: 8px !important;
  padding-bottom: 8px !important; }

.u-margin-xs-ver {
  margin-top: 8px !important;
  margin-bottom: 8px !important; }

.u-padding-xs-top {
  padding-top: 8px !important; }

.u-margin-xs-top {
  margin-top: 8px !important; }

.u-margin-xs-right {
  margin-right: 8px !important; }

.u-padding-xs-bottom {
  padding-bottom: 8px !important; }

.u-margin-xs-bottom {
  margin-bottom: 8px !important; }

.u-margin-xs-left {
  margin-left: 8px !important; }

.u-margin-s {
  margin: 16px !important; }

.u-padding-s-ver {
  padding-top: 16px !important;
  padding-bottom: 16px !important; }

.u-margin-s-ver {
  margin-top: 16px !important;
  margin-bottom: 16px !important; }

.u-padding-s-hor {
  padding-right: 16px !important;
  padding-left: 16px !important; }

.u-margin-s-hor {
  margin-right: 16px !important;
  margin-left: 16px !important; }

.u-margin-s-top {
  margin-top: 16px !important; }

.u-padding-s-right {
  padding-right: 16px !important; }

.u-margin-s-right {
  margin-right: 16px !important; }

.u-margin-s-bottom {
  margin-bottom: 16px !important; }

.u-margin-s-left {
  margin-left: 16px !important; }

.u-padding-l-hor {
  padding-right: 32px !important;
  padding-left: 32px !important; }

.u-margin-l-hor {
  margin-right: 32px !important;
  margin-left: 32px !important; }

.u-padding-l-top {
  padding-top: 32px !important; }

.u-margin-l-top {
  margin-top: 32px !important; }

.u-margin-l-right {
  margin-right: 32px !important; }

.u-padding-l-bottom {
  padding-bottom: 32px !important; }

.u-margin-l-bottom {
  margin-bottom: 32px !important; }

.u-padding-xxl-ver {
  padding-top: 48px !important;
  padding-bottom: 48px !important; }

@media only screen and (min-width: 20em) {
  .u-padding-0-hor-from-xs {
    padding-right: 0px !important;
    padding-left: 0px !important; } }

@media only screen and (min-width: 36em) {
  .u-margin-s-right-from-sm {
    margin-right: 16px !important; }
  .u-padding-l-hor-from-sm {
    padding-right: 32px !important;
    padding-left: 32px !important; }
  .u-margin-l-hor-from-sm {
    margin-right: 32px !important;
    margin-left: 32px !important; }
  .u-margin-l-left-from-sm {
    margin-left: 32px !important; } }

@media only screen and (min-width: 48em) {
  .u-padding-s-hor-from-md {
    padding-right: 16px !important;
    padding-left: 16px !important; }
  .u-margin-l-right-from-md {
    margin-right: 32px !important; } }

/*------------------------------------*\
    #COLORS
\*------------------------------------*/
/* DEFAULTS */
.u-clr-orange {
  color: #e9711c !important; }

.u-clr-black {
  color: #000000 !important; }

.u-clr-grey1 {
  color: #F5F5F5 !important; }

.u-clr-grey3 {
  color: #DCDCDC !important; }

.u-clr-grey4 {
  color: #B9B9B9 !important; }

.u-clr-grey5 {
  color: #969696 !important; }

.u-clr-grey7 {
  color: #505050 !important; }

.u-clr-grey8 {
  color: #323232 !important; }

.u-bg-info-blue {
  background-color: #009ECE !important; }

.u-bg-warning-red {
  background-color: #C83727 !important; }

.u-bg-green {
  background-color: #29A61B !important; }

.u-bg-white {
  background-color: #ffffff !important; }

.u-bg-black {
  background-color: #000000 !important; }

.u-bg-grey1 {
  background-color: #F5F5F5 !important; }

.u-bg-grey2 {
  background-color: #EBEBEB !important; }

.u-bg-grey7 {
  background-color: #505050 !important; }

.u-bg-grey8 {
  background-color: #323232 !important; }

.u-fill-orange {
  fill: #e9711c !important; }

.u-fill-blue {
  fill: #007398 !important; }

.u-fill-white {
  fill: #ffffff !important; }

.u-fill-black {
  fill: #000000 !important; }

.u-fill-grey1 {
  fill: #F5F5F5 !important; }

.u-fill-grey5 {
  fill: #969696 !important; }

.u-fill-grey7 {
  fill: #505050 !important; }

/*------------------------------------*\
    #TYPOGRAPHY
\*------------------------------------*/
.u-font-serif {
  font-family: NexusSerif, Georgia, Times New Roman, Times, STIXGeneral, Cambria Math, Lucida Sans Unicode, Microsoft Sans Serif, Segoe UI Symbol, Arial Unicode MS, serif !important; }

.u-font-sans {
  font-family: NexusSans, Arial, Helvetica, Lucida Sans Unicode, Microsoft Sans Serif, Segoe UI Symbol, STIXGeneral, Cambria Math, Arial Unicode MS, sans-serif !important; }

/**
 * Font size adjustments.
 *
 * Redefine our standard body font sizes using the following classes.
 *
     <p class="text-l">I am an p that with larger size than normal</p>
 *
 */
.text-xs {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.57; }

.text-s, .checkbox, .text-input-field:focus + .text-input-label,
.text-input-field.text-input-has-value + .text-input-label, .text-input-field.text-input-animation-off + .text-input-label, .search-input-field:focus + .search-input-label, .adv-form .PublicationAutoSuggestInput input:focus + .search-input-label,
.search-input-field.search-input-has-value + .search-input-label,
.adv-form .PublicationAutoSuggestInput input.search-input-has-value + .search-input-label, .search-input-field.search-input-animation-off + .search-input-label, .adv-form .PublicationAutoSuggestInput input.search-input-animation-off + .search-input-label, .switch {
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1.5; }

 .alert-text {
  font-size: 20px;
  font-size: 1rem;
  line-height: 1.4; }

.text-l {
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1.33;
  color: #505050; }

/**
 * Headings.
 *
 * Redefine our heading styles against utility classes. This gives us a double
 * stranded heading hierarchy whereby we can style one heading as another, e.g.:
 *
     <h4 class="u-h1">I am an H4 that is the same size as an H1</h4>
 *
 */

.u-h3 {
  font-size: 20px !important;
  font-size: 1rem !important;
  line-height: 1.333 !important;
  font-weight: normal !important; }

.u-h5 {
  font-size: 16px !important;
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  font-weight: bold !important; }

@media only screen and (min-width: 36em) {
  .u-h3 {
    font-size: 24px !important;
    font-size: 1.2rem !important;
    line-height: 1.333 !important;
    font-weight: normal !important;
    color: #505050; }
  .u-h5 {
    font-size: 16px !important;
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
    font-weight: bold !important; } }

/**
 * Adjustments.
 *
 * ‘Can you just make that text a little bigger?’
 *
 * Sure! Use these utilities to adjust the size of a span of text by a little
 * bit more, or a little bit less, e.g.:
 *
     <p class="u-text++">A little bit bigger.</p>
 *
 */

/**
 * Alignments.
 */

.u-text-left {
  text-align: left     !important; }

/**
 * Truncation.
 *
 * Cause long spans of text to truncate after running out of horizontal space.
 */

/**
 * Style.
 */
.u-text-italic {
  font-style: italic  !important; }

/*------------------------------------*\
    #DISPLAY
\*------------------------------------*/
/**
 * General helper classes for controlling display
 *
 * These are the basic classes you might need to apply to typical HTML content.
 * If you find yourself needing something like `table`, `table-cell`, `flex`,
 * etc., then you probably need a more complex object and shouldn't be using
 * utility classes in the first place.
 */
.u-display-none {
  display: none !important; }

.u-display-block {
  display: block !important; }

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

.u-position-relative {
  position: relative; }

/**
 * Clear boxes that contain floated elements
 */
.u-clearfix:after {
  content: "";
  display: table;
  clear: both; }

/**
 * Completely hide content from view and from screenreaders.
 */

/**
 * Hide content from view, but leave it accessible to screenreaders.
 *
 * https://github.com/twbs/bootstrap/blob/2085c142679563189dbc34ec6bf4b00e32b8f615/scss/mixins/_screen-reader.scss
 */
.u-hide-visually {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  border: 0 !important; }

/**
 * Make visually-hidden content visible on focus
 * Use in conjunction with .u-hide-visually to only display content when it's focused.
 */

@media only screen and (min-width: 20em) {
  .u-clear-both-from-xs {
    clear: both !important; } }

@media only screen and (min-width: 48em) {
  .u-clear-none-from-md {
    clear: none !important; } }

@media only screen and (min-width: 20em) {
  .u-float-left-from-xs {
    float: left !important; } }

@media only screen and (min-width: 48em) {
  .u-float-right-from-md {
    float: right !important; } }

/**
 * Flip a component vertically around the x-axis
 */

.u-show-from-sm {
  display: none !important; }
  @media only screen and (min-width: 36em) {
    .u-show-from-sm {
      display: block !important; } }

.u-show-from-md {
  display: none !important; }
  @media only screen and (min-width: 48em) {
    .u-show-from-md {
      display: block !important; } }

.u-show-from-lg {
  display: none !important; }
  @media only screen and (min-width: 62em) {
    .u-show-from-lg {
      display: block !important; } }

.u-show-inline-from-sm {
  display: none !important; }
  @media only screen and (min-width: 36em) {
    .u-show-inline-from-sm {
      display: inline !important; } }

@media only screen and (min-width: 36em) {
  .u-hide-from-sm {
    display: none !important; } }

@media only screen and (min-width: 48em) {
  .u-hide-from-md {
    display: none !important; } }

@media only screen and (min-width: 62em) {
  .u-hide-from-lg {
    display: none !important; } }

.SearchPage {
  -ms-overflow-style: none; }
  .SearchPage input,
  .SearchPage select,
  .SearchPage textarea,
  .SearchPage button {
    font-family: inherit; }
  .SearchPage a {
    text-decoration: none;
    color: #007398;
    word-break: break-word; }
    .SearchPage a:hover, .SearchPage a:focus {
      border-bottom: solid 2px #e9711c;
      cursor: pointer;
      color: #e9711c; }
      .SearchPage a:hover em, .SearchPage a:focus em {
        color: #e9711c; }
  .SearchPage .AdvancedSearch .search-row {
    margin: 0 auto;
    max-width: 1440px; }

.FacetList {
  position: relative;
  padding: 0 8px;
  padding-bottom: 45px; }
  @media screen and (min-width: 20em) {
    .FacetList {
      padding-right: 30px;
      padding-left: 30px; } }
  @media screen and (max-width: 575px) {
    .FacetList {
      display: none;
      z-index: 10001;
      background-color: rgba(50, 50, 50, 0.7);
      height: 100%;
      overflow-y: auto; }
      .FacetList.display-filters {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 10px; }
        .FacetList.display-filters .ResultsFound {
          display: none; }
      .FacetList .facet-container {
        display: inline-block;
        background-color: #ffffff;
        padding: 15px;
        width: 100%;
        min-height: 100%; } }
  .FacetList ol,
  .FacetList ul {
    margin: 0;
    padding: 0;
    list-style: none; }
  .FacetList .button-link {
    outline: none;
    border: none;
    background-color: transparent; }
    .FacetList .button-link .icon-cross {
      width: 18px;
      height: 18px;
      fill: #505050; }
      .FacetList .button-link .icon-cross:hover {
        fill: #e9711c; }
  .FacetList .refine-by {
    margin-bottom: 8px;
    color: #505050; }
  .FacetList legend {
    margin-bottom: 8px;
    padding: 0;
    line-height: 1.2rem;
    font-size: .8rem; }
  .FacetList a {
    font-size: .8rem; }
  .FacetList button {
    cursor: pointer; }

.FacetItem {
  position: relative; }
  .FacetItem .facet-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%; }
  .FacetItem fieldset {
    margin-bottom: 16px;
    border: none;
    padding: 0; }
    .FacetItem fieldset li {
      margin-bottom: 4px; }
      .FacetItem fieldset li .button-link {
        display: none;
        float: none; }
      .FacetItem fieldset li label:hover {
        cursor: pointer;
        text-decoration: underline; }
  .FacetItem .checkbox-label-value {
    line-height: 1.2rem;
    font-size: .7rem !important; }
  .FacetItem .show-more-icon {
    -webkit-transition: color .3s, -webkit-transform .3s;
    transition: color .3s, -webkit-transform .3s;
    -o-transition: color .3s, transform .3s;
    transition: color .3s, transform .3s;
    transition: color .3s, transform .3s, -webkit-transform .3s; }
    .FacetItem .show-more-icon.active {
      -webkit-transform: scale(-1);
              transform: scale(-1);
      -ms-transform: scale(-1); }
  .FacetItem .show-more-link-container {
    outline: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    color: #505050; }
    .FacetItem .show-more-link-container .show-more-link {
      font-size: .7rem; }
    .FacetItem .show-more-link-container:hover {
      color: #e9711c; }
    .FacetItem .show-more-link-container:focus {
      color: #e9711c; }
      .FacetItem .show-more-link-container:focus .show-more-link {
        margin-bottom: -2px;
        text-decoration: none;
        color: inherit; }

.ClearFiltersButton {
  display: inline-block;
  font-size: .8rem !important; }
  .ClearFiltersButton:hover {
    border: 0 !important;
    cursor: pointer;
    text-decoration: none;
    color: #e9711c; }
    .ClearFiltersButton:hover .filter-link {
      margin-bottom: -2px;
      border-bottom: solid 2px;
      text-decoration: none;
      color: #e9711c; }

.ResultsPerPage {
  font-size: .8rem; }
  .ResultsPerPage .active-per-page {
    border-bottom: solid 2px #505050; }

.Pagination {
  font-size: .8rem; }
  .Pagination .pagination-link:hover .icon-navigate-left {
    fill: #e9711c; }
  .Pagination .pagination-link:hover .icon-navigate-right {
    fill: #e9711c; }
  .Pagination .pagination-link a:focus .icon-navigate-left {
    fill: #e9711c; }
  .Pagination .pagination-link a:focus .icon-navigate-right {
    fill: #e9711c; }
  .Pagination .icon-navigate-left {
    margin: 0 8px 0 0;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    fill: #007398; }
  .Pagination .icon-navigate-right {
    margin: 0 0 0 8px;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    fill: #007398; }

.ResultList {
  padding-top: 6px; }
  @media screen and (max-width: 575px) {
    .ResultList {
      padding-left: 0; } }
  .ResultList em {
    background-color: #fff4be;
    font-style: normal; }

.ResultItem {
  margin-bottom: .8rem;
  padding-top: 4px; }
  .ResultItem .result-list-title-link {
    color: #323232; }
    .ResultItem .result-list-title-link:visited {
      color: #702862; }
  .ResultItem h2 {
    line-height: 1.2rem; }
  .ResultItem h3 {
    line-height: 1.1rem;
    font-size: .7rem; }
  @media screen and (max-width: 575px) {
    .ResultItem .result-item-content {
      padding-left: 0 !important; } }
  .ResultItem .result-item-container:after {
    content: "";
    display: table;
    clear: both; }
  .ResultItem .result-item-content {
    margin-bottom: 4px;
    padding-left: 28px;
    width: 100%; }

@media screen and (max-width: 575px) {
  .ResultHeader {
    display: none; } }

.ResultHeader .u-left-pad {
  padding-left: 32px; }

.ResultHeader .divider {
  border-top: 2px #F5F5F5 solid; }

.ResultHeader.guest {
  margin-left: 28px; }

.ResultSortOptions .sort-options {
  line-height: 2.3;
  font-size: .8rem; }
  .ResultSortOptions .sort-options .sort-prefix {
    display: none;
    position: relative; }
    @media only screen and (min-width: 62em) {
      .ResultSortOptions .sort-options .sort-prefix {
        display: inline; } }

.ResultsFound {
  margin-bottom: 0; }
  .ResultsFound h1 {
    line-height: 1.7;
    font-size: 1rem; }
  @media only screen and (min-width: 62em) {
    .ResultsFound h1 {
      line-height: 1.4;
      font-size: 1.2rem; } }

.ResultsSince {
  margin-bottom: 43px; }
  .ResultsSince span {
    line-height: 1.7;
    font-size: 14px; }

.SelectAllCheckbox .checkbox {
  line-height: 2.3; }

.SuggestionsResultItem {
  margin-right: 0;
  margin-bottom: 25px;
  padding: 10px 35px 10px 29px; }
  .SuggestionsResultItem.full-width-thumbnails {
    padding-left: 30px; }
  @media only screen and (min-width: 62em) {
    .SuggestionsResultItem {
      padding-left: 14px; } }
  @media screen and (max-width: 575px) {
    .SuggestionsResultItem {
      display: none; } }
  .SuggestionsResultItem h2 {
    padding: 6px 0; }
    .SuggestionsResultItem h2 a {
      float: right; }
  .SuggestionsResultItem .suggestions-container {
    padding: 1px;
    width: 100%;
    height: 167px;
    overflow-x: auto;
    overflow-y: hidden; }
  .SuggestionsResultItem .suggestion-list {
    display: inline-block;
    width: inherit;
    height: inherit;
    overflow: hidden; }
  .SuggestionsResultItem .suggestion-item {
    position: relative;
    float: left;
    margin: 4px 16px 32px 1px;
    width: 112px;
    height: 160px;
    line-height: 0;
    font-size: 0; }
    .SuggestionsResultItem .suggestion-item img {
      border: none;
      -webkit-box-shadow: 0 0 0 1px #dcdcdc;
              box-shadow: 0 0 0 1px #dcdcdc; }
    .SuggestionsResultItem .suggestion-item img,
    .SuggestionsResultItem .suggestion-item .Image,
    .SuggestionsResultItem .suggestion-item .fallback {
      position: absolute;
      z-index: 0;
      width: 112px;
      height: 160px; }
    .SuggestionsResultItem .suggestion-item .fallback {
      display: table;
      position: absolute;
      -webkit-transition: opacity 300ms;
      -o-transition: opacity 300ms;
      transition: opacity 300ms;
      opacity: 0;
      z-index: 1;
      background: #505050; }
      .SuggestionsResultItem .suggestion-item .fallback.visible {
        opacity: 1; }
      .SuggestionsResultItem .suggestion-item .fallback span {
        display: table-cell;
        padding: 16px 8px;
        vertical-align: bottom;
        line-height: 20px;
        color: #fff;
        font-size: 14px; }
    .SuggestionsResultItem .suggestion-item:hover .cover {
      opacity: .9;
      background: #323232; }
    .SuggestionsResultItem .suggestion-item a {
      font-size: 0; }

.LoginMessageResultItem {
  display: inline-block;
  margin-bottom: 16px;
  margin-left: 28px; }
  @media screen and (max-width: 575px) {
    .LoginMessageResultItem {
      margin-left: 0; } }
  .LoginMessageResultItem h2 {
    line-height: 1.5;
    font-size: .8rem; }
    .LoginMessageResultItem h2 a {
      float: right; }
  .LoginMessageResultItem p {
    padding: 0 0 8px;
    line-height: 1.5;
    font-size: .7rem; }
  .LoginMessageResultItem .login-message-container {
    padding: 16px 28px 16px 0;
    overflow-y: hidden; }
  .LoginMessageResultItem .button-sm.button {
    height: auto;
    line-height: 1; }
    .LoginMessageResultItem .button-sm.button .button-text {
      line-height: 1.8;
      font-size: .8rem; }
    .LoginMessageResultItem .button-sm.button svg[class^='icon-'] {
      width: 10px;
      height: 18px; }
      .LoginMessageResultItem .button-sm.button svg[class^='icon-']:last-child {
        margin-left: 6px; }
      .LoginMessageResultItem .button-sm.button svg[class^='icon-']:first-child {
        margin-right: 6px; }
      .LoginMessageResultItem .button-sm.button svg[class^='icon-']:only-child {
        margin: 0; }

.Authors {
  line-height: 1.1rem;
  color: #323232;
  font-size: .7rem; }
  .Authors.hor li::after {
    content: ''; }
  .Authors.hor :last-child .separator {
    display: none; }

.SubType {
  line-height: 1.1rem;
  color: #737373;
  font-size: .7rem; }
  .SubType a {
    color: #737373; }
  .SubType.hor li::after {
    content: ''; }
  .SubType.hor :last-child .separator {
    display: none; }

.OpenAccessArchive {
  line-height: 1.1rem;
  font-size: .7rem; }
  .OpenAccessArchive.hor span {
    margin-right: 8px; }
  .OpenAccessArchive.hor .access-indicator {
    display: inline-block;
    border-radius: 8px;
    width: 8px;
    height: 8px; }
    .OpenAccessArchive.hor .access-indicator.access-indicator-yes {
      background: #53B848; }
    .OpenAccessArchive.hor .access-indicator.access-indicator-no {
      border: 1px solid #323232;
      background: #F5F5F5; }

.SearchBody {
  padding: 0 24px 8px; }
  .SearchBody ol {
    margin: 0;
    padding: 0;
    list-style: none; }
    .SearchBody ol.hor li {
      display: inline; }
    .SearchBody ol.hor.reduce-list li:nth-child(n+5) {
      display: none; }
    .SearchBody ol.hor.reduce-list li:nth-child(n+5):last-child {
      display: inline; }
    .SearchBody ol.hor.reduce-list li:nth-child(n+5):last-child::before {
      content: '\2026   '; }
    .SearchBody ol.hor.reduce-list li.always-show:nth-child(n+5) {
      display: inline; }
    .SearchBody ol.hor.reduce-list li.always-show:nth-child(n+5)::before {
      content: '\2026   '; }
    @media screen and (max-width: 575px) {
      .SearchBody ol.hor.reduce-list li:nth-child(n+3) {
        display: none; }
      .SearchBody ol.hor.reduce-list li:nth-child(n+3):last-child {
        display: inline; }
      .SearchBody ol.hor.reduce-list li:nth-child(n+3):last-child::before {
        content: '\2026   '; }
      .SearchBody ol.hor.reduce-list li.always-show:nth-child(n+3) {
        display: inline; }
      .SearchBody ol.hor.reduce-list li.always-show:nth-child(n+3)::before {
        content: '\2026   '; } }
    .SearchBody ol.prefix::before {
      margin-right: 8px;
      content: attr(data-prefix); }
    .SearchBody ol.suffix::after {
      margin-left: 8px;
      content: attr(data-suffix); }
    .SearchBody ol.hor-separated-list li {
      display: inline; }
      .SearchBody ol.hor-separated-list li::after {
        margin: 0 8px;
        color: #EBEBEB;
        content: '|'; }
      .SearchBody ol.hor-separated-list li:last-child::after {
        margin: 0;
        content: ''; }
  .SearchBody .refine-filters-button {
    padding-right: 8px;
    padding-left: 10px;
    width: 131px;
    height: 32px;
    line-height: 32px;
    font-size: .8rem; }
    .SearchBody .refine-filters-button .icon-plus {
      margin-bottom: 4px;
      margin-left: 7px; }
  .SearchBody .refine-filters-container {
    float: left; }
  .SearchBody .search-alerts-mobile-button {
    padding-right: 10px;
    padding-left: 16px;
    width: 131px;
    height: 32px;
    line-height: 32px;
    font-size: .8rem; }
    .SearchBody .search-alerts-mobile-button .icon-bell {
      margin-bottom: 4px; }
  .SearchBody .search-alerts-mobile-container {
    float: right; }
  .SearchBody .results-container {
    position: relative;
    padding-left: 0;
    overflow: hidden; }
    @media only screen and (min-width: 62em) {
      .SearchBody .results-container {
        padding-left: 15px; } }
    @media only screen and (min-width: 62em) {
      .SearchBody .results-container.hidden-checkboxes {
        padding-left: 0; } }
    .SearchBody .results-container.hidden-checkboxes .result-item-content {
      padding-left: 16px; }
  .SearchBody .search-header {
    padding-left: 28px;
    font-size: .7rem; }
  .SearchBody .loading-results-overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .4;
    z-index: 10;
    background-color: #fff;
    width: 100%;
    height: 100%; }
  @media screen and (max-width: 575px) {
    .SearchBody .results-container {
      padding: 0; }
    .SearchBody .search-header {
      padding: 0; }
    .SearchBody .search-mobile-container {
      border-top: solid 2px #F5F5F5;
      padding: 16px 0 64px; }
    .SearchBody .margin {
      margin: 0; } }

.SearchStatusMessage {
  margin: 0 auto;
  padding: 10px 30px 30px;
  line-height: 2;
  color: #323232;
  font-size: .8rem; }
  .SearchStatusMessage .message-field-title {
    margin: 16px 0;
    line-height: 1.5; }

/* CSS obtained when calling the MathJax-node typeset method with the css option */
.mjx-chtml {
  display: inline-block;
  line-height: 0;
  text-indent: 0;
  font-size: 100%;
  white-space: nowrap;
  min-width: 0;
  min-height: 0;
  border: 0;
  margin: 0;
  padding: 1px 0; }

@font-face {
  font-family: MJXc-TeX-ams-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-cal-Bw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-frak-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-frak-Bw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-math-BIw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-sans-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-sans-Bw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-sans-Iw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-script-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-type-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-cal-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-main-Bw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-main-Iw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-main-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-math-Iw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-size1-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-size2-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-size3-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf") format("opentype"); }

@font-face {
  font-family: MJXc-TeX-size4-Rw;
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot");
  src: url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff") format("woff"), url("https://cdn.mathjax.org/mathjax/latest/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf") format("opentype"); }

@media screen and (max-width: 575px) {
  .DownloadAllLink {
    display: none; } }

.DownloadAllLink .download-all-link-button {
  -webkit-transition: -webkit-filter .3s ease;
  transition: -webkit-filter .3s ease;
  -o-transition: filter .3s ease;
  transition: filter .3s ease;
  transition: filter .3s ease, -webkit-filter .3s ease;
  border: none;
  background: none;
  padding-left: 4px;
  color: #007398;
  font-size: .8rem; }
  .DownloadAllLink .download-all-link-button:hover {
    cursor: pointer;
    text-decoration: none;
    color: #e9711c; }
    .DownloadAllLink .download-all-link-button:hover .download-all-link-text {
      border-bottom: 2px solid #e9711c; }
  .DownloadAllLink .download-all-link-button:disabled {
    cursor: default;
    text-decoration: none;
    color: #969696; }
    .DownloadAllLink .download-all-link-button:disabled .icon-pdf-multicolor {
      -webkit-filter: grayscale(100%);
              filter: grayscale(100%); }
  .DownloadAllLink .download-all-link-button .icon-pdf-multicolor {
    margin-top: -4px;
    margin-bottom: 1px;
    width: 16px;
    height: 16px;
    vertical-align: middle; }

.DownloadAllLink .download-all-link-text {
  margin-left: 8px; }

.modal-download-message {
  padding: 24px 32px;
  line-height: 1.4rem;
  color: #000000;
  font-size: 1.1rem; }

@media screen and (max-width: 575px) {
  .DownloadCheckbox.select-result-container {
    display: none; } }

.DownloadCheckbox.select-result-container {
  float: left; }

.ExportAllLink .export-all-link-button {
  color: #007398;
  font-size: .8rem; }
  .ExportAllLink .export-all-link-button:hover {
    color: #e9711c; }
  .ExportAllLink .export-all-link-button:focus .button-link-text {
    border-bottom: none; }
  .ExportAllLink .export-all-link-button .button-link-text {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; }

.export-options {
  margin-bottom: 8px; }
  .export-options h2 {
    margin: 8px 0;
    font-size: 1.2rem; }
  .export-options h3 {
    margin: 16px 0;
    font-size: .9rem; }

.PreviewLinks {
  min-height: 21px; }
  .PreviewLinks ol li {
    margin-right: 24px; }
  .PreviewLinks .preview-body-container {
    position: relative;
    margin-top: 8px;
    margin-bottom: 4px; }
    .PreviewLinks .preview-body-container h2 {
      margin-top: 0 !important;
      font-size: .9rem !important; }
    .PreviewLinks .preview-body-container::after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      -webkit-box-shadow: 0 -16px 8px -8px #fff inset;
              box-shadow: 0 -16px 8px -8px #fff inset;
      height: 20px;
      content: ''; }
    .PreviewLinks .preview-body-container .preview-body-scroll {
      background-color: #F5F5F5;
      padding: 16px;
      max-width: 30rem;
      overflow-x: hidden; }
      .PreviewLinks .preview-body-container .preview-body-scroll .preview-body {
        min-height: 50px;
        max-height: 14.8rem;
        overflow-y: auto; }

.ArticlePreview:first-child h2 {
  margin-bottom: 8px;
  line-height: 1.2rem; }

.ArticlePreview h2,
.ArticlePreview h3,
.ArticlePreview h5 {
  line-height: 2rem;
  font-size: .9rem; }

.ArticlePreview em {
  background-color: transparent !important;
  font-style: italic; }

.ArticlePreview p {
  line-height: 1.1rem;
  font-size: .7rem; }

.ArticlePreview .loading-spinner {
  vertical-align: middle; }

.ArticlePreview .abstract-title {
  font-size: .9rem; }

.ArticlePreview .preview-body a {
  font-family: NexusSans, Arial, Helvetica, Lucida Sans Unicode, Microsoft Sans Serif, Segoe UI Symbol, STIXGeneral, Cambria Math, Arial Unicode MS, sans-serif; }

.ExportCitationOptions form {
  display: none; }

.ExportCitationOptions .export-options {
  margin-bottom: 8px; }
  .ExportCitationOptions .export-options h2 {
    margin: 8px 0;
    font-size: 1.2rem; }
  .ExportCitationOptions .export-options h3 {
    margin: 16px 0;
    font-size: .9rem; }
  .ExportCitationOptions .export-options .export-option {
    line-height: 1.5rem;
    font-size: .7rem; }
    .ExportCitationOptions .export-options .export-option svg[class*='icon-'] {
      width: 10px;
      height: 20px; }

.DownloadPdf .preview-link {
  display: inline-block; }
  .DownloadPdf .preview-link svg[class*='icon-'] {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    vertical-align: middle; }
  .DownloadPdf .preview-link .preview-link-text {
    font-size: .7rem; }

.PurchasePdf .preview-link {
  display: inline-block; }
  .PurchasePdf .preview-link svg[class*='icon-'] {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    vertical-align: middle; }
  .PurchasePdf .preview-link .preview-link-text {
    font-size: .7rem; }

.PreviewButton button {
  color: #007398; }

.PreviewButton .preview-button-text {
  font-size: .7rem; }

.PreviewButton .preview-icon.active {
  -webkit-transform: scale(-1);
          transform: scale(-1);
  -ms-transform: scale(-1); }

.search-main-content {
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
  padding: 16px 0 0; }
  .search-main-content.search-expanding {
    opacity: 0; }
  .search-main-content.search-expanded {
    display: none;
    opacity: 0; }
  .search-main-content.search-collapsing {
    display: block;
    -webkit-animation: fadein;
            animation: fadein;
    -webkit-animation-duration: 1s;
            animation-duration: 1s; }
  .search-main-content.search-collapsed {
    opacity: 1; }

.SearchBox {
  padding: 8px 0;
  font-size: 16px; }

.search-input-label {
  color: inherit; }

.search-input-field:focus + .search-input-label, .adv-form .PublicationAutoSuggestInput input:focus + .search-input-label {
  color: #007398; }

.adv-form input {
  color: #323232; }

@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

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

.Feedback {
  position: fixed;
  bottom: 0;
  z-index: 2;
  width: 100%;
  font-size: 14px; }
  .Feedback .feedback-button-container {
    position: fixed;
    right: 2%;
    bottom: 0;
    border: 2px solid #DCDCDC;
    background-color: #fff;
    cursor: pointer;
    width: 117px;
    height: 34px; }
    .Feedback .feedback-button-container .feedback-button {
      padding: 0 10px; }
      .Feedback .feedback-button-container .feedback-button:hover .feedback-text {
        cursor: pointer;
        text-decoration: underline;
        color: #e9711c; }
      .Feedback .feedback-button-container .feedback-button:hover .icon-comment {
        fill: #e9711c; }
      .Feedback .feedback-button-container .feedback-button .feedback-text {
        margin: 0 auto;
        line-height: 30px;
        color: #505050; }
        .Feedback .feedback-button-container .feedback-button .feedback-text:focus {
          color: #e9711c; }
      .Feedback .feedback-button-container .feedback-button .icon-comment {
        margin-left: 6px;
        width: 24px;
        height: 24px;
        vertical-align: middle;
        fill: #007398; }

.Survey {
  padding: 32px 24px 24px; }
  .Survey .u-mb24 {
    margin-bottom: 24px !important; }
  .Survey .survey-optional {
    color: #B9B9B9; }
  .Survey .survey-title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    line-height: 24px;
    white-space: nowrap;
    font-size: 1rem; }
  .Survey .survey-stars-title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    line-height: 1.3rem;
    white-space: nowrap;
    font-size: 0.8rem; }
  .Survey .survey-text-title {
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    line-height: 24px;
    white-space: nowrap;
    font-size: 0.8rem; }
  .Survey .survey-stars-selection .icon-star {
    -webkit-transition: fill ease .3s;
    -o-transition: fill ease .3s;
    transition: fill ease .3s;
    cursor: pointer;
    width: 24px;
    height: 24px;
    vertical-align: text-bottom;
    fill: #B9B9B9; }
    .Survey .survey-stars-selection .icon-star.active {
      fill: #e9711c; }
  .Survey .survey-stars-selection a {
    margin-right: 8px; }
  .Survey .survey-stars-selection a:focus .icon-star {
    fill: #e9711c; }
  .Survey .survey-text-area {
    border: 2px solid #B9B9B9;
    padding: 8px;
    width: 100%;
    height: 108px;
    line-height: 18px;
    font-size: .8rem;
    resize: none; }
  .Survey .survey-cancel-button {
    font-size: .8rem; }
  .Survey .survey-send-button {
    float: right;
    font-size: .8rem; }

.Checkbox {
  cursor: pointer; }
  .Checkbox .checkbox-compact {
    line-height: 24px; }
    .Checkbox .checkbox-compact .checkbox-input {
      display: none; }
    .Checkbox .checkbox-compact .checkbox {
      display: inline-block;
      position: relative;
      -webkit-transition: border ease .3s;
      -o-transition: border ease .3s;
      transition: border ease .3s;
      margin-right: 8px;
      border: 2px solid #B9B9B9;
      background-color: #fff;
      cursor: pointer;
      width: 20px;
      height: 20px;
      vertical-align: middle; }
      .Checkbox .checkbox-compact .checkbox.active::after {
        border-color: #e9711c #e9711c #fff #fff; }
      .Checkbox .checkbox-compact .checkbox::after {
        display: inline-block;
        position: absolute;
        top: 3px;
        left: 3px;
        -webkit-transition: border-color .3s;
        -o-transition: border-color .3s;
        transition: border-color .3s;
        border-width: 10px 10px 0 0;
        border-style: solid;
        border-color: #fff;
        background-color: #fff;
        width: 0;
        height: 0;
        content: ''; }
    .Checkbox .checkbox-compact .checkbox-label {
      cursor: pointer;
      vertical-align: middle; }

.alert-form {
  min-width: 280px;
  max-width: 480px; }
  @media screen and (max-width: 575px) {
    .alert-form {
      min-width: 273px; } }
  @media screen and (max-width: 575px) {
    .alert-form .search-input-label {
      font-size: 14px !important; } }
  .alert-form .alert-form-fields .alert-input {
    margin-bottom: 24px; }
  @media screen and (max-width: 575px) {
    .alert-form .alert-form-fields .search-input, .alert-form .alert-form-fields .adv-form .PublicationAutoSuggestInput .react-autosuggest__container, .adv-form .PublicationAutoSuggestInput .alert-form .alert-form-fields .react-autosuggest__container,
    .alert-form .alert-form-fields .alert-input {
      margin-bottom: 10px; }
    .alert-form .alert-form-fields .InputDropdown .alert-input {
      margin-bottom: 35px !important; } }
  .alert-form .alert-form-info {
    margin-bottom: 24px; }
    .alert-form .alert-form-info p {
      color: #505050;
      font-size: 14px; }
  .alert-form .alert-form-message {
    margin-bottom: 24px; }
  .alert-form .alert-form-success {
    padding: 0 10px 0 40px; }
    .alert-form .alert-form-success .alert-form-title {
      margin-top: -27px;
      line-height: 1.4; }
    .alert-form .alert-form-success .alert-form-button button {
      margin-right: 0; }
    @media screen and (max-width: 575px) {
      .alert-form .alert-form-success {
        padding: 0; }
        .alert-form .alert-form-success .alert-form-title {
          margin-top: 23px !important;
          margin-bottom: 30px;
          font-size: 20px; }
        .alert-form .alert-form-success .alert-form-button {
          padding-right: 10px; }
          .alert-form .alert-form-success .alert-form-button span {
            font-size: 16px; } }
  .alert-form .alert-form-landing-page .alert-form-title {
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 24px; }
    @media screen and (max-width: 575px) {
      .alert-form .alert-form-landing-page .alert-form-title {
        margin-top: 10px;
        line-height: 1;
        font-size: 20px; } }
  @media screen and (max-width: 575px) {
    .alert-form .alert-form-landing-page .alert-form-message {
      margin-bottom: 54px; }
      .alert-form .alert-form-landing-page .alert-form-message p {
        margin-left: 0;
        font-size: 14px; }
        .alert-form .alert-form-landing-page .alert-form-message p span {
          margin-left: 0;
          font-size: 18px; }
    .alert-form .alert-form-landing-page .alert-form-button span {
      font-size: 16px; } }
  .alert-form .alert-form-fail {
    padding: 0 15 0 40px; }
    .alert-form .alert-form-fail .alert-form-title {
      margin-top: -27px;
      margin-left: 50px;
      line-height: 1.4; }
    .alert-form .alert-form-fail .alert-form-button button {
      margin-right: 0; }
    @media screen and (max-width: 575px) {
      .alert-form .alert-form-fail .alert-form-title {
        margin-top: 30px;
        margin-left: 0;
        font-size: 20px; }
      .alert-form .alert-form-fail .alert-form-button span {
        font-size: 16px; } }
  .alert-form .alert-form-error-message {
    margin-bottom: 64px; }
    .alert-form .alert-form-error-message p {
      margin-left: 51px;
      font-size: 20px; }
    @media screen and (max-width: 575px) {
      .alert-form .alert-form-error-message {
        margin-bottom: 54px; }
        .alert-form .alert-form-error-message p {
          margin-left: 0;
          font-size: 18px; } }
  .alert-form .alert-form-button {
    display: inline-block;
    width: 100%; }

.search-alert-text {
  margin-bottom: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none !important;
  color: #505050; }
  .search-alert-text .icon {
    position: relative;
    top: 8px;
    padding-right: 6px; }
  .search-alert-text span {
    font-size: 14px; }
  .search-alert-text:hover, .search-alert-text:focus {
    cursor: pointer;
    text-decoration: underline;
    color: #e9711c; }
    .search-alert-text:hover span, .search-alert-text:focus span {
      border-bottom: solid 2px; }
    .search-alert-text:hover svg[class*='icon-'], .search-alert-text:focus svg[class*='icon-'] {
      fill: #e9711c !important; }

.search-alert-modal.success-modal .modal-content {
  padding: 16px 24px !important; }
  @media breakpoint-small-max {
    .search-alert-modal.success-modal .modal-content .alert-form-message p {
      font-size: 14px; }
      .search-alert-modal.success-modal .modal-content .alert-form-message p span {
        font-size: 18px; } }

.search-alert-modal.error-modal .modal-content {
  padding: 16px 24px !important; }

.search-alert-modal.error-modal .alert-form-message {
  font-size: 18px; }

.registration {
  width: 436px;
  height: 512px; }
  .registration .registration-header {
    margin-right: 110px;
    margin-bottom: 10px; }

.ddm-registration-modal {
  width: 436px;
  height: 176px; }
  .ddm-registration-modal .ddm-header {
    margin-right: 32px; }
  .ddm-registration-modal .ddm-buttons {
    margin-top: 32px; }
    .ddm-registration-modal .ddm-buttons .anchor {
      display: inline-block;
      padding-top: 8px; }
    .ddm-registration-modal .ddm-buttons .button {
      float: right; }
    .ddm-registration-modal .ddm-buttons .sign-in-button {
      margin-right: 34px; }

.ddm-limit-modal {
  width: 436px;
  height: 150px; }
  .ddm-limit-modal .ddm-header {
    margin-top: 32px;
    margin-right: 32px; }
  .ddm-limit-modal .ddm-buttons {
    margin-top: 32px; }
    .ddm-limit-modal .ddm-buttons .anchor {
      display: inline-block;
      padding-top: 8px; }
    .ddm-limit-modal .ddm-buttons .button {
      float: right; }

.Modal .modal-content .person-bg {
  margin-top: 14px;
  margin-bottom: 17px;
  border-radius: 50%;
  padding: 13px 13.5px 13px 14px;
  width: 47px;
  height: 47px; }

.Modal .modal-content .actions {
  margin-right: 62px; }
  .Modal .modal-content .actions ul {
    list-style-type: none; }
    .Modal .modal-content .actions ul li {
      width: 100%;
      height: 50px; }
      .Modal .modal-content .actions ul li .action-icon {
        float: left;
        width: 32px;
        height: 100%;
        line-height: 2em; }
      .Modal .modal-content .actions ul li .action-text {
        float: left;
        width: calc(100% - 32px);
        height: 100%;
        line-height: 1.3rem; }
      .Modal .modal-content .actions ul li:first-child {
        margin-top: 22px; }

.Modal .modal-content .buttons {
  float: right;
  margin-top: 26px;
  margin-bottom: 26px; }
  .Modal .modal-content .buttons .register-button {
    margin-right: 34px; }

.SelectedFieldList {
  width: 100%;
  line-height: 1.1rem;
  font-size: .7em; }
  .SelectedFieldList.hide {
    display: none; }
  .SelectedFieldList .selected-list-item {
    display: inline-block;
    position: relative;
    margin: 0 8px 0 0;
    cursor: pointer;
    padding: 0 32px 0 0;
    max-width: 95%;
    overflow: hidden;
    vertical-align: top;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap; }
    @media screen and (max-width: 599px) {
      .SelectedFieldList .selected-list-item {
        max-width: 100%; } }
    .SelectedFieldList .selected-list-item .selected-field {
      color: #737373; }
      .SelectedFieldList .selected-list-item .selected-field:hover, .SelectedFieldList .selected-list-item .selected-field:focus {
        outline: none;
        color: #e9711c; }
        .SelectedFieldList .selected-list-item .selected-field:hover .selected-field-value, .SelectedFieldList .selected-list-item .selected-field:focus .selected-field-value {
          color: #e9711c; }
      .SelectedFieldList .selected-list-item .selected-field .selected-field-value {
        color: #323232; }
    .SelectedFieldList .selected-list-item .selected-field-clear {
      position: absolute;
      top: 0;
      right: 0;
      margin: 0;
      border: 0;
      padding: 0 0 4px 16px;
      width: 42px; }
      .SelectedFieldList .selected-list-item .selected-field-clear:focus {
        outline: none; }
        .SelectedFieldList .selected-list-item .selected-field-clear:focus .icon {
          fill: #e9711c; }
      .SelectedFieldList .selected-list-item .selected-field-clear .icon {
        height: 20px;
        fill: currentColor; }

.PubAutoSuggestInput .react-autosuggest__container {
  position: relative; }

.PubAutoSuggestInput .react-autosuggest__input:focus {
  outline: none; }

.PubAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.PubAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__suggestions-container {
  display: block;
  position: absolute;
  top: 56px;
  z-index: 10000;
  border: 1px solid #B9B9B9;
  border-top: 2px solid #505050;
  background-color: #fff;
  min-width: 80%;
  max-height: 50vh;
  line-height: 22px;
  font-size: .8rem;
  font-weight: 300;
  overflow-y: auto; }

.PubAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__section-container:first-of-type {
  border-top: 0; }

.PubAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__section-title {
  padding: 10px 0 5px 10px;
  font-weight: 500;
  font-style: italic; }

.PubAutoSuggestInput .react-autosuggest__suggestions-container {
  display: none; }

.PubAutoSuggestInput .react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.PubAutoSuggestInput .react-autosuggest__suggestion {
  cursor: pointer;
  padding: 5px 10px; }

.PubAutoSuggestInput .react-autosuggest__suggestion--highlighted span {
  border-bottom: 2px solid #e9711c;
  color: #e9711c; }

.PubAutoSuggestInput .react-autosuggest__suggestion--focused span {
  border-bottom: 2px solid #e9711c;
  color: #e9711c; }

.search-panel {
  -webkit-transition: background-color 300ms;
  -o-transition: background-color 300ms;
  transition: background-color 300ms;
  z-index: 2;
  background-color: #F5F5F5;
  padding: 16px 0;
  width: 100%;
  font-size: .9rem; }
  @media only screen and (min-width: 36em) {
    .search-panel {
      font-size: 1rem; } }
  .search-panel.expanded {
    background-color: #fff; }
  .search-panel .adv-search-wrapper {
    margin: auto;
    max-width: 1440px; }

.search-row {
  padding: 0 16px; }

.AdvancedSearchBox h1 {
  margin: 0 0 16px 16px;
  font-size: 1.2rem; }
  @media only screen and (min-width: 62em) {
    .AdvancedSearchBox h1 {
      margin-bottom: 60px;
      font-size: 1.6rem; } }

.adv-form .search-input-field, .adv-form .PublicationAutoSuggestInput input {
  height: auto; }

.adv-form .accordion-panel-title.text-l {
  font-size: 1rem; }

.adv-form .accordion-panel-title:focus {
  outline: none; }

@media only screen and (min-width: 62em) {
  .adv-form .text-space-right {
    margin-right: 24px; } }

.adv-form .mb8 {
  margin-bottom: 8px; }

.adv-form .mb16 {
  margin-bottom: 16px; }

.adv-form input {
  background-color: transparent; }
  .adv-form input:focus {
    outline: none; }

.adv-form .qs-field .search-input-clear {
  right: 42px; }

.adv-form .qs-field.expanded .search-input-clear {
  right: 0; }

.adv-form .adv-search-form fieldset {
  border: 0; }

.adv-form .more-options,
.adv-form .additional-fields {
  line-height: 1.2em;
  color: #323232;
  font-size: .8em; }
  .adv-form .more-options.expanded,
  .adv-form .additional-fields.expanded {
    line-height: 40px; }
  .adv-form .more-options:hover, .adv-form .more-options:focus,
  .adv-form .additional-fields:hover,
  .adv-form .additional-fields:focus {
    outline: none;
    color: #e9711c; }
    .adv-form .more-options:hover .icon, .adv-form .more-options:focus .icon,
    .adv-form .additional-fields:hover .icon,
    .adv-form .additional-fields:focus .icon {
      fill: #e9711c; }
  .adv-form .more-options .icon,
  .adv-form .additional-fields .icon {
    margin-right: 6px;
    height: 20px;
    vertical-align: middle;
    fill: #007398; }

.article-types-list {
  list-style: none; }

.SearchCommonComponents ::-webkit-input-placeholder {
  color: #737373;
  font-style: italic; }

.SearchCommonComponents :-ms-input-placeholder {
  color: #737373;
  font-style: italic; }

.SearchCommonComponents ::-moz-placeholder {
  color: #737373;
  font-style: italic; }

.SearchCommonComponents :-moz-placeholder {
  color: #737373;
  font-style: italic; }

.SearchCommonComponents .input-container {
  position: relative;
  overflow: visible; }

.SearchCommonComponents .validation-error {
  outline: none;
  border-bottom: solid 2px #C83727; }

.SearchCommonComponents .validation-error-tooltip {
  position: absolute;
  top: 100%;
  border: solid 1px #C83727;
  background-color: #fff;
  padding: 10px;
  min-width: 300px; }

.SearchCommonComponents .validation-error-icon {
  float: left;
  background-color: #C83727;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 1.5;
  color: #fff; }

.SearchCommonComponents .validation-error-text {
  display: inline-block;
  float: left;
  margin-left: 20px;
  width: 80%; }

.SearchSubmitButton {
  border: none; }
  .SearchSubmitButton svg {
    position: absolute;
    top: 4px;
    left: 7px;
    margin: auto; }

.TextInput .input-container::after {
  display: table;
  clear: both;
  content: ''; }

.TextInput .validation-error-tooltip {
  top: 32px;
  font-size: .9em; }

.QuickSearchInput {
  position: relative;
  width: 100%; }
  .QuickSearchInput .SearchSubmitButton {
    position: absolute;
    top: 20px;
    right: 0; }
    .QuickSearchInput .SearchSubmitButton.expanded {
      display: none; }
  .QuickSearchInput input {
    padding-right: 65px; }

.PublicationAutoSuggestInput .react-autosuggest__container {
  position: relative; }

.PublicationAutoSuggestInput .react-autosuggest__input {
  border: 1px solid #B9B9B9;
  padding: 10px 20px;
  width: 240px;
  height: 30px;
  font-size: 16px;
  font-weight: 300; }

.PublicationAutoSuggestInput .react-autosuggest__input:focus {
  outline: none; }

.PublicationAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.PublicationAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__suggestions-container {
  display: block;
  position: absolute;
  top: 31px;
  z-index: 2;
  border: 1px solid #B9B9B9;
  background-color: #fff;
  width: 280px;
  max-height: 60vh;
  line-height: 22px;
  font-size: .8rem;
  font-weight: 300;
  overflow-y: auto; }
  @media screen and (max-width: 599px) {
    .PublicationAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__suggestions-container {
      right: 0; } }

.PublicationAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__section-container:first-of-type {
  border-top: 0; }

.PublicationAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__section-title {
  padding: 10px 0 5px 10px;
  font-weight: 500;
  font-style: italic; }

.PublicationAutoSuggestInput .react-autosuggest__suggestions-container {
  display: none; }

.PublicationAutoSuggestInput .react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.PublicationAutoSuggestInput .react-autosuggest__suggestion {
  cursor: pointer;
  padding: 5px 10px; }

.PublicationAutoSuggestInput .react-autosuggest__suggestion--highlighted span {
  border-bottom: 2px solid #e9711c;
  color: #e9711c; }

.PublicationAutoSuggestInput .react-autosuggest__suggestion--focused span {
  border-bottom: 2px solid #e9711c;
  color: #e9711c; }

.SearchBox {
  font-family: Arial, sans-serif; }
  .SearchBox .icon-pad {
    padding-right: 44px !important; }
  .SearchBox .SearchSubmitButton {
    position: absolute;
    right: 4px; }
  .SearchBox .padded {
    padding: 4px; }
  .SearchBox .panel, .SearchBox .panel-s {
    padding: 8px 0; }
  .SearchBox input {
    float: left;
    border: 1px solid #B9B9B9;
    padding: 0 8px;
    width: 100%;
    height: 32px;
    line-height: 32px;
    font-size: 15px; }
  .SearchBox .validation-error-tooltip-pub {
    z-index: 1;
    margin-top: -4px;
    font-size: 14px; }
  .SearchBox .searchbox-form {
    padding: 0 24px; }
  .SearchBox .row {
    position: relative; }
  .SearchBox .advanced-search {
    margin-top: 2px;
    margin-left: 4px; }
    @media only screen and (min-width: 62em) {
      .SearchBox .advanced-search {
        position: absolute;
        bottom: 0;
        margin-top: 0;
        margin-left: 16px;
        line-height: 1.2em; } }
  .SearchBox .advanced-search-link {
    font-size: 12px; }
    .SearchBox .advanced-search-link:hover, .SearchBox .advanced-search-link:focus {
      color: #e9711c; }
  .SearchBox .PublicationAutoSuggestInput .react-autosuggest__container--open .react-autosuggest__suggestions-container {
    font-size: .7rem; }

.field-message, .form-message {
  display: none;
  padding-right: 16px;
  max-height: 68px; }
  @media only screen and (min-width: 62em) {
    .field-message, .form-message {
      display: block; } }

.field-message {
  padding-left: 32px; }
  .field-message .field-message-label {
    display: table-cell;
    padding-bottom: 4px;
    vertical-align: bottom; }

.message {
  display: table;
  height: 60px;
  line-height: 1.2rem;
  font-size: .8rem; }

.form-message {
  padding-right: 16px; }
  .form-message .error-message {
    position: fixed;
    width: 20%;
    max-width: 320px; }
    .form-message .error-message .error-message-content {
      padding-right: 16px; }
    .form-message .error-message .warning-box {
      float: left;
      border: 2px solid #C83727;
      background: #C83727;
      padding: 4px 4px 4px 3.5px;
      width: 26px;
      height: 26px; }
      .form-message .error-message .warning-box svg {
        fill: #fff; }
    .form-message .error-message .text-container {
      margin-left: 42px;
      padding-top: 3px; }

.message-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 68px; }

.LoadingSpinner {
  position: relative;
  margin: 300px auto;
  width: 40px;
  height: 40px; }
  .LoadingSpinner .double-bounce1,
  .LoadingSpinner .double-bounce2 {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
            animation: sk-bounce 2s infinite ease-in-out;
    opacity: .6;
    border-radius: 50%;
    background-color: #323232;
    width: 100%;
    height: 100%; }
  .LoadingSpinner .double-bounce2 {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }

@-webkit-keyframes sk-bounce {
  100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes sk-bounce {
  100% {
    -webkit-transform: scale(0);
            transform: scale(0); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); } }

.no-js .FacetList {
  visibility: hidden; }

.no-js .Feedback {
  visibility: hidden; }

.no-js .ResultHeader {
  visibility: hidden; }

.no-js .ResultItem .select-result {
  visibility: hidden; }

.no-js .ArticlePreview {
  visibility: hidden; }

html body {
  /* base font settings */
  color: #505050;
  /* base elements */
  /* override the border styles until we have defaults from sd-ui */ }
  html body h2 {
    margin: 0;
    line-height: 1.4rem;
    font-size: 1rem;
    font-weight: normal; }
  html body .advanced-search {
    border: 0 !important; }
  html body input[type='text'], html body input[type='search'] {
    border-radius: 0 !important;
    -webkit-appearance: none !important; }
    html body input[type='text']::-ms-clear, html body input[type='search']::-ms-clear {
      display: none; }

html .container, html .panel, html .panel-s {
  overflow: auto; }
  html .container > .stick-to-right, html .panel > .stick-to-right, html .panel-s > .stick-to-right {
    float: right; }
  html .container > .stick-to-left, html .panel > .stick-to-left, html .panel-s > .stick-to-left {
    float: left; }

html .skip {
  position: absolute;
  left: -10000px;
  background-color: #fff;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: .8rem; }
  html .skip:focus {
    left: 0;
    z-index: 99999999;
    width: auto;
    height: auto; }

.u-visited-link a:visited {
  color: #702862 !important; }
  .u-visited-link a:visited em {
    color: #702862 !important; }

.u-visited-link a:hover, .u-visited-link a:focus {
  color: #e9711c !important; }
  .u-visited-link a:hover em, .u-visited-link a:focus em {
    color: #e9711c !important; }

.glyph {
  vertical-align: middle; }

@media screen and (max-width: 575px) {
  .no-scroll {
    overflow: hidden; } }

.container, .panel, .panel-s {
  margin: auto; }

.center-container {
  margin: auto;
  max-width: 1440px; }

/* we have to do this until we throw away sdfe style repo  */
header a:hover,
header a:hover *,
header a *:hover,
header a *:hover * {
  text-decoration: none; }

.panel, .panel-s {
  background-color: #F5F5F5;
  padding: 8px 24px; }
  .panel.transparent, .transparent.panel-s {
    background-color: transparent; }
