@charset "UTF-8";
/**
 * Vendors
 */
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

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

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

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

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

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

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

td,
th {
  padding: 0;
}
/**
 * Config
 * Order of imported files matter here
 */
@font-face {
  font-family: "ITC Avant Garde Pro Md";
  src: url("/main/fonts/ITCAvantGardePro-Bold.eot");
  src: local("ITC Avant Garde Gothic Pro Bold"), local("ITCAvantGardePro-Bold"), url("/main/fonts/ITCAvantGardePro-Bold.eot?#iefix") format("embedded-opentype"), url("/main/fonts/ITCAvantGardePro-Bold.woff2") format("woff2"), url("/main/fonts/ITCAvantGardePro-Bold.woff") format("woff"), url("/main/fonts/ITCAvantGardePro-Bold.ttf") format("truetype"), url("/main/fonts/ITCAvantGardePro-Bold.svg#ITCAvantGardePro-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "ITC Avant Garde Pro Md";
  src: url("/main/fonts/ITCAvantGardePro-BoldObl.eot");
  src: local("ITC Avant Garde Gothic Pro Bold Oblique"), local("ITCAvantGardePro-BoldObl"), url("/main/fonts/ITCAvantGardePro-BoldObl.eot?#iefix") format("embedded-opentype"), url("/main/fonts/ITCAvantGardePro-BoldObl.woff2") format("woff2"), url("/main/fonts/ITCAvantGardePro-BoldObl.woff") format("woff"), url("/main/fonts/ITCAvantGardePro-BoldObl.ttf") format("truetype"), url("/main/fonts/ITCAvantGardePro-BoldObl.svg#ITCAvantGardePro-BoldObl") format("svg");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "mrseavesxlsernarot-reg";
  src: url("/main/fonts/mrseavesxlsernarot-reg-webfont.eot");
  src: url("/main/fonts/mrseavesxlsernarot-reg-webfont.eot?#iefix") format("embedded-opentype"), url("/main/fonts/mrseavesxlsernarot-reg-webfont.woff2") format("woff2"), url("/main/fonts/mrseavesxlsernarot-reg-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "mrseavesxlsernarot-regitalic";
  src: url("/main/fonts/mrseavesxlsernarot-regitalic-webfont.eot");
  src: url("/main/fonts/mrseavesxlsernarot-regitalic-webfont.eot?#iefix") format("embedded-opentype"), url("/main/fonts/mrseavesxlsernarot-regitalic-webfont.woff2") format("woff2"), url("/main/fonts/mrseavesxlsernarot-regitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/**
 *
 * Colors
 *
 **/
/**
 *
 * Fonts
 *
 **/
/**
 *
 * Grid
 *
 **/
/**
 *
 * Transition Timing Functions
 *
 **/
/**
 *
 * Default Spacing/Padding
 *
 **/
/**
 * Convert px to rem.
 *
 * @param int $size
 *   Size in px unit.
 * @return string
 *   Returns px unit converted to rem.
 */
/**
 *
 * Iterate through $colors to easily use these values
 * to create utility classes
 *
 * @param array $colors
 *
 **/
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInUpHalf {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpHalf {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInDownHalf {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownHalf {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeOutUpHalf {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}

@keyframes fadeOutUpHalf {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}

@-webkit-keyframes fadeOutDownHalf {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}

@keyframes fadeOutDownHalf {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}

@-webkit-keyframes arrowMovesRight {
  0% {
    -webkit-transform: translateX(0) rotate(-45deg);
    transform: translateX(0) rotate(-45deg);
    opacity: 1;
  }
  49% {
    -webkit-transform: translateX(20px) rotate(-45deg);
    transform: translateX(20px) rotate(-45deg);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-20px) rotate(-45deg);
    transform: translateX(-20px) rotate(-45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(-45deg);
    transform: translateX(0) rotate(-45deg);
    opacity: 1;
  }
}

@keyframes arrowMovesRight {
  0% {
    -webkit-transform: translateX(0) rotate(-45deg);
    transform: translateX(0) rotate(-45deg);
    opacity: 1;
  }
  49% {
    -webkit-transform: translateX(20px) rotate(-45deg);
    transform: translateX(20px) rotate(-45deg);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-20px) rotate(-45deg);
    transform: translateX(-20px) rotate(-45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(-45deg);
    transform: translateX(0) rotate(-45deg);
    opacity: 1;
  }
}

/**
 *
 * bLazy Load
 *
 **/
.b-lazy {
  max-width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.7s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0.7s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.b-lazy.b-loaded {
  opacity: 1;
}

/**
 *
 * Scroll Reveal
 *
 **/
.ani-reveal,
.ani-reveal--bottom {
  visibility: hidden;
}

/**
 *
 * Hover Effects
 *
 **/
.gb-effect--scale {
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  background-color: #043B82;
}

.gb-effect--scale .gb-u-image--overlay {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
  -webkit-transition: opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0.4s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0.4s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0.4s cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0.4s cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0.4s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-effect--scale .gb-u-image--overlay:after {
  -webkit-transition: background-color 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: background-color 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-effect--scale .gb-u-ani--text {
  max-width: 31.25rem;
  color: #FFFFFF;
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.085, 0, 0.99);
  display: none;
}

@media (min-width: 48.01em) {
  .gb-effect--scale .gb-u-ani--text {
    display: block;
  }
}

.gb-effect--scale h2, .gb-effect--scale h3 {
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: color 0.5s cubic-bezier(0.55, 0.085, 0, 0.99);
}

@media (min-width: 48.01em) {
  .gb-effect--scale:hover .gb-u-image--overlay {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
    -webkit-transition: opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 1.8s linear;
    transition: opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 1.8s linear;
    transition: transform 1.8s linear, opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99);
    transition: transform 1.8s linear, opacity 0.9s cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 1.8s linear;
  }
  .gb-effect--scale:hover .gb-u-image--overlay:after {
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: background-color 1.3s linear;
    transition: background-color 1.3s linear;
  }
}

@media (min-width: 48.01em) {
  .gb-effect--scale:hover .gb-u-ani--text {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.gb-effect--scale:hover h2, .gb-effect--scale:hover h3 {
  color: #84BAFF;
}

.gb-effect--scale:focus {
  height: 100%;
}

.gb-effect--with-text .gb-u-ani--text {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  display: block;
}

@media (min-width: 48.01em) {
  .gb-effect--with-text .gb-u-ani--text {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
}

@media (min-width: 48.01em) {
  .gb-effect--with-text:hover .gb-u-ani--text {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/**
 *
 * Menu Dropdown Modal Animations
 *
 **/
@-webkit-keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes scaleUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 48.01em) {
  .gb-ani--scaleUp {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/**
 *
 * Animation Delays
 *
 **/
.delay-0s {
  -webkit-animation-delay: 0 !important;
  animation-delay: 0 !important;
}

.delay-01s {
  -webkit-animation-delay: 0.1s !important;
  animation-delay: 0.1s !important;
}

.delay-02s {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay-03s {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay-04s {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.delay-05s {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.delay-06s {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

.delay-07s {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}

.delay-08s {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}

.delay-09s {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

.delay-1s {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.delay-1-1s {
  -webkit-animation-delay: 1.1s !important;
  animation-delay: 1.1s !important;
}

.delay-1-2s {
  -webkit-animation-delay: 1.2s !important;
  animation-delay: 1.2s !important;
}

.delay-1-3s {
  -webkit-animation-delay: 1.3s !important;
  animation-delay: 1.3s !important;
}

.delay-1-4s {
  -webkit-animation-delay: 1.4s !important;
  animation-delay: 1.4s !important;
}

.delay-1-5s {
  -webkit-animation-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}

.delay-1-6s {
  -webkit-animation-delay: 1.6s !important;
  animation-delay: 1.6s !important;
}

.delay-1-7s {
  -webkit-animation-delay: 1.7s !important;
  animation-delay: 1.7s !important;
}

.delay-1-8s {
  -webkit-animation-delay: 1.8s !important;
  animation-delay: 1.8s !important;
}

.delay-1-9s {
  -webkit-animation-delay: 1.9s !important;
  animation-delay: 1.9s !important;
}

.delay-2s {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important;
}

.delay-2-1s {
  -webkit-animation-delay: 2.1s !important;
  animation-delay: 2.1s !important;
}

.delay-2-2s {
  -webkit-animation-delay: 2.2s !important;
  animation-delay: 2.2s !important;
}

.delay-2-3s {
  -webkit-animation-delay: 2.3s !important;
  animation-delay: 2.3s !important;
}

.delay-2-4s {
  -webkit-animation-delay: 2.4s !important;
  animation-delay: 2.4s !important;
}

.delay-2-5s {
  -webkit-animation-delay: 2.5s !important;
  animation-delay: 2.5s !important;
}

/**
 * Library
 */
/*! Flickity v2.1.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #1199FF;
  box-shadow: 0 0 0 5px #1199FF;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: #333333;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/**
 * Base
 */
/*------------------------------------*\
    #BASE
\*------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "mrseavesxlsernarot-reg", serif;
  font-weight: normal;
  font-size: 20px;
  font-size: 1.275rem;
  line-height: 26px;
  letter-spacing: -0.04em;
  overflow-x: hidden;
}

@media (min-width: 30.01em) {
  body {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 30px;
  }
}

@media (min-width: 64.01em) {
  body {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 38px;
  }
}

@media (min-width: 131.26em) {
  body {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 38px;
  }
}

a {
  text-decoration: none;
  color: #CC4E00; /* ajc - fix WAVE contrast error (was #FE6301) */
  -webkit-transition: color 0.4s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: color 0.4s cubic-bezier(0.55, 0.085, 0, 0.99);
}

a[target="_blank"] {
  position: relative;
  padding-right: 1.5625rem;
}

a[target="_blank"]:after {
  content: "";
  background-image: url("/main/images/svg-external.svg");
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  right: 0;
  bottom: 0.1875rem;
  width: 1.1875rem;
  height: 1.1875rem;
}

a:hover {
  color: #053371;
}

a:hover svg {
  fill: #053371;
}

.gb-c-footer a:hover svg {
  fill: #84BAFF;
}

a.gb-u-text-color-white:hover {
  color: #84BAFF;
}

table {
  border-collapse: collapse;
  width: 100%;
}

table a, .gb-c-longform table a {
  color: #1948B4;
}

thead {
  background-color: #053371;
  color: #FFFFFF;
  outline: 0;
}

th {
  /* white-space: nowrap; */ /* ajc - prevented table cells from wrapping */
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-align: left;
  font-weight: bold;
  padding: 0.9375rem 0.9375rem;
  vertical-align: top; /* ajc - align cell header to top */
}

@media (min-width: 80.01em) {
  th {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

td {
  /* white-space: nowrap; */ /* ajc - prevented table cells from wrapping */
  border: 0;
  padding: 0.9375rem 0.9375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  vertical-align: top; /* ajc - align cell data to top */
}

.gb-x-col-5 {width:5%;}   /* ajc - adding table column width controls */
.gb-x-col-10 {width:10%;}
.gb-x-col-15 {width:15%;}
.gb-x-col-20 {width:20%;}
.gb-x-col-25 {width:25%;}
.gb-x-col-30 {width:30%;}
.gb-x-col-33 {width:33%;}
.gb-x-col-40 {width:40%;}
.gb-x-col-45 {width:45%;}
.gb-x-col-50 {width:50%;}
.gb-x-col-55 {width:55%;}
.gb-x-col-60 {width:60%;}
.gb-x-col-66 {width:66%;}
.gb-x-col-70 {width:70%;}
.gb-x-col-75 {width:75%;}
.gb-x-col-80 {width:80%;}
.gb-x-col-85 {width:85%;}
.gb-x-col-90 {width:90%;}
.gb-x-col-95 {width:95%;}

@media (min-width: 80.01em) {
  td {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

tbody tr:nth-child(even) {
  background-color: #F5F5F5;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
figure {
  margin: 0;
}

address {
  font-style: normal;
}

b {
  font-weight: bold;
}

button {
  outline: 0;
  margin: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

hr {
  height: 0.25rem;
  background-color: #E9E9E9;
  width: 100%;
  border: 0;
  margin: 1.5625rem 0;
}

@media (min-width: 30.01em) {
  hr {
    margin: 3.125rem 0;
  }
}

/********************
** Keyboard Accessibility
********************/

/* ajc - remove js-dependent class from element targeting
html.keyboard-user a:focus,
html.keyboard-user button:focus {
*/
html a:focus,
html button:focus {
  outline: 2px dashed #FE6301 !important;
  border: 0;
  -webkit-transition: none;
  transition: none;
  -webkit-clip-path: none;
  clip-path: none;
}

.element-invisible,
.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.gb-l {
  /**
	 *
	 * .gb-l-grid
	 * General container for the site. This will keep the content in the grid and add padding 
	 * on both the left and right side
	 *
	 **/
  /**
	 *
	 * General Flexible Layout
	 * .gb-l-split--general
	 * Used on most pages where is a three column layout. Sidebar + main content + sidebar
	 * There should only be three direct child elements with the class of .column to make this work. 
	 *
	 **/
  /**
	 *
	 * Similiar to the .gb-l-split--general, this class specific to the students page. 
	 * Used on: Student template
	 **/
  /**
	 *
	 * Used on: office and distincitive-programs templates
	 *
	 **/
  /**
	 * Uniqe layout for the event detail page
	 * Used on: Event detail page
	 *
	 **/
  /**
	 *
	 * Used on: academics and admissions templates
	 *
	 **/
}

.gb-l-grid {
  padding-left: 3.8961%;
  padding-right: 3.8961%;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  max-width: 2018px;
  /**
		 *
		 * This is the same as .gb-l-grid but allows content to fall outside the grid
		 * we use this when images extend pass the grid
		 *
		 **/
  /**
		 *
		 * This layout is used to keep the content container but centered. 
		 * Used on the story detail page
		 *
		 **/
}

.gb-l-grid--overflow, .gb-l-grid--fluid {
  width: 100%;
  margin: 0 auto;
  max-width: 2018px;
}

.gb-l-grid--fluid {
  overflow: hidden;
}

@media (max-width: 47.99em) {
  .gb-l-grid--fluid {
    padding-left: 3.8961%;
    padding-right: 3.8961%;
  }
}

.gb-l-grid--overflow {
  padding-left: 3.8961%;
  padding-right: 3.8961%;
}

.gb-l-grid--overflow-large {
  padding-left: 3.8961%;
  padding-right: 3.8961%;
}

@media (min-width: 64.01em) {
  .gb-l-grid--overflow-large {
    overflow-x: auto;
  }
}

@media (max-width: 47.99em) {
  .gb-l-grid--contain {
    padding-left: 3.8961%;
    padding-right: 3.8961%;
    width: 100%;
    margin: 0 auto;
    max-width: 2018px;
  }
}

@media (min-width: 64.01em) {
  .gb-l-grid--centered {
    width: 50%;
    margin: 0 auto;
  }
}

@media (min-width: 64.01em) {
  .gb-l-grid--centered-large {
    width: 75%;
    margin: 0 auto;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-1 > .column {
    padding-top: 2.25rem;
    width: 55%;
    margin: 0 auto;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-1--centered > .column {
    padding-top: 2.25rem;
    width: 55%;
    margin: 0 auto;
  }
}

.gb-l-split-4-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-l-split-4-2 {
    padding-top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 0;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4-2 > .column:nth-child(1) {
    width: 66.66667%;
    margin-top: 6.25rem;
    margin-left: 3.8961%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4-2 > .column:nth-child(2) {
    width: 33.33333%;
    margin-left: 3.8961%;
    margin-top: 5rem;
  }
}

.gb-l-split--general {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 64.01em) {
  .gb-l-split--general {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split--general > .column:nth-child(1) {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
    max-width: calc(25% - 3.8961%);
  }
}

@media (min-width: 64.01em) {
  .gb-l-split--general > .column:nth-child(2) {
    padding-left: 3.8961%;
    -webkit-box-flex: 4;
    -webkit-flex: 4;
    -ms-flex: 4;
    flex: 4;
  }
}

.gb-l-split--general > .column:nth-child(3) {
  padding-top: 0.9375rem;
}

@media (min-width: 48.01em) {
  .gb-l-split--general > .column:nth-child(3) {
    padding-top: 1.875rem;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split--general > .column:nth-child(3) {
    padding-left: 3.8961%;
    padding-top: 3.75rem;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }
}

.gb-l-split--student > .column:nth-child(2) {
  padding-top: 0;
}

.gb-l-split--sidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 80.01em) {
  .gb-l-split--sidebar {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.gb-l-split--sidebar.gb-l-split--student > .column:nth-child(2) {
  padding-top: 0;
}

.gb-l-split--sidebar.gb-l-split--dp > .column:nth-child(1) {
  padding-top: 1.875rem;
}

@media (min-width: 48.01em) {
  .gb-l-split--sidebar.gb-l-split--dp > .column:nth-child(1) {
    padding-top: 3.75rem;
  }
}

@media (min-width: 80.01em) {
  .gb-l-split--sidebar.gb-l-split--dp > .column:nth-child(1) {
    padding-top: 3.75rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.gb-l-split--sidebar.gb-l-split--dp:nth-child(2) {
  padding-top: 0;
}

.gb-l-split--sidebar > .column:nth-child(1) {
  padding-top: 1.875rem;
}

@media (min-width: 48.01em) {
  .gb-l-split--sidebar > .column:nth-child(1) {
    padding-top: 3.75rem;
  }
}

@media (min-width: 80.01em) {
  .gb-l-split--sidebar > .column:nth-child(1) {
    -webkit-box-flex: 4;
    -webkit-flex: 4;
    -ms-flex: 4;
    flex: 4;
    padding-top: 3.75rem;
    padding-left: 1.94805%;
    padding-right: 1.94805%;
  }
}

.gb-l-split--sidebar > .column:nth-child(2) {
  padding-top: 1.875rem;
}

@media (min-width: 48.01em) {
  .gb-l-split--sidebar > .column:nth-child(2) {
    padding-top: 3.75rem;
  }
}

@media (min-width: 80.01em) {
  .gb-l-split--sidebar > .column:nth-child(2) {
    padding-top: 3.75rem;
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    -ms-flex: 2;
    flex: 2;
    padding-left: 1.94805%;
  }
}

.gb-l-split-3--event-detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-l-split-3--event-detail {
    padding-top: 2.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: 0;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3--event-detail .column {
    width: 33%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3--event-detail .column:nth-child(1) {
    width: 25%;
    padding-right: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3--event-detail .column:nth-child(2) {
    width: 50%;
    padding-left: 1.94805%;
    padding-right: 1.94805%;
    padding-top: 2.25rem;
  }
}

.gb-l-split-3--event-detail .column:nth-child(3) {
  padding-top: 2.25rem;
}

@media (min-width: 64.01em) {
  .gb-l-split-3--event-detail .column:nth-child(3) {
    width: 25%;
    padding-top: 2.25rem;
    padding-left: 1.94805%;
  }
}

.gb-l-split-2-6 {
  max-width: 2018px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media (min-width: 55.6975em) {
  .gb-l-split-2-6 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-2-6 > .column:first-child {
    padding-left: 3.8961%;
    width: 25%;
  }
}

.gb-l-split-2-6 > .column:last-child {
  width: 100%;
}

@media (min-width: 64.01em) {
  .gb-l-split-2-6 > .column:last-child {
    width: 75%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-2 > .column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-2 > .column:nth-child(1) {
    padding-right: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-2 > .column:nth-child(2) {
    padding-left: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3 > .column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3 > .column:nth-child(1) {
    padding-right: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3 > .column:nth-child(2) {
    padding-left: 1.94805%;
    padding-right: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-3 > .column:nth-child(3) {
    padding-left: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4 > .column {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4 > .column:nth-child(1) {
    padding-right: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4 > .column:nth-child(2) {
    padding-left: 1.94805%;
    padding-right: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4 > .column:nth-child(3) {
    padding-right: 1.94805%;
    padding-left: 1.94805%;
  }
}

@media (min-width: 64.01em) {
  .gb-l-split-4 > .column:nth-child(4) {
    padding-left: 1.94805%;
  }
}

.gb-l-cell-demo {
  min-height: 40px;
  background: rgba(51, 153, 204, 0.2);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border: 1px solid #33cccc;
  border-radius: 3px;
}

.gb-l-cell-demo:hover {
  background: rgba(51, 153, 204, 0.2);
}

/**
 * Components
 */
.gb-c-header {
  background-color: transparent;
  z-index: 100;
  color: #FFFFFF;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
}

.gb-c-header__container {
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 64.01em) {
  .gb-c-header__container {
    padding-top: 2.3125rem;
    padding-bottom: 1.0625rem;
  }
}

.gb-c-header__logo-link {
  display: block;
}

.gb-c-header__logo-icon {
  width: 12.5rem;
  height: 3.875rem;
  fill: #FFFFFF;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (min-width: 64.01em) {
  .gb-c-header__logo-icon {
    width: 11.5rem;
    height: 3rem;
  }
}

.gb-c-header__logo-icon:hover, .gb-c-header__logo-icon:focus {
  fill: #FFFFFF;
  opacity: 0.55;
}

.gb-c-header__navigation {
  position: relative;
}

@media (min-width: 64.01em) {
  .gb-c-header__navigation {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

/**
 *
 * Header - Toggle
 *
 **/
.gb-c-header-toggle {
  position: absolute;
  top: -0.5rem;
  right: 0;
  opacity: 1;
  -webkit-transition: opacity 0.7s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0.7s cubic-bezier(0.55, 0.085, 0, 0.99);
}

@media (min-width: 64.01em) {
  .gb-c-header-toggle {
    top: 0.4375rem;
  }
}

.gb-c-header-toggle--search {
  display: none;
}

@media (min-width: 64.01em) {
  .gb-c-header-toggle--search {
    display: inline-block;
    margin-right: 3.125rem;
    width: 1.125rem;
    height: 1.375rem;
  }
}

.gb-c-header-toggle__icon {
  width: 1.125rem;
  height: 1.375rem;
  display: inline-block;
  margin-top: 0.125rem;
}

.gb-c-header-toggle__icon .line {
  width: 100%;
  height: 2px;
  background-color: white;
  display: block;
  margin: 0 auto 0.3125rem auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gb-c-header-toggle__svg {
  fill: #FFFFFF;
}

.gb-c-header-toggle:hover {
  opacity: 0.65;
}

.gb-c-header-toggle.modal--close .gb-c-header-toggle__icon .line:nth-child(1), .gb-c-header-toggle.modal--close .gb-c-header-toggle__icon .line:nth-child(2), .gb-c-header-toggle.modal--close .gb-c-header-toggle__icon .line:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.gb-c-header-toggle.modal--close .gb-c-header-toggle__icon .line:nth-child(1) {
  -webkit-transform: translateY(14px) rotate(45deg);
  transform: translateY(14px) rotate(45deg);
}

.gb-c-header-toggle.modal--close .gb-c-header-toggle__icon .line:nth-child(2) {
  opacity: 0;
}

.gb-c-header-toggle.modal--close .gb-c-header-toggle__icon .line:nth-child(3) {
  -webkit-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
}

/**
 *
 * Header - Modal
 *
 **/
.gb-c-header-modal {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 101vh;
  background-color: rgba(4, 59, 130, 0.95);
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  z-index: 99;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s, visibility 0s 0.4s;
  transition: opacity 0.4s, visibility 0s 0.4s;
  border-top: 0.25rem solid #FE6301;
}

@media (min-width: 48.01em) {
  .gb-c-header-modal {
    background-color: #053371;
    border-top: 0;
  }
}

.gb-c-header-modal.modal__open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (min-width: 48.01em) {
  .gb-c-header-modal.modal__open .gb-c-header-modal__left--inner:before {
    will-change: transform;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform 800ms cubic-bezier(0, 0, 0.01, 1) 0.1s;
    transition: -webkit-transform 800ms cubic-bezier(0, 0, 0.01, 1) 0.1s;
    transition: transform 800ms cubic-bezier(0, 0, 0.01, 1) 0.1s;
    transition: transform 800ms cubic-bezier(0, 0, 0.01, 1) 0.1s, -webkit-transform 800ms cubic-bezier(0, 0, 0.01, 1) 0.1s;
  }
}

.gb-c-header-modal.modal__open .gb-ani--scaleUp {
  -webkit-animation-name: scaleUp;
  animation-name: scaleUp;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.gb-c-header-modal__top {
  display: none;
}

@media (min-width: 48.01em) {
  .gb-c-header-modal__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1.8rem;
    padding-bottom: 2.7rem;
  }
  .gb-c-header-modal__top .gb-c-search-form {
    position: absolute;
    top: -2.5rem;
    left: 7%;
    width: 45%;
  }
}

@media (min-width: 64.01em) {
  .gb-c-header-modal__top {
    padding-top: 3.125rem;
    padding-bottom: 4.5rem;
  }
}

@media (min-width: 48.01em) {
  .gb-c-header-modal__bottom .gb-c-search-form {
    display: none;
  }
}

.gb-c-header-modal .gb-c-header-toggle {
  top: 1.75rem;
  right: 3.8961%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 888;
}

@media (min-width: 48.01em) {
  .gb-c-header-modal .gb-c-header-toggle {
    top: 3.125rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-header-modal .gb-c-header-toggle {
    top: 6.5625rem;
  }
}

.gb-c-header-modal .gb-c-header-toggle__label {
  opacity: 0;
  line-height: 1.2;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  margin-right: 0.9375rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (min-width: 64.01em) {
  .gb-c-header-modal .gb-c-header-toggle__label {
    opacity: 1;
  }
}

.gb-c-header-modal .gb-c-header-toggle__svg {
  margin-top: 0.375rem;
}

.gb-c-header-modal__nav {
  position: relative;
  width: 75%;
}

.gb-c-header-modal__left {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 33.3333%;
  -ms-flex: 1 1 33.3333%;
  flex: 1 1 33.3333%;
  padding: 0 3.8961%;
}

@media (min-width: 80.01em) {
  .gb-c-header-modal__left {
    padding: 5rem 3.8961%;
  }
  .gb-c-header-modal__left:before, .gb-c-header-modal__left:after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 5rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .gb-c-header-modal__left:before {
    top: 0;
    background-color: #053371;
  }
  .gb-c-header-modal__left:after {
    bottom: 0;
    background-color: #043B82;
  }
}

@media (min-width: 80.01em) {
  .gb-c-header-modal__left {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 25%;
    -ms-flex: 1 0 25%;
    flex: 1 0 25%;
  }
}

.gb-c-header-modal__left--inner {
  width: 100%;
  height: 100%;
  padding: 0 0 3.6rem 0;
}

@media (min-width: 48.01em) {
  .gb-c-header-modal__left--inner {
    padding: 2.7rem 0;
  }
  .gb-c-header-modal__left--inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: -1;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  .gb-c-header-modal__left--inner a { /* ajc - fix WAVE contrast error (color was unspecified) */
    color: #222222;
    background-color: #FFFFFF;
  }
}

.gb-c-header-modal__right {
  display: none;
}

@media (min-width: 48.01em) {
  .gb-c-header-modal__right {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 66.6666%;
    -ms-flex: 1 1 66.6666%;
    flex: 1 1 66.6666%;
    display: block;
  }
}

@media (min-width: 80.01em) {
  .gb-c-header-modal__right {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 75%;
    -ms-flex: 1 1 75%;
    flex: 1 1 75%;
  }
}

.gb-c-header-modal .gb-c-news-events {
  display: none;
}

@media (min-width: 48.01em) {
  .gb-c-header-modal .gb-c-news-events {
    display: block;
  }
}

.gb-c-search-form__outer {
  position: relative;
  z-index: 1;
}

@media (max-width: 47.99em) {
  .gb-c-search-form__outer {
    margin-bottom: 1.8rem;
    padding-top: 3.6rem;
    padding-bottom: 1.8rem;
  }
}

@media (max-width: 63.99em) {
  .gb-c-search-form__outer:before {
    content: "";
    height: 100%;
    background-color: #053371;
    position: absolute;
    bottom: 0;
    width: 3000%;
    left: -1000%;
    display: block;
    z-index: -1;
  }
}

.gb-c-search-form {
  position: relative;
}

.gb-c-search-form label {
  display: block;
}

.gb-c-search-form input[type="search"] {
  border: 0;
  color: #222222;
  padding: 0.5625rem 2.8125rem 0.5625rem 0.9375rem;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.gb-c-search-form input[type="search"]:focus {
  outline: none;
  background-color: #E9E9E9;
}

.gb-c-search-form .form-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 3.125rem;
  height: 3.125rem;
}

.gb-c-search-form .form-actions .gb-c-header-toggle__svg {
  position: absolute;
  top: 0.75rem;
  right: 0.9375rem;
  width: 1.25rem;
  height: 1.25rem;
  fill: #0B459E;
}

@media (min-width: 48.01em) {
  .gb-c-search-form .form-actions .gb-c-header-toggle__svg {
    top: 0.625rem;
  }
}

.gb-c-search-form .form-actions input[type="submit"] {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  z-index: 5;
  text-indent: -999em;
  outline: 0;
  border: 0;
}

.gb-c-search-form .form-actions input[type="submit"]:focus {
  border: 0;
}

.gb-c-navigation-menu__item {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-menu__item {
    font-size: 22px;
    font-size: 1.325rem;
  }
}

@media (min-width: 131.26em) {
  .gb-c-navigation-menu__item {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.gb-c-navigation-menu__item a {
  color: #FFFFFF;
}

@media (min-width: 48.01em) {
  .gb-c-navigation-menu__item a {
    color: #222222;
  }
}

.gb-c-navigation-menu__item a:hover, .gb-c-navigation-menu__item a:focus {
  color: #84BAFF;
}

@media (min-width: 48.01em) {
  .gb-c-navigation-menu__item a:hover, .gb-c-navigation-menu__item a:focus {
    color: #053371;
  }
}

.gb-c-navigation-primary {
  margin-bottom: 2.7rem;
  width: 100%;
}

@media (min-width: 48.01em) {
  .gb-c-navigation-primary {
    display: none;
  }
}

.gb-c-navigation-primary .gb-c-navigation-menu__item {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 0.72rem;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-primary .gb-c-navigation-menu__item {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

@media (min-width: 131.26em) {
  .gb-c-navigation-primary .gb-c-navigation-menu__item {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

@media (max-width: 47.99em) {
  .gb-c-navigation-secondary{
    display: inline-block;
    vertical-align: top;
    width: 58%;
  }
  .gb-c-navigation-tertiary {
    display: inline-block;
    vertical-align: top;
    width: 38%;
  }
}

@media (min-width: 48.01em) {
  .gb-c-navigation-tertiary {
    border-top: 0.1875rem solid #FE6301;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-navigation-tertiary {
    border-top: 0.375rem solid #FE6301;
    margin-top: 2.6rem;
    padding-top: 1.7rem;
  }
}

.gb-c-footer {
  background-color: #053371;
  color: #FFFFFF;
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
}

@media (min-width: 64.01em) {
  .gb-c-footer {
    padding-top: 6.25rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-footer__header {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 1.0625rem;
    margin-bottom: 1.40625rem;
    border-bottom: 2px solid #0B459E;
    margin-bottom: 2.875rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.gb-c-footer__heading {
  padding-bottom: 1.0625rem;
  margin-bottom: 1.40625rem;
  border-bottom: 2px solid #0B459E;
}

@media (min-width: 64.01em) {
  .gb-c-footer__heading {
    border: 0;
    padding: 0;
    margin: 0;
  }
}

.gb-c-footer__block {
  margin-bottom: 1.5625rem;
}

@media (min-width: 64.01em) {
  .gb-c-footer__block {
    margin-bottom: 0;
  }
}

.gb-c-footer__block:last-child {
  margin-bottom: 0;
}

@media (min-width: 64.01em) {
  .gb-c-footer__block--address {
    width: 25%;
  }
}

@media (min-width: 64.01em) {
  .gb-c-footer__block--footer-navigation {
    width: 50%;
  }
}

@media (min-width: 64.01em) {
  .gb-c-footer__block--copyright {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.gb-c-footer__row {
  padding-bottom: 1.5625rem;
  margin-bottom: 1.5625rem;
  border-bottom: 0.5px solid #0B459E;
}

@media (min-width: 64.01em) {
  .gb-c-footer__row {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.1875rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-footer__row-copy {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: first baseline;
    -webkit-align-items: first baseline;
    -ms-flex-align: first baseline;
    align-items: first baseline;
  }
}

@media (min-width: 64.01em) {
  .gb-c-footer__ig {
    position: relative;
    width: 25%; max-width: 20rem;
  }
}

.gb-c-footer a {
  color: #84BAFF;
  font-weight: bold;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}

.gb-c-footer a:hover, .gb-c-footer a:focus, .gb-c-footer a.is-current {
  color: #FFFFFF;
}

/**
 *
 * Skip Link
 *
 **/
.gb-c-navigation-skip__link {
  -webkit-transition: none;
  transition: none;
}

.gb-c-navigation-skip__link:focus {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  height: auto;
  margin: auto;
  overflow: hidden;
  padding: 1.8rem;
  position: fixed !important;
  width: auto;
  word-wrap: normal !important;
  background-color: #CC4E00 !important; /* ajc - fix Siteimprove contrast error (was FE6301) */
  top: 0;
  left: 0;
  z-index: 9999;
  outline: none;
  color: #FFFFFF !important;
  font-family: "ITC Avant Garde Pro Md";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-navigation-skip__link:focus {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-navigation-skip__link:focus {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-navigation-skip__link:focus {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}

/**
 *
 * Main Navigation
 *
 **/
.gb-c-navigation-main {
  display: none;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-main {
    display: block;
  }
}

.gb-c-navigation-main__item {
  line-height: 1;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-main__item {
    margin-right: 1.5625rem;
    display: inline-block;
  }
}

@media (min-width: 80.01em) {
  .gb-c-navigation-main__item {
    margin-right: 3.125rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-navigation-main__item.is-first {
    display: none;
  }
}

.gb-c-navigation-main__link {
  position: relative;
  color: #FFFFFF;
  line-height: 1;
  display: block;
  -webkit-transition: color 300ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: color 300ms cubic-bezier(0.55, 0.085, 0, 0.99);
  text-shadow: 0 0 3px black; /* ajc - make navigation legible against light backgrounds */
}

@media (min-width: 64.01em) {
  .gb-c-navigation-main__link {
    font-size: 1.0625rem;
    padding-bottom: 0.625rem;
  }
}

.gb-c-navigation-main__link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scalex(0);
  transform: scalex(0);
  background-color: #FFFFFF;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: -webkit-transform 400ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 400ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 400ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 400ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-navigation-main__link:hover, .gb-c-navigation-main__link:focus, .gb-c-navigation-main__link.is-current {
  color: #FFFFFF;
}

.gb-c-navigation-main__link:hover:after, .gb-c-navigation-main__link:focus:after, .gb-c-navigation-main__link.is-current:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.gb-c-navigation-main__sub-nav {
  display: none;
}

/**
 *
 * Footer Copyright Navigation
 *
 **/
@media (min-width: 64.01em) {
  .gb-c-navigation-copyright {
    margin-left: 1.25rem;
  }
}

.gb-c-navigation-copyright__item {
  display: inline-block;
}

.gb-c-navigation-copyright a {
  color: #FFFFFF;
  font-weight: normal;
}

.gb-c-navigation-copyright__seperator {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-copyright__seperator {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.is-last .gb-c-navigation-copyright__seperator {
  display: none;
}

/**
 *
 * Footer Navigation
 *
 **/
.gb-c-navigation-section {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background-color: #F5F5F5;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-section {
    padding: 0;
    margin: 0;
    display: block !important;
    background-color: transparent;
  }
}

.gb-c-navigation-section__trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-section__trigger {
    display: none !important;
  }
}

.gb-c-navigation-section__trigger[aria-expanded="false"] .gb-c-navigation-section__trigger-label--close {
  display: none;
}

.gb-c-navigation-section__trigger[aria-expanded="true"] .gb-c-navigation-section__trigger-label--expand {
  display: none;
}

.gb-c-navigation-section__trigger-label {
  line-height: 1;
}

.gb-c-navigation-section__group {
  margin-top: 1.25rem;margin-bottom:1.25rem;
}

.gb-c-navigation-section__group[aria-hidden="true"] {
  padding-top: 0;
  margin-left: 0;
}

.gb-c-navigation-section__group[aria-hidden="false"] {
  padding-top: 0;
  margin-left: 0;
  border-top: 0.125rem solid #C0C0C0;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-section__group {
    border: 0 !important;
    display: block !important;
  }
}

.gb-c-navigation-section__link {
  margin-top: 1.5625rem;
  display: block;
  color: #222222;
}

.gb-c-navigation-section__link.is-current, .gb-c-navigation-section__link[aria-current="page"] {
  color: #747474;
}

.gb-c-navigation-section__link:hover, .gb-c-navigation-section__link:focus {
  color: inherit;
  opacity: 0.7;
}

.gb-c-navigation-section__sub-nav__link {
  display: block;
  margin-top: 0.9375rem;
  color: #1948B4;
  margin-left: 0.625rem;
}
.gb-c-navigation-section__item>.gb-c-navigation-section__sub-nav .gb-c-navigation-section__sub-nav{
  margin-left:1rem;color: #002f6c;
}


/**
 *
 * Footer Navigation
 *
 **/
@media (min-width: 64.01em) {
  .gb-c-navigation-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.gb-c-navigation-footer.is-first {
  margin-bottom: 1.5625rem;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-footer__group {
    width: 50%;
  }
}
.gb-c-body-social__icon {
  fill: #1948B4;
}

/**
 *
 * Footer Social Navigation
 *
 **/
.gb-c-navigation-social__icon {
  fill: #FFFFFF;
}

.gb-c-navigation-social__group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gb-c-navigation-social__item {
  display: inline-block;
  margin-right: 1.5625rem;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-social__item {
    margin-right: 2.1875rem;
  }
}

.gb-c-navigation-social__item.is-last {
  margin-right: 0;
}

.gb-c-navigation-social__link {
  display: block;
  -webkit-transition: 200 all ease;
  transition: 200 all ease;
}

.gb-c-navigation-social__link:hover svg, .gb-c-navigation-social__link:focus svg {
  fill: #84BAFF;
}

.gb-c-navigation-social__link[target="_blank"]:after {
  content: none;
}

/**
 *
 * Breadcrumbs Navigation
 *
 **/
.gb-c-hero__breadcrumbs {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 63.99em) {
  .gb-c-hero__breadcrumbs--extend .gb-c-search-academic__cta {
    margin-bottom: 1.25rem;
  }
}

.gb-c-navigation-breadcrumb {
  position: relative;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.75);
  vertical-align: bottom;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-breadcrumb {
    min-width: calc(25% - 3.8961%);
  }
}

.gb-c-navigation-breadcrumb:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.75);
  top: 0;
  left: -1000%;
  width: 1000%;
  height: 100%;
  display: block;
  position: absolute;
}

.gb-c-navigation-breadcrumb__item {
  color: #222222;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.gb-c-navigation-breadcrumb__item.is-current .gb-c-navigation-breadcrumb__link:after {
  border: solid transparent;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.gb-c-navigation-breadcrumb__item.is-single .gb-c-navigation-breadcrumb__link:after {
  border: solid #222222;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.gb-c-navigation-breadcrumb__more {
  background-color: #053371;
  width: 2.25rem;
  height: 1.375rem;
  color: #FFFFFF;
  border-radius: 1.375rem;
  text-align: center;
  margin-right: 0.9375rem;
  z-index: 10;
}

@media (max-width: 63.99em) {
  .gb-c-navigation-breadcrumb__more--large {
    display: none !important;
  }
}

@media (min-width: 64.01em) {
  .gb-c-navigation-breadcrumb__more--small {
    display: none !important;
  }
}

.gb-c-navigation-breadcrumb__group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gb-c-navigation-breadcrumb__link {
  opacity: 0;
  line-height: 1;
  font-size: 0.8125rem;
  color: #222222;
  padding: 20px 0 19px 0;
  max-width: 0rem;
  white-space: nowrap;
  -webkit-transition: opacity 600ms, width 600ms, visibility 600ms ease-in;
  transition: opacity 600ms, width 600ms, visibility 600ms ease-in;
}

@media (min-width: 64.01em) {
  .gb-c-navigation-breadcrumb__link.is-last-two {
    max-width: none;
    opacity: 1;
  }
}

@media (min-width: 64.01em) {
  .gb-c-navigation-breadcrumb__link--hide {
    display: none;
  }
}

.gb-c-navigation-breadcrumb__link:after {
  content: "";
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
  margin-top: -rem(4px);
  vertical-align: middle;
  border: solid #222222;
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

@media (min-width: 64.01em) {
  .gb-c-navigation-breadcrumb__link:after {
    margin-left: 0.8125rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-navigation-breadcrumb__link {
    font-size: 1.0625rem;
    padding: 30px 0 29px 0;
  }
}

.gb-c-navigation-breadcrumb__link[aria-current="page"] {
  opacity: 1;
  position: relative;
  display: block;
  max-width: none;
}

.gb-c-navigation-breadcrumb.is-open .gb-c-navigation-breadcrumb__more {
  display: none;
}

.gb-c-navigation-breadcrumb.is-open .gb-c-navigation-breadcrumb__link {
  position: relative;
  opacity: 1;
  width: 100%;
  max-width: 100%;
}

/**
 *
 * Hero - General
 *
 **/
.gb-c-hero {
  padding-top: 6.5625rem;
  padding-bottom: 3.6rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 30.01em) {
  .gb-c-hero {
    padding-top: 7.2rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-hero {
    padding-top: 10.8rem;
    padding-bottom: 5.4rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-hero {
    min-height: 28.75rem;
  }
}

@media (min-width: 30.01em) {
  .gb-c-hero--search {
    min-height: 31.25rem;
  }
}

@media (min-width: 48.01em) {
  .gb-c-hero--search {
    min-height: 42.5rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-hero--search {
    min-height: 52.5rem;
  }
}

.gb-c-hero--search .gb-c-hero__content {
  padding-bottom: 0.625rem;
}

@media (min-width: 48.01em) {
  .gb-c-hero--search .gb-c-hero__breadcrumbs {
    display: block;
  }
}

.gb-c-hero--search.is-open {
  position: relative;
  z-index: 10;
}

.gb-c-hero--search.is-open .gb-c-hero__image:after {
  content: "";
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150%;
}

.gb-c-hero--search.is-open .gb-c-hero__breadcrumbs {
  display: none;
}

.gb-c-hero__dp-logo {
  margin-top: 1.25rem;
  max-width: 65%;
  margin-bottom: 1.25rem;
}

@media (max-width: 63.99em) {
  .gb-c-hero__dp-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 64.01em) {
  .gb-c-hero__dp-logo {
    margin-bottom: 3.75rem;
    max-width: 25%;
  }
}

.gb-c-hero__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.gb-c-hero__content {
  position: relative;
  z-index: 5;
  padding-bottom: 3.125rem;
}

@media (min-width: 64.01em) {
  .gb-c-hero__content {
    padding-bottom: 3.75rem;
  }
}

.gb-c-hero__title {
  color: #FFFFFF;
  opacity: 1;
}

@media (min-width: 64.01em) {
  .gb-c-hero__title {
    padding-left: 3.8961%;
  }
}

.gb-c-hero__intro {
  color: #FFFFFF;
  margin-top: 0.3125rem;
  opacity: 0;
  -webkit-animation: fadeInUpHalf 500ms cubic-bezier(0.55, 0.085, 0, 0.99) forwards 1s;
  animation: fadeInUpHalf 500ms cubic-bezier(0.55, 0.085, 0, 0.99) forwards 1s;
}

@media (min-width: 64.01em) {
  .gb-c-hero__intro {
    margin-top: 1.2rem;
    margin-right: auto;
    margin-left: calc(25% - 3.8961%);
    padding-left: 3.8961%;
  }
}

@media (min-width: 64.01em) {
  .gb-c-hero__intro--long {
    width: 75%;
  }
}

.gb-c-hero__primary .gb-u-type-beta {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 45px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-hero__primary .gb-u-type-beta {
    font-size: 58px;
    font-size: 3.625rem;
    line-height: 64px;
  }
}

@media (min-width: 80.01em) {
  .gb-c-hero__primary .gb-u-type-beta {
    font-size: 90px;
    font-size: 5.625rem;
    line-height: 90px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-hero__primary .gb-u-type-beta {
    font-size: 94px;
    font-size: 5.875rem;
    line-height: 94px;
  }
}

/**
 *
 * Hero - Homepage
 *
 **/
.gb-c-hero-home {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  max-height: 600px;
  height: 100vh;
}

@media (min-width: 64.01em) {
  .gb-c-hero-home {
    min-height: 600px;
    max-height: 900px;
  }
}

@media (min-width: 103.135em) {
  .gb-c-hero-home {
    min-height: 700px;
    max-height: 1000px;
  }
}

.gb-c-hero-home__image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.gb-c-hero-home__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(34, 34, 34, 0.45);
}

.gb-c-hero-home__video {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.gb-c-hero-home video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
}

.gb-c-hero-home video::-webkit-media-controls, .gb-c-hero-home video::-webkit-media-controls-start-playback-button {
  display: none;
}

.gb-c-hero-home__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 0.3125rem;
  z-index: 5;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 64.01em) {
  .gb-c-hero-home__progress {
    height: 0.625rem;
  }
}

.gb-c-hero-home__progress--fill {
  width: 0;
  height: 0.3125rem;
  background: #FE6301;
  -webkit-transition: width 400ms linear;
  transition: width 400ms linear;
}

@media (min-width: 64.01em) {
  .gb-c-hero-home__progress--fill {
    height: 0.625rem;
  }
}

.gb-c-hero-home__player-control {
  background: transparent;
  border-radius: 0;
  border: 2px solid #F28923;
  display: inline-block;
  outline: 0;
  margin: 0;
  position: absolute;
  bottom: 3.8961%;
  right: 3.8961%;
  z-index: 25;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 100%;
  text-indent: -999rem;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  color: #FFFFFF; /* ajc - fix WAVE contrast error (color was unspecified) */
}

@media (min-width: 64.01em) {
  .gb-c-hero-home__player-control {
    bottom: 2.7rem;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.gb-c-hero-home__player-control:after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-color: transparent transparent transparent #FFFFFF;
  cursor: pointer;
  border-style: double;
  border-width: 0 0 0 1.25rem;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-hero-home__player-control.is-paused:after {
  height: 0;
  border-style: solid;
  border-width: 0.875rem 0 0.875rem 1.375rem;
}

.gb-c-hero-home__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gb-c-hero-home__inner {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 100%;
  padding-bottom: 3.6rem;
}

@media (min-width: 30.01em) {
  .gb-c-hero-home__inner {
    padding-bottom: 8%;
  }
}

.gb-c-hero-home__title {
  color: #FFFFFF;
  overflow: hidden;
  word-break: break-all;
  opacity: 0;
  margin-bottom: 1.2rem;
}

@media (min-width: 30.01em) {
  .gb-c-hero-home__title {
    padding-bottom: 0.45rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-hero-home__title {
    padding-left: 3.8961%;
    padding-bottom: 0.9rem;
    margin-bottom: 2.7rem;
  }
}

.gb-c-hero-home__title span {
  display: inline-block;
  margin-right: 0.6rem;
}

@media (min-width: 30.01em) {
  .gb-c-hero-home__title span {
    margin-right: 1.2rem;
  }
}

.gb-c-hero-home__intro {
  color: #FFFFFF;
  word-break: break-all;
}

@media (min-width: 30.01em) {
  .gb-c-hero-home__intro {
    max-width: 85%;
  }
}

@media (min-width: 64.01em) {
  .gb-c-hero-home__intro {
    padding-left: 3.8961%;
  }
}

@media (min-width: 80.01em) {
  .gb-c-hero-home__intro {
    margin-left: 25%;
    width: 62.5%;
    max-width: 61.25rem;
    padding: 0;
  }
}

.gb-c-hero-home__intro p {
  overflow: hidden;
  opacity: 0;
}

.gb-c-hero-home__intro p span {
  display: inline-block;
  margin-right: 0.45rem;
}

@media (min-width: 80.01em) {
  .gb-c-hero-home__intro p span {
    margin-right: 0.6rem;
  }
}

/**
 *
 * Hero - Parallex
 *
 **/
.gb-c-parallex {
  position: relative;
  overflow: hidden;
}

.gb-c-parallex__element {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.gb-c-parallex__content {
  position: relative;
  z-index: 5;
}

.gb-c-date {
  position: relative;
  color: #FFFFFF;
  background-size: cover;
  height: 14.375rem;
  background-position: center center;
  margin-bottom: 1.25rem;
}

@media (min-width: 64.01em) {
  .gb-c-date {
    margin-bottom: 0;
    height: inherit;
  }
}

.gb-c-date__image {
  display: none;
  width: 100%;
}

@media (min-width: 64.01em) {
  .gb-c-date__image {
    display: block;
  }
}

.gb-c-date__date {
  padding: 17px 20px 17px 2.625rem;
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  border: 0.125rem solid #FFFFFF;
  text-align: right;
}

.gb-c-date__day {
  display: block;
}

.gb-c-date__month {
  display: block;
  margin-bottom: 0.3125rem;
}

.gb-c-date--no-image {
  height: inherit;
  color: #222222;
  background-color: #FFFFFF;
}

@media (min-width: 64.01em) {
  .gb-c-date--no-image {
    text-align: right;
    margin-top: 1.25rem;
  }
}

.gb-c-date--no-image .gb-c-date__date {
  position: relative;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  display: inline-block;
  border-color: #222222;
}

.gb-c-date--no-image .gb-c-date__month,
.gb-c-date--no-image .gb-c-date__day {
  color: #222222;
}

.gb-c-longform a {
  color: #CC4E00; /* ajc - fix WAVE contrast error (was #FE6301) */
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.gb-c-longform a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

.gb-c-longform img {
  margin: 0 auto;
}

.gb-c-longform hr {
  height: 0.25rem;
  border: 0;
  background-color: #C0C0C0;
  margin-top: 4.5625rem;
  width: 100%;
  display: block;
}

.gb-c-longform hr + * {
  margin-top: 4.5625rem;
}

.gb-c-longform caption {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 14px;
  letter-spacing: 0.015em;
}

.gb-c-longform dd { /* ajc - add initial dl styles */
  margin-left: 0;
}

.gb-c-longform dd p { /* ajc - add paragraph margin for long dd */
  margin-bottom: 1.1075rem;
}

.gb-c-longform dd p:last-child { /* ajc - except on the last one */
  margin-bottom: 0;
}

.gb-c-longform dl { /* ajc - add initial dl styles */
  margin: 0;
}

.gb-c-longform dt { /* ajc - add initial dl styles */
  font-weight: bold;
  margin-top: 1.25em;
  margin-bottom: .25em;
}

@media (min-width: 30.01em) {
  .gb-c-longform caption {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 19px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform caption {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-longform caption {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
  }
}

.gb-c-longform h2 {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
  margin-top:2rem;
}

@media (min-width: 64.01em) {
  .gb-c-longform h2 {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-longform h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gb-c-longform h3 {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 18px;
  font-size: 1.2rem;
  line-height: 20px;
  letter-spacing: -0.02em;
  margin-top:1rem;
}

@media (min-width: 30.01em) {
  .gb-c-longform h3 {
    font-size: 21px;
    font-size: 1.3875rem;
    line-height: 24px;
    margin-top:1.5rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform h3 {
    font-size: 27px;
    font-size: 1.7625rem;
    line-height: 37px;
    margin-top:2rem;
  }
}

@media (min-width: 131.26em) {
  .gb-c-longform h3 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
  }
}

.gb-c-longform h4 {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 21px; /* ajc - bring closer to body text size (was 13px) */
  font-size: 1.3125rem; /* ajc - bring closer to body text size (was 0.8125rem) */
  line-height: 18px;
  letter-spacing: 0em; /* ajc - improve readability at small sizes (was -0.04em) */
}

@media (min-width: 30.01em) {
  .gb-c-longform h4 {
    font-size: 21px; /* ajc - bring closer to body text size (was 17px) */
    font-size: 1.3125rem; /* ajc - bring closer to body text size (was 1.0625rem) */
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform h4 {
    font-size: 21px; /* ajc - bring closer to body text size (was 17px) */
    font-size: 1.3125rem; /* ajc - bring closer to body text size (was 1.0625rem) */
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-longform h4 {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}

.gb-c-longform br {
  margin-top: 0;
}

.gb-c-longform ol,
.gb-c-longform li,
.gb-c-longform ul {
  font-family: "mrseavesxlsernarot-reg", serif;
  font-weight: normal;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 25px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-longform ol,
  .gb-c-longform li,
  .gb-c-longform ul {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 30px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform ol,
  .gb-c-longform li,
  .gb-c-longform ul {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 34px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-longform ol,
  .gb-c-longform li,
  .gb-c-longform ul {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 38px;
  }
}
.gb-c-longform > * + *,
.gb-c-longform li + li {
  margin-top: 1.875rem;
}

.gb-c-small ol,
.gb-c-small li,
.gb-c-small ul {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  font-size: 1.075rem;
  line-height: 20px;
  letter-spacing: -0.04em;
  margin-top:8px;
  list-style:disc;
  margin-left:5%;
  
}

@media (min-width: 30.01em) {
  .gb-c-small ol,
  .gb-c-small li,
  .gb-c-small ul {
    font-size: 16px;
    font-size: 1.025rem;
    line-height: 20px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-small ol,
  .gb-c-small li,
  .gb-c-small ul {
    font-size: 18px;
    font-size: 1.05rem;
    line-height: 20px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-small ol,
  .gb-c-small li,
  .gb-c-small ul {
    font-size: 20px;
    font-size: 1.075rem;
    line-height: 24px;
  }
}

.gb-c-small > * + *,
.gb-c-small li + li {
  margin-top: .5rem;
}

.gb-c-longform .gb-c-callout-accessibility .page-toc,
.gb-c-longform .gb-c-callout-accessibility .gb-x-list-sans,
.gb-c-longform .gb-c-callout-accessibility .gb-x-list-small { /* ajc - add table of contents, lists sans, and list small styles */
  margin: 0.67rem 0 0;
}

.gb-c-longform .gb-c-callout-accessibility .gb-c-link-list__container { /* ajc - add table of contents style */
  margin-bottom: 1rem;
}

.gb-c-longform ul.page-toc ul, 
.gb-c-longform ul.page-toc ol,
.gb-c-longform ul.gb-x-list-sans ul, 
.gb-c-longform ul.gb-x-list-sans ol,
.gb-c-longform ul.gb-x-list-small ul, 
.gb-c-longform ul.gb-x-list-small ol { /* ajc - add table of contents, lists sans, and list small styles */
  margin: .67rem 0;
}

.gb-c-longform .box-sans, /* ajc - add table of contents style */
.gb-c-longform .page-toc li,
.gb-c-longform .gb-x-list-sans li { /* ajc - add table of contents and list sans styles */
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 70%;
  line-height: 1.75rem;
}

.gb-c-longform .gb-x-list-small li { /* ajc - add small list item style */
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
}

.gb-c-longform .page-toc li + li,
.gb-c-longform .gb-x-list-sans li + li,
.gb-c-longform .gb-x-list-small li + li {
  margin-top: .67rem;
}

.gb-c-longform > h2 + *,
.gb-c-longform > h3 + *,
.gb-c-longform > h4 + *,
.gb-c-longform > h5 + *,
.gb-c-longform > h6 + * {
  margin-top: 0.9375rem;
}

.gb-c-longform ul > li {
  list-style: square outside;
  margin-left: 0.9375rem;
}

.gb-c-longform .gb-c-accordion > ul > li {  /* ajc - suppress bullets for accordion button lists */
	list-style: none;
	margin-left: 0;
	margin-top: 0;
}

@media (min-width: 64.01em) {
  .gb-c-longform ul > li {
    margin-left: 1.875rem;
  }
}

.gb-c-longform ul > li li {
  list-style: circle outside;
}

.gb-c-longform ol > li {
  list-style: decimal outside;
  margin-left: 0.9375rem;
}

.gb-c-longform .non-decimal > li { /* ajc - allow explicit setting of order type */
    list-style:inherit;
} 

@media (min-width: 64.01em) {
  .gb-c-longform ol > li {
    margin-left: 1.875rem;
  }
}

.gb-c-longform ol > li li {
  list-style: lower-alpha outside;
}

.gb-c-longform ol ul,
.gb-c-longform ol ol,
.gb-c-longform ul ul,
.gb-c-longform ul ol {
  margin-top: 0.625rem;
  margin-left: 1.5625rem;
  margin-bottom: 0;
}

.gb-c-longform form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 64.01em) {
  .gb-c-longform form {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.gb-c-longform form p {
  display: inline-block;
  float: left;
  margin-bottom: 1.875rem;
}

.gb-c-longform form textarea {
  width: 100%;
}

.gb-c-longform form label {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-weight: bold;
  display: block;
  margin-bottom: 0.625rem;
}

@media (min-width: 80.01em) {
  .gb-c-longform form label {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

.gb-c-longform form select,
.gb-c-longform form input {
  display: block;
  width: 18.75rem;
  height: 2.625rem;
  padding: 0 0.625rem;
  line-height: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  border: 1px solid rgba(34, 34, 34, 0.2);
}

@media (min-width: 80.01em) {
  .gb-c-longform form select,
  .gb-c-longform form input {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

.gb-c-longform form select:focus,
.gb-c-longform form input:focus {
  border: 1px solid #222222;
}

.gb-c-longform figcaption {
  text-align: left;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 14px;
  letter-spacing: 0.015em;
  margin-top: 0.625rem;
}

@media (min-width: 30.01em) {
  .gb-c-longform figcaption {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 19px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform figcaption {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-longform figcaption {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
  }
}

.gb-c-longform figure {
  text-align: center;
}

.gb-c-longform .gb-c-video {
  margin-top: 5rem;
}

.gb-c-longform .gb-c-table {
  margin-top: 2.1875rem;
}

.gb-c-longform blockquote {
  border-top: 0.4375rem solid #FE6301;
  padding-top: 0.9375rem;
  position: relative;
  width: 100%;
  font-family: "ITC Avant Garde Pro Md";
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-longform blockquote {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform blockquote {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 37px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-longform blockquote {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform blockquote {
    padding-top: 1.25rem;
    margin-top: 4.375rem;
    width: 80%;
  }
}

/* ajc - remove unclosed opening quote mark on blockquotes
.gb-c-longform blockquote:before {
  content: '“';
  position: absolute;
  left: 0;
  -webkit-transform: translateX(-125%);
  transform: translateX(-125%);
}
*/

.gb-c-longform blockquote p {
  width: 100%;
  font-family: "ITC Avant Garde Pro Md";
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-longform blockquote p {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform blockquote p {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 37px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-longform blockquote p {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-longform blockquote + * {
    margin-top: 4.375rem;
  }
}

.gb-c-accordion {
  border-top: 0.25rem solid #E9E9E9;
  padding: 1.5rem 0;
}

@media (min-width: 64.01em) {
  .gb-c-accordion {
    padding: 2rem 0;
  }
}

.gb-c-accordion--borderless {
  border-top: 0;
  padding: 0;
}

.gb-c-accordion--borderless .gb-c-accordion__group {
  margin-top: 0.3125rem;
}

.gb-c-accordion--large {
  border-top: 0;
}

.gb-c-accordion--large .gb-c-accordion__item {
  border-top: 0.25rem solid #E9E9E9;
  padding: 1.75rem 0 1.5625rem;
}

@media (min-width: 64.01em) {
  .gb-c-accordion--large .gb-c-accordion__item {
    padding: 2.1875rem 0 1.5625rem;
  }
}

.gb-c-accordion--large .gb-c-accordion__item:last-child {
  border-bottom: 0.25rem solid #E9E9E9;
}

.gb-c-accordion--large .gb-c-accordion__sub-heading {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-accordion--large .gb-c-accordion__sub-heading {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-accordion--large .gb-c-accordion__sub-heading {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-accordion--large .gb-c-accordion__sub-heading {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}

.gb-c-accordion--large .gb-c-accordion__heading {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

@media (min-width: 64.01em) {
  .gb-c-accordion--large .gb-c-accordion__heading {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-accordion--large .gb-c-accordion__heading {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gb-c-accordion--large .gb-c-accordion__icon {
  width: 1.125rem;
  height: 1.125rem;
}

@media (min-width: 64.01em) {
  .gb-c-accordion--large .gb-c-accordion__icon {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.gb-c-accordion__toggle {
  width: 100%;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.gb-c-accordion__toggle[aria-expanded="true"] .gb-c-accordion__icon-y,
.gb-c-accordion__toggle[aria-expanded="true"] .gb-c-accordion__icon-x {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  fill: #222222;
}

.gb-c-accordion__toggle[aria-expanded="true"] .gb-c-accordion__icon-x {
  opacity: 0;
}

.gb-c-accordion__toggle[aria-expanded="true"] .gb-c-accordion__heading {
  color: #222222;
}

.gb-c-accordion [aria-hidden="false"] {
  display: block;
}

.gb-c-accordion [aria-hidden="false"] .gb-c-accordion__heading {
  color: #0B459E;
}

.gb-c-accordion__description {
  margin-top: 0.9rem;
}

.gb-c-accordion__content {
  display: none;
  padding-top: 1.2rem;
  margin-left: 1.8rem;
}

.gb-c-accordion__item {
  padding: 0.9375rem 0;
}

.gb-c-accordion__group {
  margin-top: 1.25rem;
}

.gb-c-accordion__sub-heading {
  color: #222222;
  margin-right: 0.625rem;
  font-family: "ITC Avant Garde Pro Md";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: -0.04em;
  line-height: 1;
  position: relative;
  top: -1px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 5rem;
}

@media (min-width: 30.01em) {
  .gb-c-accordion__sub-heading {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-accordion__sub-heading {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-accordion__sub-heading {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}

.gb-c-accordion__heading {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.04em;
  color: #0B459E;
  -webkit-transition: color 0.4s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: color 0.4s cubic-bezier(0.55, 0.085, 0, 0.99);
  width: 100%;
  line-height: 1;
}

@media (min-width: 30.01em) {
  .gb-c-accordion__heading {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-accordion__heading {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 37px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-accordion__heading {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
  }
}

.gb-c-accordion__heading:hover {
  color: #053371;
}

.gb-c-accordion__icon {
  width: 0.875rem;
  height: 0.875rem;
  margin-right: 0.625rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  fill: #0B459E;
}

@media (min-width: 64.01em) {
  .gb-c-accordion__icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.gb-c-accordion__icon .gb-c-accordion__icon-y,
.gb-c-accordion__icon .gb-c-accordion__icon-x {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.gb-c-entries {
  margin-top: 2.8125rem;
  margin-bottom: 2.8125rem;
}

@media (min-width: 64.01em) {
  .gb-c-entries {
    margin-top: 8.125rem;
    margin-bottom: 5.9375rem;
  }
}

.gb-c-entries--invert {
  margin: 0;
}

.gb-c-entries__header {
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid #C0C0C0;
  margin-bottom: 2.1875rem;
}

.gb-c-entries__header--small {
  border-bottom: 0;
  padding: 0;
  margin-bottom: 0.625rem;
}

.gb-c-entries__header--small .gb-c-entries__dropdown {
  border-bottom: 0.0625rem solid #84BAFF;
  color: #FFFFFF;
}

.gb-c-entries__header--small .gb-c-entries__dropdown__label {
  color: #FFFFFF;
}

.gb-c-entries__header--small .gb-c-entries__dropdown__label:after {
  content: "";
  border: solid #84BAFF;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 0.75rem;
  margin-right: 0.1875rem;
  margin-bottom: 0.1875rem;
}

.gb-c-entries__dropdown {
  position: relative;
  display: inline-block;
}

.gb-c-entries__dropdown__select {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  opacity: 0;
  color: #1948B4;
}

.gb-c-entries__dropdown__option {
  color: #222222;
}

.gb-c-entries__dropdown__label {
  color: #1948B4;
}

.gb-c-entries__dropdown__label:after {
  content: "";
  border: solid #1948B4;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 0.75rem;
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
}

@media (min-width: 64.01em) {
  .gb-c-entries__split-2 {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 3.8961%;
    column-gap: 3.8961%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.gb-c-entries__split-2 .gb-c-entry {
  width: 100%;
}

.gb-c-entries__cta {
  color: #1948B4;
}

.gb-c-entries-list__header-title {
  margin-bottom: 1.25rem;
  position: relative;
  line-height: 1;
}

.gb-c-entries-list__header-title--large {
  border-bottom: 1px solid #C0C0C0;
  padding-bottom: 1.5625rem;
  margin-bottom: 1.5625rem;
}

@media (min-width: 48.01em) {
  .gb-c-entries-list__header-title--large {
    padding-left: 1.94805%;
    padding-right: 1.94805%;
    margin-left: -1.94805%;
    margin-right: -1.94805%;
  }
}

.gb-c-entries-list__header-text {
  margin-left: 0.9375rem;
}

@media (min-width: 64.01em) {
  .gb-c-entries-list__split-contain {
    width: 66.67%;
  }
}

.gb-c-entries-list__cta {
  color: #1948B4;
}

.gb-c-entries-list .gb-c-entry--list {
  width: 100%;
}

.gb-c-entries-list--event .gb-c-date--no-image {
  display: inline-block;
  -webkit-transform: translateY(40%);
  transform: translateY(40%);
  margin-right: 1.94805%;
}

.gb-c-entries-list--event .gb-c-entries-list__header-title--large {
  padding-bottom: 0;
  margin-bottom: 4.6875rem;
}

@media (max-width: 29.99em) {
  .gb-c-entries-list--event .gb-c-entries-list__header-title--large {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.gb-c-entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.8rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 55.6975em) {
  .gb-c-entry {
    margin-bottom: 3.6rem;
  }
}

.gb-c-entry--invert .gb-c-entry__link {
  color: #84BAFF;
}

.gb-c-entry__link:hover, .gb-c-entry__link:focus {
  text-decoration: underline;
  opacity: 0.8;
}

.gb-c-entry__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 1.8rem;
}

.gb-c-entry__thumbnail {
  width: 20%;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.gb-c-entry__title {
  color: #CC4E00; /* ajc - fix WAVE contrast error (was #FE6301) */
  margin-bottom: 0.3125rem;
}

.gb-c-entry__meta {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
}

@media (min-width: 80.01em) {
  .gb-c-entry__meta {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

.gb-c-entry-block {
  margin-bottom: 1.875rem;
}

@media (min-width: 48.01em) {
  .gb-c-entry-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.gb-c-entry-block h2, .gb-c-entry-block h3, .gb-c-entry-block h4 { /* ajc - reset entry-block heading top margin and font size */
  margin-top: inherit;
  font-size: inherit;
}

.gb-c-entry-block__figure {
  margin-bottom: 0.625rem;
}

@media (min-width: 48.01em) {
  .gb-c-entry-block__figure {
    width: 50%;
    margin-right: 1.94805%;
  }
}

.gb-c-entry-block__figure img {
  width: 100%;
}

@media (min-width: 48.01em) {
  .gb-c-entry-block__content {
    width: 50%;
    margin-left: 1.94805%;
  }
}

.gb-c-entry-block__subheading {
  margin-bottom: 1.25rem;
}

@media (min-width: 48.01em) {
  .gb-c-entry-block__subheading {
    margin-bottom: 2.1875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-entry-block__subheading {
    margin-bottom: 4.375rem;
  }
}

.gb-c-entry-block__body a {
  color: #1948B4;
}

.gb-c-entry-block__body a:hover, .gb-c-entry-block__body a:focus {
  color: #053371;
}

.gb-c-entry-block__title {
  margin-bottom: 0.625rem;
  padding-bottom: 0.3125rem;
  border-bottom: 7px solid #FE6301;
}

@media (min-width: 103.135em) {
  .gb-c-entry-block__title {
    margin-bottom: 1.5625rem;
    padding-bottom: 0.9375rem;
  }
}

.gb-c-entry-block__cta {
  color: #1948B4;
  display: block;
}

.gb-c-entry-block--small .gb-c-entry-block__title {
  margin-bottom: 1.5625rem;
  padding-bottom: 0;
  border-bottom: 5px solid #FE6301;
}

.gb-c-entry-block-list {
  margin-bottom: 1.875rem;
}

@media (min-width: 30.01em) {
  .gb-c-entry-block-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.gb-c-entry-block-list__figure {
  margin-bottom: 0.625rem;
}

@media (min-width: 30.01em) {
  .gb-c-entry-block-list__figure {
    width: 50%;
    margin-right: 1.94805%;
  }
}

.gb-c-entry-block-list__figure img {
  width: 100%;
}

@media (min-width: 30.01em) {
  .gb-c-entry-block-list__content {
    width: 50%;
    margin-left: 1.94805%;
  }
}

.gb-c-entry-block-list__subheading {
  margin-bottom: 1.25rem;
}

@media (min-width: 30.01em) {
  .gb-c-entry-block-list__subheading {
    margin-bottom: 4.375rem;
  }
}

.gb-c-entry-block-list__body a {
  color: #1948B4;
}

.gb-c-entry-block-list__title {
  margin-bottom: 0.625rem;
  padding-bottom: 0.3125rem;
  border-bottom: 7px solid #FE6301;
}

@media (min-width: 103.135em) {
  .gb-c-entry-block-list__title {
    margin-bottom: 1.5625rem;
    padding-bottom: 0.9375rem;
  }
}

.gb-c-entry-block-list__cta {
  color: #1948B4;
  display: block;
}

.gb-c-entry-block-list--small .gb-c-entry-block__title {
  margin-bottom: 1.5625rem;
  padding-bottom: 0;
  border-bottom: 5px solid #FE6301;
}

.gb-c-entry-bar {
  color: #FFFFFF;
}

@media (min-width: 64.01em) {
  .gb-c-entry-bar__cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.gb-c-entry-bar__cta .gb-c-entry-bar__cta-link {
  color: #84BAFF;
}

.gb-c-entry-bar__cta .gb-c-entry-bar__cta-link:after {
  border-color: #84BAFF;
}

.gb-c-entry-bar__cta .gb-c-entry-bar__cta-link:hover, .gb-c-entry-bar__cta .gb-c-entry-bar__cta-link:focus {
  color: #FFFFFF;
}

.gb-c-entry-bar__cta .gb-c-entry-bar__cta-link:hover:after, .gb-c-entry-bar__cta .gb-c-entry-bar__cta-link:focus:after {
  border-color: #FFFFFF;
}

.gb-c-entry-bar__row {
  /* no circle */
  /* big previous & next buttons */
  /* icon color */
  /* hide disabled button */
}

.gb-c-entry-bar__row:after {
  content: "flickity";
  display: none;
  /* hide :after */
}

@media (min-width: 64.01em) {
  .gb-c-entry-bar__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .gb-c-entry-bar__row:after {
    content: "";
  }
}

.gb-c-entry-bar__row .flickity-button {
  background: transparent;
}

.gb-c-entry-bar__row .flickity-prev-next-button {
  width: 24px;
  height: 24px;
}

.gb-c-entry-bar__row .flickity-button-icon {
  fill: white;
}

.gb-c-entry-bar__row .flickity-button:disabled {
  display: none;
}

.gb-c-entry-bar__block {
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: block;
  width: 100%;
  padding-top: 97%;
}

@media (min-width: 48.01em) {
  .gb-c-entry-bar__block {
    width: 50%;
    padding-top: 47%;
  }
}

@media (min-width: 64.01em) {
  .gb-c-entry-bar__block {
    width: 25%;
    padding-top: 22%;
  }
}

.gb-c-entry-bar__block:hover .gb-c-entry-bar__content:before {
  background-color: transparent;
}

.gb-c-entry-bar__content {
  position: absolute;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
  top: 0;
  cursor: pointer;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5625rem 1.5625rem;
  color: #FFFFFF;
}

@media (min-width: 64.01em) {
  .gb-c-entry-bar__content {
    padding: 2.1875rem 1.875rem;
  }
}

.gb-c-entry-bar__content:before {
  content: "";
  z-index: 1;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  background-color: rgba(34, 34, 34, 0.3);
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.gb-c-entry-bar__content:hover, .gb-c-entry-bar__content:focus {
  color: #FFFFFF;
  text-shadow: 1px 2px #222222;
}

.gb-c-entry-bar__title {
  width: 100%;
}

.gb-c-entry-bar__meta {
  width: 100%;
}

.gb-c-entry-bar__text-bottom {
  margin-top: 0.1875rem;
}

.gb-c-event-detail__category {
  color: #1948B4;
}

.gb-c-event-detail__location {
  margin-top: 0;
}


.gb-c-table {
  overflow-x: auto;
  width: 100%;
  position: relative;
  margin-top: 25px;
}

.gb-c-table-responsive {
  position: relative;
}

.gb-c-table-responsive.is-scrollable:after {
  content: "";
  width: 12%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(white));
  background: linear-gradient(to right, rgba(0, 0, 0, 0), white);
}

.gb-c-callout-accessibility {
  background-color: #F5F5F5;
  padding: 1.5625rem;
  display: block;
  width: 100%;
}

.gb-c-callout-accessibility a {
  color: #1948B4; /* ajc - override orange links on light grey background */
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.gb-c-callout-accessibility > h2,
.gb-c-callout-accessibility > h3,
.gb-c-callout-accessibility > h4,
.gb-c-callout-accessibility > h5 { /* ajc - suppress top margin on the first heading inside a box */
  margin-top:0;
}

@media (min-width: 64.01em) {
  .gb-c-callout-accessibility__heading {
    margin-bottom: 0.625rem;
  }
}

.gb-c-dropdown {
  position: relative;
  display: inline-block;
  background-image: url();
}

.gb-c-dropdown__select {
  position: relative;
  z-index: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  color: #1948B4;
}

.gb-c-dropdown__option {
  color: #222222;
}

.gb-c-featured-image {
  margin-left: -17%;
  margin-right: -17%;
  margin-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-c-featured-image {
    margin-bottom: 3.75rem;
  }
}

.gb-c-featured-image__caption {
  margin: 1.875rem 12.5% 0;
  border-bottom: 0.25rem solid #E9E9E9;
  padding-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-c-featured-image__caption {
    padding-bottom: 3.75rem;
  }
}

.gb-c-search-academic {
  color: #FFFFFF;
  z-index: 25;
  position: relative;
}

@media (min-width: 48.01em) {
  .gb-c-search-academic {
    margin-left: 25%;
  }
}

.gb-c-search-academic__group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__group {
    width: 100%;
    max-width: 45.125rem;
  }
}

.gb-c-search-academic__label {
  display: block;
}

@media (min-width: 64.01em) {
  .gb-c-search-academic__label {
    margin-top: 6.25rem;margin-bottom:0.3125rem;
  }
}

.gb-c-search-academic__input {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
  background-color: rgba(255, 255, 255, 0.5);
  color: #222222;
  width: 100%;
  padding: 0.3125rem 0.625rem 0;
  border: 0;
  position: relative;
}

@media (min-width: 64.01em) {
  .gb-c-search-academic__input {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-search-academic__input {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (min-width: 30.01em) {
  .gb-c-search-academic__input {
    font-family: "ITC Avant Garde Pro Md";
    font-size: 32px;
    font-size: 2rem;
    line-height: 41px;
    letter-spacing: -0.04em;
  }
}

@media (min-width: 30.01em) and (min-width: 30.01em) {
  .gb-c-search-academic__input {
    font-size: 40px;
    font-size: 2.55rem;
    line-height: 44px;
  }
}

@media (min-width: 30.01em) and (min-width: 64.01em) {
  .gb-c-search-academic__input {
    font-size: 48px;
    font-size: 3.55rem;
    line-height: 52px;
  }
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__input {
    color: #FFFFFF;
    background-color:  rgba(255, 255, 255, 0.2);
    height: inherit;
    padding: 0 4.375rem 0 0;
    width: 100%;
    border-bottom: 0.1875rem solid rgba(255, 255, 255, 0.5);
  }
}

@media (min-width: 64.01em) {
  .gb-c-search-academic__input {
    font-size: 48px;
    font-size: 3.55rem;
  }
}

.gb-c-search-academic__input:focus {
  outline: 0;
}

.gb-c-search-academic__input::before, .gb-c-search-academic__input::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.gb-c-search-academic__input::before {
  margin-bottom: -rem(10px);
}

.gb-c-search-academic__input::after {
  margin-top: -rem(10px);
}

.gb-c-search-academic__output {
  background-color: rgba(255, 255, 255, 0.75);
  width: 100%;
  max-width: 45.125rem;
  color: #222222;
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__output {
    position: absolute;
    top: -rem(13px);
  }
}

.gb-c-search-academic__output-info {
  height: 1rem;
  display: inline-block;
  width: 1rem;
}

.gb-c-search-academic__output-info svg {
  fill: #FFFFFF;
  height: 100%;
  width: 100%;
}

.gb-c-search-academic__output-info svg:hover {
  fill: #84BAFF;
}

.gb-c-search-academic__cta {
  width: 100%;
  position: relative;
  display: block;
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__cta {
    margin-bottom: 0;
  }
}

.gb-c-search-academic__caption-text {
  color: #FFFFFF;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0rem;
  right: 0;
  display: none;
  text-align: left;
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__caption-text {
    display: block !important;
  }
}

.gb-c-search-academic__output-container {
  margin-top: 0.625rem;
  position: relative;
}

.gb-c-search-academic__output-heading {
  position: relative;
  font-family: "ITC Avant Garde Pro Md";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-search-academic__output-heading {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-search-academic__output-heading {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-search-academic__output-heading {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__output-heading {
    font-family: "ITC Avant Garde Pro Md";
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.3;
    letter-spacing: -0.04em;
    display: block;
    position: absolute;
    z-index: -1;
  }
}

@media (min-width: 48.01em) and (min-width: 64.01em) {
  .gb-c-search-academic__output-heading {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (min-width: 48.01em) and (min-width: 103.135em) {
  .gb-c-search-academic__output-heading {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gb-c-search-academic__output-heading--small {
  text-align: right;
}

.gb-c-search-academic__submit {
  position: absolute;
  top: 0.3125rem;
  right: 0.625rem;
  bottom: 0;
  width: 1.8125rem;
  height: 1.8125rem;
}

@media (min-width: 30.01em) {
  .gb-c-search-academic__submit {
    top: 0.75rem;
  }
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__submit {
    bottom: 1.875rem;
    top: 0.625rem;
    width: 2rem;
    height: 2rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-search-academic__submit {
    bottom: inherit;
    top:2.15rem;
  }
}

.gb-c-search-academic__submit svg {
  width: 1.8125rem;
  height: 1.8125rem;
  fill: #FFFFFF;
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__submit svg {
    width: 2rem;
    height: 2rem;
  }
}

.gb-c-search-academic__prediction-item {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
  padding: 0.3125rem 0.625rem 0;
}

@media (min-width: 64.01em) {
  .gb-c-search-academic__prediction-item {
    font-size: 30px;
    font-size: 2.0575rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-search-academic__prediction-item {
    font-size: 36px;
    font-size: 2.2rem;
  }
}

@media (min-width: 30.01em) {
  .gb-c-search-academic__prediction-item {
    font-family: "ITC Avant Garde Pro Md";
    font-size: 28px;
    font-size: 1.8rem;
    line-height: 38px;
    letter-spacing: -0.04em;
  }
}

@media (min-width: 30.01em) and (min-width: 30.01em) {
  .gb-c-search-academic__prediction-item {
    font-size: 38px;
    font-size: 2.35rem;
    line-height: 44px;
  }
}

@media (min-width: 30.01em) and (min-width: 64.01em) {
  .gb-c-search-academic__prediction-item {
    font-size: 44px;
    font-size: 3rem;
    line-height: 48px;
  }
}

@media (min-width: 48.01em) {
  .gb-c-search-academic__prediction-item {
    padding: 1.25rem 0.3125rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-search-academic__prediction-item {
    font-size: 38px;
    font-size: 2.125rem;
  }
}

.gb-c-search-academic__prediction-item.focus {
  background-color: #FE6301;
  color: #FFFFFF;
}

.gb-c-search-academic-results {
  margin-top: 1.25rem;
  color: #FFFFFF;
  display: none;
  z-index: 5;
}

@media (min-width: 48.01em) {
  .gb-c-search-academic-results {
    margin-left: 25%;
    margin-top: 2.5rem;
  }
}

.gb-c-search-academic-results.is-open {
  display: block;
}

.gb-c-search-academic-results__heading {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 1.25rem;
}

.gb-c-search-academic-results__heading__sup {
  top: -1.5em;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

@media (min-width: 30.01em) {
  .gb-c-search-academic-results__heading__sup {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 19px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-search-academic-results__heading__sup {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-search-academic-results__heading__sup {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 21px;
  }
}

.gb-c-search-academic-results__type {
  border-bottom: 7px solid rgba(255, 255, 255, 0.5);
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
  display: block;
  text-align: left;
  width: 100%;
  padding-bottom: 0.9375rem;
}

.gb-c-search-academic-results__extended {
  background-color: #000000;
  padding: 0 0 12.5rem;
  color: #FFFFFF;
  position: absolute;
  width: 100%;
  z-index: 10;
  display: none;
}

.gb-c-search-academic-results__extended.is-open {
  display: block;
}

.gb-c-search-academic-results__cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: #000000;
  z-index: 9;
  display: none;
}

.search-is-open .gb-c-search-academic-results__cover {
  display: block;
}

.gb-c-search-academic-results__excerpt {
  display: block;
  opacity: 0;
  position: absolute;
  margin-bottom: 1.25rem;
  top: 0;
}

.gb-c-search-academic-results__excerpt.is-hidden {
  display: none;
}

.gb-c-search-academic-results__cta {
  background-color: #FFFFFF;
  color: black;
  padding: 5rem;
  display: none;
  margin-bottom: 5rem;
}

.gb-c-search-academic-results__cta.has-content {
  display: block;
}

.gb-c-search-academic-results__cta a {
  color: inherit;
  text-decoration: underline;
}

.gb-c-search-academic-results__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gb-c-search-academic-results__image {
  position: absolute;
  z-index: -1;
  -webkit-transform: translate(20px, 15px);
  transform: translate(20px, 15px);
  opacity: 0;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
}

.gb-c-search-academic-results__image.is-hidden {
  display: none;
}

.gb-c-search-academic-results__block {
  margin: 0 0.625rem;
  margin-top: 5rem;
  opacity: 0.9;
  padding: 0.25rem 0.25rem 0.625rem 0.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
}

@media (min-width: 64.01em) {
  .gb-c-search-academic-results__block {
    width: calc(33% - 40px);
  }
}

.gb-c-search-academic-results__block:hover, .gb-c-search-academic-results__block:focus {
  opacity: 0.99;
  color: #FFFFFF;
}

.gb-c-search-academic-results__block:hover .gb-c-search-academic-results__type, .gb-c-search-academic-results__block:focus .gb-c-search-academic-results__type {
  border-color: #FFFFFF;
}

.gb-c-search-academic-results__block:hover .gb-c-search-academic-results__image, .gb-c-search-academic-results__block:focus .gb-c-search-academic-results__image {
  opacity: 0.75;
}

.gb-c-search-academic-results__block:hover.is-story .gb-c-search-academic-results__excerpt, .gb-c-search-academic-results__block:focus.is-story .gb-c-search-academic-results__excerpt {
  opacity: 0.99;
  color: #84BAFF;
}

.gb-c-search-academic-results__block:hover.is-story .gb-c-search-academic-results__heading, .gb-c-search-academic-results__block:focus.is-story .gb-c-search-academic-results__heading {
  display: none;
}

.gb-c-search-academic-results__block.is-hidden {
  display: none;
}

.gb-c-button-primary {
  position: relative;
  font-family: "ITC Avant Garde Pro Md";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: -0.04em;
  display: inline-block;
  vertical-align: middle;
  border-radius: 0.375rem;
  color: #FFFFFF;
  padding: 1.25rem 2.1875rem;
  line-height: 1;
  text-align: center;
  z-index: 0;
  overflow: hidden;
  background-color: #053371;
  -webkit-transition: all 250ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: all 250ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

@media (min-width: 30.01em) {
  .gb-c-button-primary {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-button-primary {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-button-primary {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}
.gb-c-longform .gb-c-button-primary {
  color: #FFFFFF;
}

.gb-c-button-primary__icon {
  width: 1.375rem;
  height: 1.375rem;
  fill: #1948B4;
  margin-right: 0.625rem;
}

.gb-c-button-primary--invert {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: -0.04em;
  background-color: #FFFFFF;
  display: table;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.375rem;
  color: #1948B4;
  position: relative;
  padding: 1.25rem 0;
  line-height: 1;
  text-align: center;
}

@media (min-width: 30.01em) {
  .gb-c-button-primary--invert {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-button-primary--invert {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-button-primary--invert {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}

.gb-c-longform .gb-c-button-primary--invert {
  color: #1948B4;
}

.gb-c-button-primary:before, .gb-c-button-primary:after {
  content: "";
  position: absolute;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  z-index: -1;
  top: 50%;
  left: 50%;
  background-color: #043B82;
}

.gb-c-button-primary:before {
  opacity: 0;
  -webkit-transform: translate3d(-150%, -50%, 0);
  transform: translate3d(-150%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-button-primary:after {
  opacity: 1;
  -webkit-transform: translate3d(50%, -50%, 0);
  transform: translate3d(50%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-button-primary:hover, .gb-c-button-primary:focus {
  color: #FFFFFF;
}
.gb-c-longform .gb-c-button-primary:hover, .gb-c-longform .gb-c-button-primary:focus {
  text-decoration: none;
  opacity: 1;
}

.gb-c-button-primary:hover:before, .gb-c-button-primary:focus:before {
  opacity: 1;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-button-primary:hover:after, .gb-c-button-primary:focus:after {
  opacity: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-button-secondary {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: -0.04em;
  border-radius: 0.375rem;
  display: inline-block;
  vertical-align: middle;
  color: #1948B4;
  padding: 1.25rem 2.1875rem 1.25rem 0;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-transition: all 250ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: all 250ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

@media (min-width: 30.01em) {
  .gb-c-button-secondary {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-button-secondary {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-button-secondary {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 27px;
  }
}
.gb-c-longform .gb-c-button-secondary {
  color: #1948B4;
}

.gb-c-button-secondary:after {
  content: "";
  border: solid #1948B4;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: 0.625rem;
  margin-right: 0;
}

@media (min-width: 64.01em) {
  .gb-c-button-secondary:after {
    border: solid #1948B4;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}

.gb-c-button-secondary:hover, .gb-c-button-secondary:focus {
  text-decoration: none;
  color: #043B82;
  opacity: 1;
}

.gb-c-button-secondary:hover:after, .gb-c-button-secondary:focus:after {
  border: solid #043B82;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

@media (min-width: 64.01em) {
  .gb-c-button-secondary:hover:after, .gb-c-button-secondary:focus:after {
    border: solid #043B82;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}

.gb-c-button-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (min-width: 64.01em) {
  .gb-c-button-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.gb-c-button-list > * {
  margin-bottom: 1.25rem;
}

@media (min-width: 64.01em) {
  .gb-c-button-list > * {
    margin-right: 1.25rem;
  }
}

.gb-c-button-list > *:last-child {
  margin-bottom: 0;
}

.gb-c-calendar__header {
  background-color: #053371;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.46875rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-weight: bold;
}

@media (min-width: 80.01em) {
  .gb-c-calendar__header {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

.gb-c-calendar__arrows-left {
  margin-right: 0.3125rem;
}

.gb-c-calendar__arrows-left svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.gb-c-calendar__arrows-right {
  margin-left: 0.3125rem;
}

.gb-c-calendar__arrow-svg {
  fill: #FFFFFF;
}

.gb-c-calendar__month {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: inherit;
}

.gb-c-calendar__body {
  background-color: #FFFFFF;
}

.gb-c-calendar__days {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: inherit;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  cursor: pointer;
}

.gb-c-calendar__day {
  width: 14.2857143%;
  text-align: center;
  font-size: inherit;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 18px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
  padding: 0.3125rem;
}

@media (min-width: 80.01em) {
  .gb-c-calendar__day {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

.gb-c-calendar .is-active {
  border-radius: 100%;
  padding: 0.3125rem;
  color: #FFFFFF;
  background-color: #053371;
}

.gb-c-programs {
  padding: 35px 0;
}

@media (min-width: 64.01em) {
  .gb-c-programs {
    padding: 100px 0 0 0;
  }
}

.gb-c-programs__heading {
  color: #FFFFFF;
  margin-bottom: 0.9375rem;
}

.gb-c-programs__intro {
  color: #FFFFFF;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  margin-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-c-programs__intro {
    width: 100%;
    margin-bottom: 5rem;
  }
}

@media (min-width: 80.01em) {
  .gb-c-programs__intro {
    width: 60%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-programs__intro {
    width: 45%;
  }
}

.gb-c-programs__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.625rem;
  padding-bottom: 1.25rem;
  border-top: 3px solid #1948B4;
}

@media (min-width: 64.01em) {
  .gb-c-programs__block {
    margin-left: -1.94805%;
    margin-right: -1.94805%;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    border: 0;
    width: calc(20% + 3.8961%);
    display: block;
    z-index: 1;
    padding: 0;
    -webkit-transition: 200ms all ease;
    transition: 200ms all ease;
  }
}

.gb-c-programs__block.is-active {
  border-top: 3px solid #FE6301;
}

@media (min-width: 64.01em) {
  .gb-c-programs__block:hover, .gb-c-programs__block:focus {
    opacity: 1;
    z-index: 5;
    border-color: #FE6301;
  }
  .gb-c-programs__block:hover *, .gb-c-programs__block:focus * {
    opacity: 1;
    color: #FFFFFF;
  }
  .gb-c-programs__block:hover .gb-c-programs__title, .gb-c-programs__block:focus .gb-c-programs__title {
    border-color: #FE6301;
  }
  .gb-c-programs__block:hover .gb-c-programs__figure:after, .gb-c-programs__block:focus .gb-c-programs__figure:after {
    content: none;
  }
}

@media (min-width: 64.01em) {
  .gb-c-programs__block:nth-child(even) {
    margin-top: 12%;
    z-index: 2;
  }
}

.gb-c-programs__figure {
  width: 25%;
}

@media (min-width: 64.01em) {
  .gb-c-programs__figure {
    width: 100%;
    position: relative;
  }
  .gb-c-programs__figure:after {
    content: "";
    z-index: 1;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    background-color: rgba(34, 34, 34, 0.3);
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
  }
}

.gb-c-programs__cta {
  color: #84BAFF;
}

@media (min-width: 64.01em) {
  .gb-c-programs__cta {
    display: none;
  }
}

@media (min-width: 64.01em) {
  .gb-c-programs__row {
    width: 100%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
    padding-left: 2%;
    padding-right: 2%;
  }
}

.gb-c-programs__content {
  color: #FFFFFF;
  padding-left: 3.8961%;
  width: 75%;
}

@media (min-width: 64.01em) {
  .gb-c-programs__content {
    width: 100%;
    padding: 0;
  }
}

.gb-c-programs__image {
  width: 100%;
  display: block;
}

@media (min-width: 64.01em) {
  .gb-c-programs__title {
    margin-top: 1.5625rem;
    font-size: 1.875rem;
    border-bottom: 5px solid #1948B4;
    opacity: 0.5;
    display: none;
    padding-bottom: 0.9375rem;
  }
}

.gb-c-programs__title.gb-c-accordion__toggle[aria-expanded="true"] .gb-c-accordion__icon-y,
.gb-c-programs__title.gb-c-accordion__toggle[aria-expanded="true"] .gb-c-accordion__icon-x {
  fill: #FE6301;
}

.gb-c-programs__title--small {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.125rem;
}

@media (min-width: 64.01em) {
  .gb-c-programs__title--small {
    display: none;
  }
}

.gb-c-programs__title--large {
  font-family: "ITC Avant Garde Pro Md";
  display: none;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 2.3125rem;
}

@media (min-width: 64.01em) {
  .gb-c-programs__title--large {
    display: block;
    color: #1948B4;
  }
}

.gb-c-programs__excerpt {
  padding-top: 0.625rem;
  padding-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-c-programs__excerpt {
    display: block;
    opacity: 0;
    margin-left: 0;
    color: #1948B4;
  }
}

.gb-c-programs__toggle-icon {
  fill: #FE6301;
}

@media (min-width: 64.01em) {
  .gb-c-programs__toggle-icon {
    display: none;
  }
}

.gb-c-link-list {
  margin-bottom: 2.5rem;
}

@media (min-width: 64.01em) {
  .gb-c-link-list {
    margin-bottom: 3.125rem;
  }
}

.gb-c-link-list:last-child {
  margin-bottom: 0;
}

.gb-c-link-list__heading {
  margin-bottom: 0.625rem;margin-top: 1.5rem;
}

@media (min-width: 64.01em) {
  .gb-c-link-list__heading {
    margin-bottom: 1.5625rem;margin-top: 1.65rem;
  }
}

.gb-c-link-list__intro {
  margin-bottom: 0.9375rem;
}

@media (min-width: 64.01em) {
  .gb-c-link-list__intro {
    margin-bottom: 2.5rem;
  }
}

.gb-c-link-list__group {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

@media (min-width: 64.01em) {
  .gb-c-link-list__group {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 50%;
    padding-right: 1.94805%;
  }
}

.gb-c-link-list__item {
  margin-top: 1.25rem;
}

.gb-c-link-list__item:first-child {
  margin-top: 0;
}

.gb-c-link-list__figure {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-bottom: 0.625rem;
}

@media (min-width: 64.01em) {
  .gb-c-link-list__figure {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 50%;
    padding-left: 1.94805%;
  }
}

.gb-c-link-list__link {
  display: block;
  color: #1948B4;
  font-size: 1.3625rem;
  font-family: "ITC Avant Garde Pro Md";
}

.gb-c-link-list__link a:hover, .gb-c-link-list__link a:focus {
  text-decoration: underline;
  opacity: 0.7;
}


.gb-c-link-list__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 64.01em) {
  .gb-c-link-list__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
  }
}

.gb-c-link-list__content--imageless .gb-c-link-list__group {
  width: 100%;
}

.gb-c-link-list__download {
  fill: #1948B4;
  margin-left: 0.625rem;
}

.gb-c-link-list-alt {
  border-top: 4px solid #FE6301;
  margin-bottom: 3.125rem;
}

.gb-c-link-list-alt__group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.gb-c-link-list-alt__item {
  padding: 1.25rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.gb-c-link-list-alt__link {
  line-height: 1;
  color: #1948B4;
}

.gb-c-link-list-alt__link[target="_blank"]:after {
  background-image: url("/main/images/svg-external-blue.svg");
}

.gb-c-elevated-link {
  background-color: #053371;
  color: #FFFFFF;
  padding: 1.875rem 1.875rem 3.125rem 1.875rem;
  line-height:.8;
}

.gb-c-elevated-link__link {
  color: #84BAFF;
}

.gb-c-elevated-link__link:hover, .gb-c-elevated-link__link:focus {
  color: #FFFFFF;
}

.gb-c-elevated-link__item {
  margin-top:1.1rem;
}

.gb-c-elevated-link--small {
  margin-bottom: 2.5rem;
}

@media (min-width: 80.01em) {
  .gb-c-elevated-link--small {
    display: none;
  }
}

.gb-c-elevated-link--large {
  display: none;
}

@media (min-width: 80.01em) {
  .gb-c-elevated-link--large {
    display: block;
  }
}

.gb-c-video {
  position: relative;
}

@media (min-width: 64.01em) {
  .gb-c-video {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 64.01em) {
  .gb-c-video--contain {
    margin-left: 0;
    margin-right: 0;
  }
}

.gb-c-video__content {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 64.01em) {
  .gb-c-video__content {
    left: 2.5rem;
    bottom: 2.5rem;
  }
}

.gb-c-video__meta {
  margin-left: 1.875rem;
}

.gb-c-video__title {
  font-size: 20px;
  font-size: 1.375rem;
  font-family: "ITC Avant Garde Pro Md";
  line-height: 1.525rem;
  color: #FFFFFF;
}
@media (min-width: 64.01em) {
  .gb-c-video__title {
     font-size: 30px;
  font-size: 1.875rem;
  line-height: 2.125rem;
  }
}

.gb-c-video__block {
  position: relative;
}

.gb-c-video__poster { /* force poster to take up full vertical space - ajc */
  display: block;
  width: 100%;
}

.is-active .gb-c-video__poster {
  display: none;
}

.gb-c-video__play-button__outer {
  fill: #FE6301;
}

.gb-c-video__play-button__inner {
  fill: #FFFFFF;
}

.is-active .gb-c-video__play-button {
  display: none;
}

.gb-c-video__description {
  margin-top: 0.75rem;
  display: block;
  color: #FFFFFF;
}

@media (min-width: 64.01em) {
  .gb-c-video__description {
    margin-top: 1.5625rem;
  }
}

.gb-c-video__container.is-swap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}

.gb-c-video__container.is-swap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gb-c-video-spotlight__heading {
  margin-bottom: 1.5625rem;
}

.gb-c-video-spotlight__link {
  color: #222222;
}

.gb-c-video-spotlight__figure {
  position: relative;
  margin-bottom: 0.625rem;
}

@media (min-width: 64.01em) {
  .gb-c-video-spotlight__figure {
    margin-bottom: 2.5rem;
  }
}

.gb-c-video-spotlight__figure svg {
  position: absolute;
  bottom: 1.5625rem;
  left: 1.5625rem;
  width: 6.0625rem;
  height: 5.1875rem;
}

.gb-c-video-spotlight__quote {
  position: relative;
}

.gb-c-video-spotlight__quote-left {
  position: absolute;
  left: -0.75rem;
}

.gb-c-news-event-bar {
  padding: 4.375rem 0;
}

.gb-c-news-event-bar__subtitle {
  color: #FFFFFF;
  margin-bottom: 1.875rem;
}

.gb-c-news-event-bar__form {
  color: #FFFFFF;
}

.gb-c-news-event-bar__checkbox {
  display: none;
}

.gb-c-news-event-bar__checkbox:checked ~ .gb-c-filter__icon .gb-c-filter__icon__check {
  opacity: 1;
}

.gb-c-news-event-bar__label {
  cursor: pointer;
}

.gb-c-news-event-bar .gb-c-filter__icon {
  margin-right: 0;
  margin-left: 0.625rem;
  width: 1.125rem;
  height: 1.125rem;
}

.gb-c-news-event-bar .gb-c-filter__icon__border {
  fill: #053371;
  stroke: #84BAFF;
}

.gb-c-contact {
  padding-bottom: 3.125rem;
}

.gb-c-contact__figure {
  width: 100%;
}

.gb-c-contact__image {
  width: 100%;
}

.gb-c-contact__heading {
  color: #222222;
  padding: 1.25rem;
}

@media (min-width: 30.01em) {
  .gb-c-contact__heading {
    padding: 1.875rem;
  }
}

.gb-c-contact__subheading {
  color: #222222;
  margin-top: 1.25rem;
  padding: 0 20px;
}

@media (min-width: 30.01em) {
  .gb-c-contact__subheading {
    margin-top: 1.875rem;
    padding: 0 30px;
  }
}

.gb-c-contact__body {
  color: #222222;
  padding: 0 20px;
}

@media (min-width: 30.01em) {
  .gb-c-contact__body {
    padding: 0 30px;
  }
}

.gb-c-contact--x {
  padding: 35px 1.5625rem;
}

@media (min-width: 80.01em) {
  .gb-c-contact--x {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.gb-c-contact--x__heading {
  margin-bottom: 0.625rem;
}

.gb-c-contact--x__block {
  margin-top: 1.25rem;
}

.gb-c-contact--x a {
  color: #1948B4;
  display: block;
}

.gb-c-contact--x__location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gb-c-contact--x__address {
  width: 100%;
}

.gb-c-contact--x__figure {
  display: none;
  width: 100%;
  margin-left: 1.25rem;
}

@media (min-width: 80.01em) {
  .gb-c-contact--x__figure {
    display: block;
    max-width: 35%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-contact--x__figure {
    max-width: 50%;
  }
}

.gb-c-contact--x__image {
  width: 100%;
}

/********************
** Lockup Alt
********************/
.gb-c-lockup-alt {
  position: relative;
  display: block;
}

@media (min-width: 48.01em) {
  .gb-c-lockup-alt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.gb-c-lockup-alt__block {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 3.8961%;
}

@media (min-width: 48.01em) {
  .gb-c-lockup-alt__block {
    margin-bottom: 0;
  }
}

.gb-c-lockup-alt__block--intro {
  font-family: "mrseavesxlsernarot-reg", serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.875rem;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1.8rem;
}

@media (min-width: 48.01em) {
  .gb-c-lockup-alt__block--intro {
    padding: 3.75rem 2.5rem 3.75rem 2.5rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-lockup-alt__block--intro {
    padding: 7.5rem 2.5rem 7.5rem 2.5rem;
    font-size: 55px;
    font-size: 3.4375rem;
    line-height: 3.25rem;
  }
}

.gb-c-lockup-alt__content {
  display: block;
  position: relative;
  min-height: 9.375rem;
  padding: 0.9rem;
}

@media (min-width: 48.01em) {
  .gb-c-lockup-alt__content {
    min-height: 18.75rem;
    padding: 1.8rem;
  }
}

@media (min-width: 55.6975em) {
  .gb-c-lockup-alt__content {
    min-height: 25rem;
  }
}

@media (min-width: 80.01em) {
  .gb-c-lockup-alt__content {
    min-height: 31.25rem;
    padding: 4.5rem 3.6rem;
  }
}

@media (min-width: 131.26em) {
  .gb-c-lockup-alt__content {
    min-height: 37.5rem;
  }
}

.gb-c-lockup-alt__featured .gb-c-lockup-alt__content {
  padding: 1.8rem 0;
}

@media (min-width: 48.01em) {
  .gb-c-lockup-alt__featured .gb-c-lockup-alt__content {
    padding: 2.7rem 1.8rem;
  }
}

@media (min-width: 80.01em) {
  .gb-c-lockup-alt__featured .gb-c-lockup-alt__content {
    padding: 4.5rem 10% 4.5rem 13%;
  }
}

.gb-c-lockup-alt__featured .gb-c-lockup-alt__excerpt {
  max-width: 40.625rem;
}

@media (max-width: 63.99em) {
  .gb-c-lockup-alt--admission {
    padding-left: 3.8961%;
    padding-right: 3.8961%;
    margin-bottom: 3.8961%;
  }
}

@media (min-width: 48.01em) {
  .gb-c-lockup-alt--admission {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 48.01em) {
  .gb-c-lockup-alt--admission .gb-c-lockup-alt__block {
    width: 50%;
  }
}

blockquote.gb-c-mag-upper { /* ajc - convert Magazine blockquotes to all caps */
	text-transform: uppercase; 
	font-weight: 500; 
}

blockquote.gb-c-mag-upper p { /* ajc - suspend negative letter spacing for all-capped quotes */
	letter-spacing: 0;
}

blockquote.gb-c-mag-upper cite { /* ajc - right align and reduce the size of Magazine cites */
	display:block; 
	font-size:60%; 
	font-style:normal; 
	text-align:right;
}

.gb-c-code-border { /* ajc - add a border to inline code snippets */
	background:#EEEEEE; 
	border:1px solid #DDDDDD; 
	border-radius:3px; 
	font-size:90%; 
	margin:auto .15rem;
	padding:.1rem .2rem; 
}

.gb-flex-grid {
  display: block;
  list-style: none;
}

@media (min-width: 48.01em) {
  .gb-flex-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.col-flex--quarter {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 25%;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
}

.col-flex--third {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 33.333333333%;
  -ms-flex: 1 1 33.333333333%;
  flex: 1 1 33.333333333%;
}

.col-flex--third-alt {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 30%;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
}

.col-flex--half {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

.col-flex--three-quarters {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 75%;
  -ms-flex: 1 1 75%;
  flex: 1 1 75%;
}

.col-flex--two-thirds {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 66.666666666%;
  -ms-flex: 1 1 66.666666666%;
  flex: 1 1 66.666666666%;
}

.col-flex--full {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.col-flex--1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 48.01em) {
  .col-gap--left {
    padding-left: 20%;
  }
}

@media (min-width: 48.01em) {
  .col-gap--right {
    padding-right: 20%;
  }
}

@media (min-width: 48.01em) {
  .col-gap--half--left {
    padding-left: 3.8961%;
  }
}

@media (min-width: 48.01em) {
  .col-gap--half--right {
    padding-right: 3.8961%;
  }
}
.gb-c-alert {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  background-color: #FE6301;
}

.gb-c-alert a {
  color: #FFFFFF;
  text-decoration: underline;
}

.not-supported-ie .gb-c-alert {
  display: block;
}
.gb-c-ig {
  position: relative;
  
}

@media (min-width: 30.01em) {
  .gb-c-ig {
    display: inline-block; max-width: 17.2rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-ig--column {
    display: none;
  }
}

.gb-c-ig__photo {
  margin-bottom: 0.625rem;
}

@media (min-width: 30.01em) {
  .gb-c-ig__photo {
    display: inline-block;
  }
}

@media (min-width: 64.01em) {
  .gb-c-ig__photo {
    display: block;
    position: absolute;
  }
}

.gb-c-ig__icon {
  fill: #FFFFFF;
  position: absolute;
  top: 4%;
  right: 2%;
  width: 16%;
  height: 16%;
}
.gb-c-ig__image {
  width: 100%;
}
@media (min-width: 30.01em) {
  .gb-c-ig__image {
    max-width: 17.1875rem; 
    text-align: right;
  }
}

@media (min-width: 64.01em) {
  .gb-c-ig__image {
    max-width: 23.75rem;
  }
}

.gb-c-ig__meta {
  text-align: right;
}

@media (min-width: 30.01em) {
  .gb-c-ig__meta {
    text-align: left;
  }
}
@media (min-width: 64.01em) {
  .gb-c-ig__meta {
    text-align: right;
    -webkit-transform: translateX(-110%);
    transform: translateX(-110%);
  }
}
.gb-c-carousel-story {
  /* no circle */
  /* big previous & next buttons */
  /* icon color */
  /* hide disabled button */
}
.gb-c-carousel-story__wrapper, .gb-c-carousel-careers {
  padding: 35px 0;
}
@media (min-width: 64.01em) {
  .gb-c-carousel-story__wrapper, .gb-c-carousel-careers {
    padding: 70px 0;
  }
}
.gb-c-carousel-story__heading {
  margin-bottom: 35px;
  color: #FFFFFF;
}
.gb-c-carousel-story__slide {
  position: relative;
  width: 100%;
  background-color: #053371; /* ajc - add dark background color for sufficient contrast with white text */
}
.gb-c-carousel-story__figure:before {
  content: "";
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(34, 34, 34, 0)), to(rgba(0, 0, 0, 0.85)));
  background: linear-gradient(to bottom, rgba(34, 34, 34, 0), rgba(0, 0, 0, 0.85));
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
}
.gb-c-carousel-story__image {
  height: 100%;
}
.gb-c-carousel-story__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding-right: 3.8961%;
  padding-left: 3.8961%;
  margin-bottom: 3.8961%;
  color: #FFFFFF;
}

.gb-c-carousel-story__excerpt {
  display: none;
}

.gb-c-carousel-story__excerpt a, .gb-c-carousel-story__excerpt a:hover {
  color:#fff;
}

@media (min-width: 48.01em) {
   .gb-c-carousel-story__excerpt {
  display: block;
}
    
}
@media (min-width: 64.01em) {
  .gb-c-carousel-story__excerpt {
    display: block;
    width: 50%;
  }
}

.gb-c-carousel-story__category {
  margin-bottom: 10px;
}

.gb-c-carousel-story__title {
  max-width: 42.5rem;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-story__title {
    width: 75%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-carousel-story__title {
    width: 43%;
  }
}

.gb-c-carousel-story .flickity-button {
  background: transparent;
}

.gb-c-carousel-story .flickity-button.previous {
  display: none;
}

.gb-c-carousel-story .flickity-button.next {
  top: initial;
  right: 20px;
  bottom: 20px;
}

.gb-c-carousel-story .flickity-prev-next-button {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 64.01em) {
  .gb-c-carousel-story .flickity-prev-next-button {
    width: 3.125rem;
    height: 3.125rem;
  }
}

.gb-c-carousel-story .flickity-button-icon {
  fill: white;
}

.gb-c-carousel-story .flickity-page-dots {
  position: relative;
  display: block;
}
.gb-c-carousel-story .flickity-button:disabled {
  display: none;
}

.gb-c-carousel-inline {
  padding-bottom: 25px;
  /* no circle */
  /* big previous & next buttons */
  /* icon color */
  /* hide disabled button */
}

@media (min-width: 64.01em) {
  .gb-c-carousel-inline {
    padding-bottom: 50px;
  }
}

.gb-c-carousel-inline__slide {
  position: relative;
  width: 100%;
}

.gb-c-carousel-inline__figure:before {
  content: "";
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.7));
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
}

.gb-c-carousel-inline__image {
  display: block;
  width: 100%;
}

.gb-c-carousel-inline__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  margin: 20px;
  color: #FFFFFF;
}
.gb-c-carousel-inline__excerpt {
  display: block;
}
.gb-c-carousel-inline__excerpt a, .gb-c-carousel-inline__excerpt a:hover {
  color:#fff;
}
@media (min-width: 48.01em) {
  .gb-c-carousel-inline__excerpt {
    display: block;
    width: 80%;
  }
}
.gb-c-carousel-inline__category {
  margin-bottom: 10px;
}
@media (min-width: 64.01em) {
  .gb-c-carousel-inline__title {
    width: 40%;
    margin-bottom: 20px;
  }
}
@media (min-width: 103.135em) {
  .gb-c-carousel-inline__title {
    margin-bottom: 35px;
  }
}

.gb-c-carousel-inline .flickity-button {
  background: transparent;
}

.gb-c-carousel-inline .flickity-button.previous {
  display: none;
}

.gb-c-carousel-inline .flickity-button.next {
  top: initial;
  right: 20px;
  bottom: 20px;
}

.gb-c-carousel-inline .flickity-prev-next-button {
  width: 24px;
  height: 24px;
}

.gb-c-carousel-inline .flickity-button-icon {
  fill: white;
}

.gb-c-carousel-inline .flickity-button:disabled {
  display: none;
}

.gb-c-carousel-careers {
  /* big previous & next buttons */
}

.gb-c-carousel-careers__slide {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


.gb-c-carousel-careers__slide.is-selected .gb-c-carousel-careers__overlay-image {
  opacity: 1;
}

.gb-c-carousel-careers__overlay-image {
    height:100%;
  vertical-align: text-bottom;
  -webkit-transition: 200ms all ease;
  transition: 200ms all ease;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
  opacity: 0;
}

.gb-c-carousel-careers .flickity-prev-next-button {
  width: 50px;
  height: 50px;
  background-color: transparent;
}

.gb-c-carousel-careers .flickity-prev-next-button.previous {
  left: 20px;
}

.gb-c-carousel-careers .flickity-prev-next-button.next {
  right: 20px;
}

.gb-c-carousel-careers .flickity-button-icon {
  fill: #FFFFFF;
}

.gb-c-carousel-careers .flickity-page-dots {
  position: relative;
  display: block;
}

.gb-c-carousel-careers .flickity-button:disabled {
  opacity: 0.6;
}

.gb-c-carousel-course {
  /* big previous & next buttons */
  /* icon color */
  /* hide disabled button */
}

.gb-c-carousel-course__slide {
  width: 100%;
  padding-right: 15%;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-course__slide {
    padding-right: 10%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-carousel-course__slide {
    padding-right: 25%;
  }
}

.gb-c-carousel-course__body {
  margin-top: 10px;
}

.gb-c-carousel-course .flickity-prev-next-button {
  width: 50px;
  height: 50px;
  background-color: transparent;
}

.gb-c-carousel-course .flickity-prev-next-button.previous {
  display: none;
}

.gb-c-carousel-course .flickity-button-icon {
  fill: #FE6301;
}

.gb-c-carousel-course .flickity-button:disabled {
  display: none;
}

.gb-c-carousel-spotlight {
  padding: 35px 0;
  /* big previous & next buttons */
}

@media (min-width: 64.01em) {
  .gb-c-carousel-spotlight {
    padding: 70px 0;
  }
}

.gb-c-carousel-spotlight__heading {
  margin-bottom: 35px;
  color: #FFFFFF;
}

.gb-c-carousel-spotlight__slide {
  position: relative;
  width: 100%;
}

.gb-c-carousel-spotlight__slide:after {
  content: "";
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
}

.gb-c-carousel-spotlight__image {
  width: 100%;
}

.gb-c-carousel-spotlight__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 40px;
  color: #FFFFFF;
}

.gb-c-carousel-spotlight__title {
  color: #FFFFFF;
  font-size: 40px;
  line-height: 44px;
  font-family: "mrseavesxlsernarot-reg", serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 28px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-c-carousel-spotlight__title {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 28px;
  }
}

@media (min-width: 64.01em) {
  .gb-c-carousel-spotlight__title {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 64px;
  }
}

@media (min-width: 131.26em) {
  .gb-c-carousel-spotlight__title {
    font-size: 64px;
    font-size: 4rem;
    line-height: 64px;
  }
}

.gb-c-carousel-spotlight__title:hover, .gb-c-carousel-spotlight__title:focus {
  color: #FFFFFF;
  text-decoration: underline;
}

.gb-c-carousel-spotlight-wide__slide {
  position: relative;
  display: block;
  width: 100%;
}

.gb-c-carousel-spotlight-wide__image {
  display: none;
}


.gb-c-carousel-spotlight-wide__wrapper {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 20%;
  background-position: center;
  background-size: cover;
}

@media (max-width: 63.99em) {
  .gb-c-carousel-spotlight-wide__wrapper:before {
    content: "";
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
  }
}

@media (min-width: 64.01em) {
  .gb-c-carousel-spotlight-wide__wrapper {
   padding-top: 45.1147%;
  }
}

@media (max-width: 63.99em) {
  .gb-c-carousel-spotlight-wide__wrap {
    position: relative;
    z-index: 8;
  }
}

@media (min-width: 64.01em) {
  .gb-c-carousel-spotlight-wide__wrap:before {
    content: "";
    z-index: 2;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
  }
}

.gb-c-carousel-spotlight-wide__content {
  z-index: 99;
  padding: 2.5rem 3.75rem;
  color: #FFFFFF;
}

@media (min-width: 64.01em) {
  .gb-c-carousel-spotlight-wide__content {
    position: absolute;
    bottom: 0;
  }
}

.gb-c-carousel-spotlight-wide__title {
  color: #FFFFFF;
  font-family: "mrseavesxlsernarot-reg", serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: normal;
}

@media (min-width: 30.01em) {
  .gb-c-carousel-spotlight-wide__title {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-carousel-spotlight-wide__title {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (min-width: 131.26em) {
  .gb-c-carousel-spotlight-wide__title {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

.gb-c-carousel-spotlight-wide__title:hover, .gb-c-carousel-spotlight-wide__title:focus {
  color: #FFFFFF;
  text-decoration: underline;
}

.gb-c-carousel-spotlight-video__slide {
  display: block;
  width: 100%;
}

.gb-c-carousel-spotlight-video__container {
  width: 100%;
  padding: 2.5rem 3.75rem;
  color: #FFFFFF;
  background-color: #053371;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight-video__container {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 2.5rem 4.6875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-carousel-spotlight-video__container {
    padding: 5rem 8.125rem;
  }
}

.gb-c-carousel-spotlight-video__body {
  width: 100%;
  margin-bottom: 1.25rem;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight-video__body {
    width: 50%;
    padding-right: 1.5625rem;
  }
}

.gb-c-carousel-spotlight-video__meta {
  margin-top: 1.875rem;
}

.gb-c-carousel-spotlight-video__link {
  display: block;
  width: 100%;
  padding-bottom: 1.25rem;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight-video__link {
    width: 50%;
    padding-left: 25px;
  }
}

.gb-c-carousel-spotlight-short__slide {
  display: block;
  width: 100%;
}

.gb-c-carousel-spotlight-short__container {
  width: 100%;
  padding: 2.5rem 3.75rem;
  color: #FFFFFF;
  background-color: #053371;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight-short__container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 5rem 8.125rem;
  }
}

.gb-c-carousel-spotlight-short__link {
  display: block;
  color: #FFFFFF;
}

.gb-c-carousel-spotlight-short__content {
  width: 100%;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight-short__content {
    width: 48%;
  }
}

.gb-c-carousel-spotlight-short__body {
  width: 100%;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight-short__body {
    width: 48%;
  }
}

.gb-c-carousel-spotlight-short__meta {
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}

.gb-c-carousel-spotlight-short__intro {
  margin-bottom: 0.625rem;
}

.gb-c-carousel-spotlight-default__slide {
  width: 100%;
}

.gb-c-carousel-spotlight .flickity-prev-next-button {
  width: 50px;
  height: 50px;
  background-color: transparent;
}

.gb-c-carousel-spotlight .flickity-prev-next-button.previous {
  left: 0.625rem;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight .flickity-prev-next-button.previous {
    left: 1.25rem;
  }
}

.gb-c-carousel-spotlight .flickity-prev-next-button.next {
  right: 0.625rem;
}

@media (min-width: 48.01em) {
  .gb-c-carousel-spotlight .flickity-prev-next-button.next {
    right: 1.25rem;
  }
}

.gb-c-carousel-spotlight .flickity-button-icon {
  fill: #FFFFFF;
}

.gb-c-carousel-spotlight .flickity-page-dots {
  position: absolute;
  bottom: 0.9375rem;
}

@media (min-width: 64.01em) {
  .gb-c-carousel-spotlight .flickity-page-dots {
    bottom: 1.5625rem;
  }
}

.gb-c-carousel-spotlight .flickity-page-dots .dot{
  background-color: #FFFFFF;
}

.gb-c-carousel-spotlight .flickity-button:disabled {
  opacity: 0.6;
}

@media (min-width: 48.01em) {
  .js-carousel-collage .flickity-page-dots {
    display: none;
  }
}

/**
 *
 * Global Flickity 
 *
 **/
.flickity-page-dots {
  bottom: 0;
  position: relative;
  margin-top: 3px;
}

.flickity-page-dots .dot {
  background-color: #222222;
  opacity: 0.8;
  width: 6px;
  height: 6px;
}

.flickity-page-dots .dot.is-selected {
  background-color: #FE6301;
}

.flickity-viewport {
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.gb-c-pagination {
  text-align: left;
  margin-top: 1.5625rem;
  margin-bottom: 6.25rem;
  text-align: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

@media (min-width: 64.01em) {
  .gb-c-pagination {
    text-align: left;
  }
}

.gb-c-pagination__arrow {
  color: #FFFFFF;
  background-color: #053371;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  z-index: 0;
  font-weight: bold;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 0.8;
}

@media (min-width: 64.01em) {
  .gb-c-pagination__arrow {
    padding: 2px 0.9375rem;
    font-size: 1.875rem;
  }
}

.gb-c-pagination__arrow:before, .gb-c-pagination__arrow:after {
  content: "";
  position: absolute;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  z-index: -1;
  top: 50%;
  left: 50%;
  background-color: #043B82;
}

.gb-c-pagination__arrow:before {
  opacity: 0;
  -webkit-transform: translate3d(-150%, -50%, 0);
  transform: translate3d(-150%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-pagination__arrow:after {
  opacity: 1;
  -webkit-transform: translate3d(50%, -50%, 0);
  transform: translate3d(50%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-pagination__arrow:hover, .gb-c-pagination__arrow:focus {
  color: #FFFFFF;
}

.gb-c-pagination__arrow:hover:before, .gb-c-pagination__arrow:focus:before {
  opacity: 1;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 650ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-pagination__arrow:hover:after, .gb-c-pagination__arrow:focus:after {
  opacity: 0;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99), opacity 0ms cubic-bezier(0.55, 0.085, 0, 0.99), -webkit-transform 0ms cubic-bezier(0.55, 0.085, 0, 0.99);
}

.gb-c-pagination__arrow svg {
  width: 1.875rem;
  height: 1.5rem;
  fill: #FFFFFF;
}

.gb-c-pagination__arrow--prev {
  margin-right: 0.9375rem;
}

.gb-c-pagination__arrow--prev.is-disabled svg {
  fill: #C0C0C0;
}

.gb-c-pagination__arrow--next.is-disabled svg {
  fill: #C0C0C0;
}

.gb-c-pagination__page {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: #1948B4;
  margin-right: 1.8125rem;
  position: relative;
}

@media (min-width: 64.01em) {
  .gb-c-pagination__page {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-pagination__page {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gb-c-pagination__page.is-current {
  color: #222222;
}

.gb-c-pagination__page + .gb-c-pagination__ellipsis {
  margin-right: 1.625rem;
}

.gb-c-pagination__page + .gb-c-pagination__page {
  margin-right: 1.8125rem;
}

.gb-c-pagination__ellipsis {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
  line-height: 1;
}

@media (min-width: 64.01em) {
  .gb-c-pagination__ellipsis {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-pagination__ellipsis {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gb-c-pagination__ellipsis--front + .gb-c-pagination__page {
  margin-left: 0;
  margin-right: 1.8125rem;
}

.gb-c-filter {
  margin-bottom: 1.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 64.01em) {
  .gb-c-filter {
    margin-bottom: 0;
  }
}

.gb-c-filter__hidden {
  display: none;
}

@media (min-width: 64.01em) {
  .gb-c-filter__hidden {
    display: block !important;
  }
}

.gb-c-filter__checkbox {
  display: none;
}

.gb-c-filter__checkbox:checked ~ .gb-c-filter__icon .gb-c-filter__icon__check {
  opacity: 1;
}

.gb-c-filter [aria-expanded="false"] {
  margin-bottom: 0;
}

@media (min-width: 64.01em) {
  .gb-c-filter [aria-expanded="false"] {
    margin-bottom: 1.875rem;
  }
}

.gb-c-filter [aria-expanded="true"].gb-c-filter__heading {
  margin-bottom: 1.875rem;
}

.gb-c-filter [aria-expanded="true"] .gb-c-accordion__icon-y,
.gb-c-filter [aria-expanded="true"] .gb-c-accordion__icon-x {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.gb-c-filter [aria-expanded="true"] .gb-c-accordion__icon-x {
  opacity: 0;
}

.gb-c-filter [role="button"] {
  cursor: pointer;
}

.gb-c-filter__legend {
  cursor: pointer;
}

.gb-c-filter__legend svg {
  margin-right: 0.3125rem;
}

@media (min-width: 64.01em) {
  .gb-c-filter__legend--small {
    display: none;
  }
}

.gb-c-filter__legend--large {
  display: none;
}

@media (min-width: 64.01em) {
  .gb-c-filter__legend--large {
    display: block;
  }
}

.gb-c-filter__label {
  cursor: pointer;
  display: block;
  margin-bottom: 0.4375rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.gb-c-filter__icon {
  width: 0.9375rem;
  height: 0.9375rem;
  margin-right: 0.625rem;
}

.gb-c-filter__icon__border {
  stroke: #1948B4;
  fill: #FFFFFF;
}

.gb-c-filter__icon__check {
  -webkit-transition: 50ms all ease;
  transition: 50ms all ease;
  fill: #FE6301;
  opacity: 0;
}

.gb-c-filter__heading {
  line-height: 1;
  margin-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-c-filter__heading {
    pointer-events: none;
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-filter__heading svg {
    display: none;
  }
}

.gb-c-filter__group {
  margin-bottom: 1.5625rem;
}

.gb-c-filter-tag {
  line-height: 1;
  margin-bottom: 1.5625rem;
}

.gb-c-filter-tag__group {
  display: inline-block;
}

.gb-c-filter-tag__group + .gb-c-filter-tag__group {
  margin-left: 0.625rem;
}

.gb-c-filter-tag__link {
  color: #1948B4;
  line-height: 1;
}

.gb-c-faculty__title {
  margin-bottom: 1.25rem;
}

.gb-c-faculty__position {
  margin-bottom: 0.625rem;
}

.gb-c-faculty__specialty {
  margin-bottom: 2.5rem;
}

.gb-c-faculty__figure {
  width: 100%;
}

.gb-c-faculty__image {
  display: block;
}

.gb-c-faculty-row {
  margin-top: 5.625rem;
}

@media (min-width: 48.01em) {
  .gb-c-faculty-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.gb-c-faculty-info__block {
  margin-bottom: 1.25rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 48.01em) {
  .gb-c-faculty-info__block {
    margin-bottom: 0;
  }
}

@media (min-width: 48.01em) {
  .gb-c-faculty-info__block:first-child {
    padding-right: 0.625rem;
  }
}

@media (min-width: 48.01em) {
  .gb-c-faculty-info__block:last-child {
    padding-left: 0.625rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-landing__intro {
    width: 85%;
  }
}

.gb-c-collage {
  padding: 2.5rem 0;
}

.gb-c-collage__block {
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  background-color: #222222;
  position: relative;
  padding-top: 120%;
}

@media (min-width: 48.01em) {
  .gb-c-collage__block {
    width: 33.333%;
    padding-top: 43%;
  }
}

.gb-c-collage__content {
  padding: 1.2rem;
  position: absolute;
  color: #FFFFFF;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (min-width: 64.01em) {
  .gb-c-collage__content {
    padding: 1.8rem;
  }
}

.gb-c-collage__inner {
  color: #FFFFFF;
  position: relative;
}

.gb-c-collage__title, .gb-c-collage__body {
  margin-bottom: 0.72rem;
}

@media (min-width: 80.01em) {
  .gb-c-collage__title, .gb-c-collage__body {
    margin-bottom: 1.8rem;
  }
}

.gb-c-collage__meta {
  display: inline-block;
}

.gb-c-collage__meta:after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #FFFFFF;
  display: inline-block;
  margin: 0 0.625rem;
  vertical-align: middle;
  border-radius: 100%;
}

.gb-c-collage__meta:last-child:after {
  display: none;
}

.gb-c-collage .flickity-button {
  background: none;
}

.gb-c-collage .flickity-button.previous {
  display: none;
}

.gb-c-collage .flickity-button .flickity-button-icon {
  fill: #FFFFFF;
}

.gb-c-collage--masonry:after {
  content: "flickity";
  display: none;
  /* hide :after */
}

@media (min-width: 48.01em) {
  .gb-c-collage--masonry {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .gb-c-collage--masonry:after {
    content: "";
  }
}

.gb-c-collage--masonry .column:first-child {
  width: 100%;
}

@media (min-width: 48.01em) {
  .gb-c-collage--masonry .column:first-child {
    width: 50%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .column:first-child {
    width: 60%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .column:first-child .gb-c-collage__block {
    height: 100%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .column:first-child .gb-c-collage__title {
    display: none;
  }
}

.gb-c-collage--masonry .column:first-child .gb-c-collage__body {
  display: none;
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .column:first-child .gb-c-collage__body {
    display: block;
  }
}

.gb-c-collage--masonry .column:first-child .gb-c-collage__meta--title {
  display: none;
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .column:first-child .gb-c-collage__meta--title {
    display: inline-block;
  }
}

.gb-c-collage--masonry .column:last-child {
  width: 100%;
}

@media (min-width: 48.01em) {
  .gb-c-collage--masonry .column:last-child {
    width: 50%;
  }
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .column:last-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.gb-c-collage--masonry .column:last-child .gb-c-collage__block:last-child {
  display: none;
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .column:last-child .gb-c-collage__block:last-child {
    display: block;
  }
}

.gb-c-collage--masonry .gb-c-collage__block {
  width: 100%;
  padding: 75% 0 0 0;
  min-height: initial;
}

.gb-c-collage--masonry .gb-c-collage__link {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1.25rem;
}

@media (min-width: 103.135em) {
  .gb-c-collage--masonry .gb-c-collage__link {
    padding: 2.5rem;
  }
}

.gb-c-publication__heading {
  margin-bottom: 3.125rem;
}

.gb-c-publication svg {
  width: 2rem;
  height: 2.5rem;
  margin-right: 1.25rem;
  fill: #1948B4;
}

.gb-c-publication__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 1.875rem;
}

.gb-c-publication__item:last-child {
  margin-bottom: 0;
}

.gb-c-publication__link {
  color: #1948B4;
}

.gb-c-publication__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.gb-c-publication--invert .gb-c-publication__link {
  color: #84BAFF;
}

.gb-c-publication--invert svg {
  fill: #84BAFF;
}

.gb-c-department-mm {
  width: 100%;
  margin: 3.125rem 0;
  font-family: "mrseavesxlsernarot-reg", serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: normal;
}

@media (min-width: 30.01em) {
  .gb-c-department-mm {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-department-mm {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (min-width: 131.26em) {
  .gb-c-department-mm {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

@media (min-width: 48.01em) {
  .gb-c-department-mm {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 48.01em) {
  .gb-c-department-mm__block {
    width: 40%;
  }
}

.gb-c-department-mm__item {
  margin-bottom: 1.5625rem;
}

.gb-c-department-mm__header {
  margin-bottom: 1.875rem;
  font-family: "ITC Avant Garde Pro Md";
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

@media (min-width: 64.01em) {
  .gb-c-department-mm__header {
    font-size: 35px;
    font-size: 2.1875rem;
  }
}

@media (min-width: 103.135em) {
  .gb-c-department-mm__header {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gb-c-department-lockup {
  position: relative;
  color: #FFFFFF;
  background-color: #053371;
}

@media (min-width: 64.01em) {
  .gb-c-department-lockup {
    margin-right: -3.8961%;
    margin-left: -20px;
    margin-right: -20px;
  }
}

.gb-c-department-lockup:before {
 position: absolute;
  bottom: 0;
  z-index: -1;
  display: block;
  width: 4000%;
  height: 100%;
  content: "";
}

.gb-c-department-lockup__content {
  padding: 2.5rem;
}

.gb-c-department-lockup__row {
  margin-top: 1.25rem;
}

@media (min-width: 64.01em) {
  .gb-c-department-lockup__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 2.5rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-department-lockup__block {
    width: 50%;
  }
}

.gb-c-cta {
  margin: 0 auto;
  padding: 50px;
}

@media (min-width: 48.01em) {
  .gb-c-cta {
    padding: 4.6875rem 4.6875rem;
  }
}

@media (min-width: 64.01em) {
  .gb-c-cta {
    width: 50%;
    padding: 6.25rem 0;
  }
}

@media (min-width: 80.01em) {
  .gb-c-cta {
    width: 50%;
    padding: 6.25rem 0;
  }
}

.gb-c-cta__heading {
  margin-bottom: 0.9375rem;
}

.gb-c-cta__box {
  margin-bottom: 0;
}

.gb-c-cta__button {
  color: #84BAFF;
}

.gb-c-cta__button:after {
  border-color: #84BAFF;
}

.gb-c-cta__button:hover, .gb-c-cta__button:focus {
  color: #FFFFFF;
}

.gb-c-cta__button:hover:after, .gb-c-cta__button:focus:after {
  border-color: #FFFFFF;
}

.gb-c-careers {
  color: #FFFFFF;
}

@media (min-width: 103.135em) {
  .gb-c-careers {
    width: 77%;
  }
}

.gb-c-careers__heading {
  margin-bottom: 1.25rem;
}

@media (min-width: 64.01em) {
  .gb-c-careers__heading {
    margin-bottom: 2.1875rem;
  }
}

.gb-c-careers__content {
  width: 100%;
}

@media (min-width: 48.01em) {
  .gb-c-careers__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 48.01em) {
  .gb-c-careers__body {
    width: 50%;
  }
}

.gb-c-careers__figure {
  margin-top: 1.875rem;
}

@media (min-width: 48.01em) {
  .gb-c-careers__figure {
    margin-top: 0;
    padding-left: 3.8961%;
    width: 50%;
  }
}

.gb-c-careers__image {
  margin-bottom: 0.3125rem;
}

@media (min-width: 48.01em) {
  .gb-c-careers__image {
    margin-bottom: 1.25rem;
  }
}

.gb-c-careers-infograph a {
  color: #1948B4;
  text-decoration: underline;
}

.gb-c-careers-infograph a:hover, .gb-c-careers-infograph a:focus {
  color: #053371;
}
.gb-c-tabs {
  display: block;
}

.gb-c-tabs__panel[aria-hidden='true'] {
  display: none;
}

.gb-c-tabs__group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  position: relative;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.gb-c-tabs__group::after {
  content: '';
  border-bottom: 4px solid #E9E9E9;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
}

.gb-c-tabs__tab {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background: #F5F5F5;
  padding: 15px 10px;
  text-align: center;
  margin-right: 10px;
  color: #1948B4;
  cursor: pointer;
}

@media (min-width: 48.01em) {
  .gb-c-tabs__tab {
    padding: 15px 20px;
  }
}

@media (min-width: 103.135em) {
  .gb-c-tabs__tab {
    padding: 15px 50px;
  }
}

.gb-c-tabs__tab:last-child {
  margin-right: 0;
}

.gb-c-tabs__tab.is-current {
  background: #E9E9E9;
  color: #222222;
}

.gb-c-checkbox, .gb-c-longform .gb-c-checkbox,.gb-c-radiobutton, .gb-c-longform .gb-c-radiobutton {
   position: relative;
  display: block;
}
.gb-c-checkbox input,
.gb-c-checkbox label,
.gb-c-longform .gb-c-checkbox input,
.gb-c-longform .gb-c-checkbox label,
.gb-c-radiobutton input,
.gb-c-radiobutton label,
.gb-c-longform .gb-c-radiobutton input,
.gb-c-longform .gb-c-radiobutton label {
  display: inline;
}

.gb-c-checkbox input,
.gb-c-longform .gb-c-checkbox input,
.gb-c-radiobutton input,
.gb-c-longform .gb-c-radiobutton input {
  position: absolute;
  width: auto;
  height: auto;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.gb-c-checkbox label:before,
.gb-c-longform .gb-c-checkbox label:before,
.gb-c-radiobutton label:before,
.gb-c-longform .gb-c-radiobutton label:before {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  content: "";
  background: none;
  -webkit-box-shadow: inset 0 0 0 0 #FFFFFF;
  box-shadow: inset 0 0 0 0 #FFFFFF;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 100%;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.gb-c-checkbox input:checked + label:before,
.gb-c-longform .gb-c-checkbox input:checked + label:before,
.gb-c-radiobutton input:checked + label:before,
.gb-c-longform .gb-c-radiobutton input:checked + label:before {
  background: #FE6301;
  -webkit-box-shadow: inset 0 0 0 3px #FFFFFF;
  box-shadow: inset 0 0 0 3px #FFFFFF;
}

/**
 * Utilities
 */
.gb-u-bg-color-navy {
  background-color: #053371;
}

.gb-u-bg-color-navy--extend-left {
  position: relative;
}

.gb-u-bg-color-navy--extend-left:before {
  content: "";
  background-color: #053371;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-navy--extend-left:after {
    content: "";
    background-color: #053371;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-navy--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-navy--extend-left-large:before {
    content: "";
    background-color: #053371;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-navy--extend-left-large:after {
    content: "";
    background-color: #053371;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-navy--light {
  background-color: #0B459E;
}

.gb-u-bg-color-navy--light--extend-left {
  position: relative;
}

.gb-u-bg-color-navy--light--extend-left:before {
  content: "";
  background-color: #0B459E;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-navy--light--extend-left:after {
    content: "";
    background-color: #0B459E;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-navy--light--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-navy--light--extend-left-large:before {
    content: "";
    background-color: #0B459E;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-navy--light--extend-left-large:after {
    content: "";
    background-color: #0B459E;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-cornflower {
  background-color: #84BAFF;
}

.gb-u-bg-color-cornflower--extend-left {
  position: relative;
}

.gb-u-bg-color-cornflower--extend-left:before {
  content: "";
  background-color: #84BAFF;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-cornflower--extend-left:after {
    content: "";
    background-color: #84BAFF;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-cornflower--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-cornflower--extend-left-large:before {
    content: "";
    background-color: #84BAFF;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-cornflower--extend-left-large:after {
    content: "";
    background-color: #84BAFF;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-black {
  background-color: #222222;
}

.gb-u-bg-color-black--extend-left {
  position: relative;
}

.gb-u-bg-color-black--extend-left:before {
  content: "";
  background-color: #222222;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-black--extend-left:after {
    content: "";
    background-color: #222222;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-black--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-black--extend-left-large:before {
    content: "";
    background-color: #222222;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-black--extend-left-large:after {
    content: "";
    background-color: #222222;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-white {
  background-color: #FFFFFF;
}

.gb-u-bg-color-white--extend-left {
  position: relative;
}

.gb-u-bg-color-white--extend-left:before {
  content: "";
  background-color: #FFFFFF;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-white--extend-left:after {
    content: "";
    background-color: #FFFFFF;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-white--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-white--extend-left-large:before {
    content: "";
    background-color: #FFFFFF;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-white--extend-left-large:after {
    content: "";
    background-color: #FFFFFF;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-cloud {
  background-color: #E9E9E9;
}

.gb-u-bg-color-cloud--extend-left {
  position: relative;
}

.gb-u-bg-color-cloud--extend-left:before {
  content: "";
  background-color: #E9E9E9;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-cloud--extend-left:after {
    content: "";
    background-color: #E9E9E9;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-cloud--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-cloud--extend-left-large:before {
    content: "";
    background-color: #E9E9E9;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-cloud--extend-left-large:after {
    content: "";
    background-color: #E9E9E9;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-alabaster {
  background-color: #F5F5F5;
}

.gb-u-bg-color-alabaster--extend-left {
  position: relative;
}

.gb-u-bg-color-alabaster--extend-left:before {
  content: "";
  background-color: #F5F5F5;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}
.gb-u-bg-color-alabaster a {
    color: #1948B4;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-alabaster--extend-left:after {
    content: "";
    background-color: #F5F5F5;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-alabaster--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-alabaster--extend-left-large:before {
    content: "";
    background-color: #F5F5F5;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-alabaster--extend-left-large:after {
    content: "";
    background-color: #F5F5F5;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-silver {
  background-color: #C0C0C0;
}

.gb-u-bg-color-silver--extend-left {
  position: relative;
}

.gb-u-bg-color-silver--extend-left:before {
  content: "";
  background-color: #C0C0C0;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-silver--extend-left:after {
    content: "";
    background-color: #C0C0C0;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-silver--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-silver--extend-left-large:before {
    content: "";
    background-color: #C0C0C0;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-silver--extend-left-large:after {
    content: "";
    background-color: #C0C0C0;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-orange {
  background-color: #FE6301;
}

.gb-u-bg-color-orange--extend-left {
  position: relative;
}

.gb-u-bg-color-orange--extend-left:before {
  content: "";
  background-color: #FE6301;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-orange--extend-left:after {
    content: "";
    background-color: #FE6301;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-orange--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-orange--extend-left-large:before {
    content: "";
    background-color: #FE6301;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-orange--extend-left-large:after {
    content: "";
    background-color: #FE6301;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-orange-light {
  background-color: #F28923;
}

.gb-u-bg-color-orange-light--extend-left {
  position: relative;
}

.gb-u-bg-color-orange-light--extend-left:before {
  content: "";
  background-color: #F28923;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-orange-light--extend-left:after {
    content: "";
    background-color: #F28923;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-orange-light--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-orange-light--extend-left-large:before {
    content: "";
    background-color: #F28923;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-orange-light--extend-left-large:after {
    content: "";
    background-color: #F28923;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-blue {
  background-color: #1948B4;
}

.gb-u-bg-color-blue--extend-left {
  position: relative;
}

.gb-u-bg-color-blue--extend-left:before {
  content: "";
  background-color: #1948B4;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-blue--extend-left:after {
    content: "";
    background-color: #1948B4;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-blue--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-blue--extend-left-large:before {
    content: "";
    background-color: #1948B4;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-blue--extend-left-large:after {
    content: "";
    background-color: #1948B4;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-grey {
  background-color: #747474;
}

.gb-u-bg-color-grey--extend-left {
  position: relative;
}

.gb-u-bg-color-grey--extend-left:before {
  content: "";
  background-color: #747474;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-grey--extend-left:after {
    content: "";
    background-color: #747474;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-grey--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-grey--extend-left-large:before {
    content: "";
    background-color: #747474;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-grey--extend-left-large:after {
    content: "";
    background-color: #747474;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-grey--light {
  background-color: #E9E9E9;
}

.gb-u-bg-color-grey--light--extend-left {
  position: relative;
}

.gb-u-bg-color-grey--light--extend-left:before {
  content: "";
  background-color: #E9E9E9;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-grey--light--extend-left:after {
    content: "";
    background-color: #E9E9E9;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-grey--light--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-grey--light--extend-left-large:before {
    content: "";
    background-color: #E9E9E9;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-grey--light--extend-left-large:after {
    content: "";
    background-color: #E9E9E9;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-sapphire {
  background-color: #043B82;
}

.gb-u-bg-color-sapphire .gb-u-type-p--small a:hover { /* ajc - explicitly set text color */
  color: #FFFFFF;
}

.gb-u-bg-color-sapphire--extend-left {
  position: relative;
}

.gb-u-bg-color-sapphire--extend-left:before {
  content: "";
  background-color: #043B82;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}


@media (max-width: 63.99em) {
  .gb-u-bg-color-sapphire--extend-left:after {
    content: "";
    background-color: #043B82;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-sapphire--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-sapphire--extend-left-large:before {
    content: "";
    background-color: #043B82;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-sapphire--extend-left-large:after {
    content: "";
    background-color: #043B82;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-red {
  background-color: #FF0000;
}

.gb-u-bg-color-red--extend-left {
  position: relative;
}

.gb-u-bg-color-red--extend-left:before {
  content: "";
  background-color: #FF0000;
  display: block;
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 100%;
}

@media (max-width: 63.99em) {
  .gb-u-bg-color-red--extend-left:after {
    content: "";
    background-color: #FF0000;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-red--extend-left-large {
    position: relative;
  }
  .gb-u-bg-color-red--extend-left-large:before {
    content: "";
    background-color: #FF0000;
    display: block;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
  }
}

@media (min-width: 64.01em) and (max-width: 63.99em) {
  .gb-u-bg-color-red--extend-left-large:after {
    content: "";
    background-color: #FF0000;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

.gb-u-bg-color-navy--extend-bottom {
  position: relative;
}

@media (min-width: 64.01em) {
  .gb-u-bg-color-navy--extend-bottom:before {
    content: "";
    height: 60px;
    background-color: #053371;
    position: absolute;
    bottom: 0;
    width: 3000%;
    left: -1000%;
    display: block;
    z-index: -1;
  }
}

@media (min-width: 103.135em) {
  .gb-u-bg-color-navy--extend-bottom:before {
    height: 100px;
  }
}

.gb-u-bg-color-sapphire--extend-bottom {
  position: relative;
  overflow: initial !important;
}

.gb-u-bg-color-sapphire--extend-bottom:before {
  content: "";
  height: 100px;
  background-color: #043B82;
  position: absolute;
  bottom: 0;
  width: 3000%;
  left: -1000%;
  display: block;
  z-index: -1;
}

@media (min-width: 103.135em) {
  .gb-u-bg-color-sapphire--extend-bottom:before {
    height: 100px;
  }
}

.gb-u-bg-color-sapphire--extend-bottom--large:before {
  height: 10%;
}

.gb-u-text-color-navy {
  color: #053371;
}

.gb-u-text-color-navy--light {
  color: #0B459E;
}

.gb-u-text-color-cornflower {
  color: #84BAFF;
}

.gb-u-text-color-black {
  color: #222222;
}

.gb-u-text-color-white {
  color: #FFFFFF;
}

.gb-u-text-color-cloud {
  color: #E9E9E9;
}

.gb-u-text-color-alabaster {
  color: #F5F5F5;
}

.gb-u-text-color-silver {
  color: #C0C0C0;
}

.gb-u-text-color-orange {
  color: #CC4E00; /* ajc - fix WAVE contrast error (was #FE6301) */
}

.gb-u-text-color-orange-light {
  color: #F28923;
}

.gb-u-text-color-blue {
  color: #1948B4;
}

.gb-u-text-color-grey {
  color: #747474;
}

.gb-u-text-color-grey--light {
  color: #E9E9E9;
}

.gb-u-text-color-sapphire {
  color: #043B82;
}

.gb-u-text-color-red {
  color: #FF0000;
}

.gb-u-text-color-cornflower:hover {
  color: #84BAFF;
}

.gb-u-type-alpha {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 45px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-u-type-alpha {
    font-size: 58px;
    font-size: 3.625rem;
    line-height: 64px;
  }
}

@media (min-width: 80.01em) {
  .gb-u-type-alpha {
    font-size: 90px;
    font-size: 5.625rem;
    line-height: 90px;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-alpha {
    font-size: 94px;
    font-size: 5.875rem;
    line-height: 94px;
  }
}

.gb-u-type-beta {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 28px;
  font-size: 1.8rem;
  line-height: 36px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-u-type-beta {
    font-size: 44px;
    font-size: 2.75rem;
    line-height: 48px;
  }
}

@media (min-width: 64.01em) {
  .gb-u-type-beta {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 60px;
  }
}

.gb-u-type-gamma {
  font-family: "mrseavesxlsernarot-reg", serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 28px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-u-type-gamma {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 28px;
  }
}

@media (min-width: 64.01em) {
  .gb-u-type-gamma {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 64px;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-gamma {
    font-size: 64px;
    font-size: 4rem;
    line-height: 64px;
  }
}

.gb-u-type-delta {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 22px;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

@media (min-width: 64.01em) {
  .gb-u-type-delta {
    font-size: 35px;
    font-size: 2.1875rem;
    line-height: 1.3;
  }
}

@media (min-width: 103.135em) {
  .gb-u-type-delta {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.gb-u-type-epsilon {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-u-type-epsilon {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 23px;
  }
}

@media (min-width: 64.01em) {
  .gb-u-type-epsilon {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 37px;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-epsilon {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
  }
}

.gb-u-type-zeta {
  font-family: "ITC Avant Garde Pro Md";
  font-size: 18px;
  font-size: 1.1rem;
  line-height: 20px;
  letter-spacing: -0.02em;
}


@media (min-width: 64.01em) {
  .gb-u-type-zeta {
    font-size: 20px;
    font-size: 1.2rem;
    line-height:1.1;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-zeta {
    font-size: 22px;
    font-size: 1.4125rem;
    line-height: 27px;
  }
}

.gb-u-type-eta {
  font-size: 16px;
  font-size: 0.9125rem;
  line-height: 20px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

@media (min-width: 30.01em) {
  .gb-u-type-eta {
    font-size: 17px;
    font-size: 0.9375rem;
    line-height: 21px;
  }
}

@media (min-width: 64.01em) {
  .gb-u-type-eta {
    font-size: 18px;
    font-size: 1rem;
    line-height: 24px;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-eta {
    font-size: 21px;
    font-size: 1.175rem;
    line-height: 26px;
  }
}

.gb-u-type-p--large {
  font-family: "mrseavesxlsernarot-reg", serif;
  font-size: 24px;
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: normal;
}

@media (min-width: 30.01em) {
  .gb-u-type-p--large {
    font-size: 33px;
    font-size: 2.0625rem;
  }
}

@media (min-width: 64.01em) {
  .gb-u-type-p--large {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-p--large {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

.gb-u-type-p--xlarge {
  font-family: "mrseavesxlsernarot-reg", serif;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: normal;
}

@media (min-width: 64.01em) {
  .gb-u-type-p--xlarge {
    font-size: 50px;
    font-size: 3.125rem;
  }
}

@media (min-width: 103.135em) {
  .gb-u-type-p--xlarge {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

.gb-u-type-p {
  font-family: "mrseavesxlsernarot-reg", serif;
  font-weight: normal;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 25px;
  letter-spacing: -0.04em;
}

@media (min-width: 30.01em) {
  .gb-u-type-p {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 30px;
  }
}

@media (min-width: 64.01em) {
  .gb-u-type-p {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 38px;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-p {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 38px;
  }
}

.gb-u-type-p--caption {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  letter-spacing: 0.025em;
}

@media (min-width: 64.01em) {
  .gb-u-type-p--caption {
    font-size: 17px;
    font-size: 1rem;
    line-height: 22px;
  }
}

@media (min-width: 131.26em) {
  .gb-u-type-p--caption {
    font-size: 18px;
    font-size: 1.2rem;
    line-height: 23px;
  }
}

.gb-u-type-p--small, .gb-x-attachment-label { /* ajc - apply to attachment labels also */
  font-size: 16px;
  font-size: 1rem;
  line-height: 21px;
  letter-spacing: 0.015em;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
}


@media (min-width: 80.01em) {
  .gb-u-type-p--small {
    font-size: 17px;
    font-size: 1.0625rem;
    line-height: 24px;
  }
}

.gb-x-attachment-label, .gb-x-attachment-label { /* ajc - apply to attachment labels also */
	vertical-align: middle;
}


/*****************************
** Spacing
*****************************/
.gb-u-spacing-small > * + * {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-small > * + * {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing-small > * + * {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.gb-u-spacing-small-top {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-small-top {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-small-top-small {
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
}

.gb-u-spacing-small-bottom {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-small-bottom {
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
  }
}

.gb-u-spacing > * + * {
  margin-top: 7.5px;
  margin-top: 0.46875rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing > * + * {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing > * + * {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.gb-u-spacing-top {
  margin-top: 7.5px;
  margin-top: 0.46875rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-top {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-top-small {
    margin-top: 7.5px;
    margin-top: 0.46875rem;
  }
}

.gb-u-spacing-bottom {
  margin-bottom: 7.5px;
  margin-bottom: 0.46875rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-bottom {
    margin-bottom: 15px;
    margin-bottom: 0.9375rem;
  }
}

.gb-u-spacing-double > * + * {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-double > * + * {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing-double > * + * {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.gb-u-spacing-double-top {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-double-top {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-double-top-small {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.gb-u-spacing-double-bottom {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-double-bottom {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
  }
}

.gb-u-spacing-triple > * + * {
  margin-top: 22.5px;
  margin-top: 1.40625rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-triple > * + * {
    margin-top: 35px;
    margin-top: 2.2125rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing-triple > * + * {
    margin-top: 75px;
    margin-top: 4.625rem;
  }
}

.gb-u-spacing-triple-top {
  margin-top: 22.5px;
  margin-top: 1.40625rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-triple-top {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-triple-top-small {
    margin-top: 22.5px;
    margin-top: 1.40625rem;
  }
}

.gb-u-spacing-triple-bottom {
  margin-bottom: 22.5px;
  margin-bottom: 1.40625rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-triple-bottom {
    margin-bottom: 45px;
    margin-bottom: 2.8125rem;
  }
}

.gb-u-spacing-quad > * + * {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-quad > * + * {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing-quad > * + * {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
}

.gb-u-spacing-quad-top {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-quad-top {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-quad-top-small {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.gb-u-spacing-quad-bottom {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-quad-bottom {
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }
}

.gb-u-spacing-quintuple > * + * {
  margin-top: 37.5px;
  margin-top: 2.34375rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-quintuple > * + * {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing-quintuple > * + * {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
}

.gb-u-spacing-quintuple-top {
  margin-top: 37.5px;
  margin-top: 2.34375rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-quintuple-top {
    margin-top: 75px;
    margin-top: 4.6875rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-quintuple-top-small {
    margin-top: 37.5px;
    margin-top: 2.34375rem;
  }
}

.gb-u-spacing-quintuple-bottom {
  margin-bottom: 37.5px;
  margin-bottom: 2.34375rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-quintuple-bottom {
    margin-bottom: 75px;
    margin-bottom: 4.6875rem;
  }
}

.gb-u-spacing-sextuple > * + * {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-sextuple > * + * {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing-sextuple > * + * {
    margin-top: 180px;
    margin-top: 11.25rem;
  }
}

.gb-u-spacing-sextuple-top {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-sextuple-top {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-sextuple-top-small {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.gb-u-spacing-sextuple-bottom {
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-sextuple-bottom {
    margin-bottom: 90px;
    margin-bottom: 5.625rem;
  }
}

.gb-u-spacing-hexatruple > * + * {
  margin-top: 52.5px;
  margin-top: 3.28125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-hexatruple > * + * {
    margin-top: 105px;
    margin-top: 6.5625rem;
  }
}

@media (min-width: 131.26em) {
  .gb-u-spacing-hexatruple > * + * {
    margin-top: 210px;
    margin-top: 13.125rem;
  }
}

.gb-u-spacing-hexatruple-top {
  margin-top: 52.5px;
  margin-top: 3.28125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-hexatruple-top {
    margin-top: 105px;
    margin-top: 6.5625rem;
  }
}

@media (max-width: 63.99em) {
  .gb-u-spacing-hexatruple-top-small {
    margin-top: 52.5px;
    margin-top: 3.28125rem;
  }
}

.gb-u-spacing-hexatruple-bottom {
  margin-bottom: 52.5px;
  margin-bottom: 3.28125rem;
}

@media (min-width: 64.01em) {
  .gb-u-spacing-hexatruple-bottom {
    margin-bottom: 105px;
    margin-bottom: 6.5625rem;
  }
}

.gb-u-padding-hexatruple-top-bottom {
  padding-top: calc(105px / 3);
  padding-bottom: calc(105px / 3);
}

@media (min-width: 48.01em) {
  .gb-u-padding-hexatruple-top-bottom {
    padding-top: calc(105px / 2);
    padding-bottom: calc(105px / 2);
  }
}

@media (min-width: 103.135em) {
  .gb-u-padding-hexatruple-top-bottom {
    padding-top: 105px;
    padding-bottom: 105px;
  }
}

.gb-u-padding-quintuple-top-bottom {
  padding-top: 37.5px;
  padding-bottom: 37.5px;
}

@media (min-width: 48.01em) {
  .gb-u-padding-quintuple-top-bottom {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

@media (min-width: 48.01em) {
  .gb-u-padding-right {
    padding-right: 3.8961%;
  }
}

@media (min-width: 64.01em) {
  .gb-u-padding-right--at-largeTablet {
    padding-right: 3.8961%;
  }
}

.gb-u-padding-top {
  padding-top: 30px;
}

@media (min-width: 48.01em) {
  .gb-u-padding-top {
    padding-top: 30px;
  }
}

@media (min-width: 48.01em) {
  .gb-u-padding-column-right {
    padding-right: 12.5%;
  }
}

.gb-u-space {
  margin: 1.8rem;
}

.gb-u-space--top {
  margin-top: 1.8rem;
}

.gb-u-space--top-double {
  margin-top: 3.6rem;
}

.gb-u-space--top-quad {
  margin-top: 7.2rem;
}

.gb-u-space--bottom {
  margin-bottom: 0.9rem;
}

@media (min-width: 48.01em) {
  .gb-u-space--bottom {
    margin-bottom: 1.8rem;
  }
}

.gb-u-space--left {
  margin-left: 0.9rem;
}

@media (min-width: 48.01em) {
  .gb-u-space--left {
    margin-left: 1.8rem;
  }
}

.gb-u-space--right {
  margin-right: 0.9rem;
}

@media (min-width: 48.01em) {
  .gb-u-space--right {
    margin-right: 1.8rem;
  }
}

.gb-u-space--quarter {
  margin: 0.45rem;
}

.gb-u-space--quarter--top {
  margin-top: 0.45rem;
}

.gb-u-space--quarter--bottom {
  margin-bottom: 0.45rem;
}

.gb-u-space--quarter--left {
  margin-left: 0.45rem;
}

.gb-u-space--quarter--right {
  margin-right: 0.45rem;
}

.gb-u-space--half {
  margin: 0.9rem;
}

.gb-u-space--half--top {
  margin-top: 0.9rem;
}

.gb-u-space--half--bottom {
  margin-bottom: 0.9rem;
}

.gb-u-space--half--left {
  margin-left: 0.9rem;
}

.gb-u-space--half--right {
  margin-right: 0.9rem;
}

.gb-u-space--and-half {
  margin: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--and-half {
    margin: 2.7rem;
  }
}

.gb-u-space--and-half--top {
  margin-top: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--and-half--top {
    margin-top: 2.7rem;
  }
}

.gb-u-space--and-half--bottom {
  margin-bottom: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--and-half--bottom {
    margin-bottom: 2.7rem;
  }
}

.gb-u-space--double {
  margin: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--double {
    margin: 3.6rem;
  }
}

.gb-u-space--double--top {
  margin-top: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--double--top {
    margin-top: 3.6rem;
  }
}

.gb-u-space--double--bottom {
  margin-bottom: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--double--bottom {
    margin-bottom: 3.6rem;
  }
}

.gb-u-space--triple {
  margin: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--triple {
    margin: 5.4rem;
  }
}

.gb-u-space--triple--top {
  margin-top: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--triple--top {
    margin-top: 5.4rem;
  }
}

.gb-u-space--triple--bottom {
  margin-bottom: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--triple--bottom {
    margin-bottom: 5.4rem;
  }
}

.gb-u-space--quad {
  margin: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--quad {
    margin: 7.2rem;
  }
}

.gb-u-space--quad--top {
  margin-top: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--quad--top {
    margin-top: 7.2rem;
  }
}

.gb-u-space--quad--bottom {
  margin-bottom: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-space--quad--bottom {
    margin-bottom: 7.2rem;
  }
}

.gb-u-space--zero {
  margin: 0;
}

.gb-u-space--zero--top {
  margin-top: 0;
}

.gb-u-space--zero--bottom {
  margin-bottom: 0;
}

.gb-u-min-width-5 {
  max-width: 5em;
}

.gb-u-underline {
  text-decoration: underline;
}

.gb-u-border-bottom--silver {
  border-bottom: 4px solid #C0C0C0;
}

.gb-u-quote:before {
  content: "“";
  position: absolute;
  margin-left: -0.4em;
}

.gb-u-quote:after {
  content: '”';
}

.gb-u-visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background-color: #053371; /* ajc - fix WAVE contrast error (color was unspecified) */
}

.gb-u-line-height {
  line-height: 1;
}

.gb-u-weight-bold {
  font-weight: bold;
}

@media (min-width: 64.01em) {
  .gb-u-hide-at-largeTablet {
    display: none;
  }
}

.gb-u-show-at-largeTablet {
  display: none;
}

@media (min-width: 64.01em) {
  .gb-u-show-at-largeTablet {
    display: block;
  }
}

.gb-u-show-at-desktop {
  display: none;
}

@media (min-width: 64.01em) {
  .gb-u-show-at-desktop {
    display: block;
  }
}

.gb-u-shadow--right {
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px -10px 10px -10px #000000 inset;
  box-shadow: 0px -10px 10px -10px #000000 inset;
  height: 100%;
  margin-top: -35px;
  margin-right: 15px;
}

.gb-u-cf {
  *zoom: 1;
}

.gb-u-cf:after {
  clear: both;
}

.gb-u-cf:before, .gb-u-cf:after {
  content: " ";
  display: table;
}

.gb-u-image--overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.gb-u-image--overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.gb-u-image-ratio--wide, .gb-u-image-ratio--narrow, .gb-u-image-ratio--photo  {
  position: relative;
  overflow: hidden;
  height: 0;
}

.gb-u-image-ratio--wide img, .gb-u-image-ratio--narrow img, .gb-u-image-ratio--photo img {
  width: 100%;
}


.gb-u-arrow--right {
  position: relative;
  color: #FFFFFF;
}

.gb-u-arrow--right:after {
  content: "";
  position: absolute;
  top: 40%;
  right: -1.5625rem;
  border: solid #FE6301;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 6px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0, 0.99);
}

@media (min-width: 64.01em) {
  .gb-u-arrow--right:after {
    top: 45%;
    right: -2.5rem;
    border: solid #FE6301;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 10px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}

.gb-u-arrow--right:hover {
  color: #84BAFF;
}

.gb-u-arrow--right:hover:after {
  -webkit-animation: arrowMovesRight 0.8s cubic-bezier(0.55, 0.085, 0, 0.99) both;
  animation: arrowMovesRight 0.8s cubic-bezier(0.55, 0.085, 0, 0.99) both;
}

@media (min-width: 64.01em) {
  .gb-u-bg-gray--bleed {
    position: relative;
  }
}

@media (min-width: 64.01em) {
  .gb-u-bg-gray--bleed:before {
    content: "";
    height: 330px;
    background-color: #fafafa;
    position: absolute;
    top: 0;
    width: 100%;
    display: block;
    z-index: -1;
  }
}

/*****************************
** Padding
*****************************/
.gb-u-padding {
  padding: 1.8rem;
}

.gb-u-padding--top {
  padding-top: 1.8rem;
}

.gb-u-padding--bottom {
  padding-bottom: 1.8rem;
}

.gb-u-padding--left {
  padding-left: 1.8rem;
}

.gb-u-padding--right {
  padding-right: 1.8rem;
}

.gb-u-padding--quarter {
  padding: 0.45rem;
}

.gb-u-padding--quarter--top {
  padding-top: 0.45rem;
}

.gb-u-padding--quarter--bottom {
  padding-bottom: 0.45rem;
}

.gb-u-padding--half {
  padding: 0.9rem;
}

.gb-u-padding--half--top {
  padding-top: 0.9rem;
}

.gb-u-padding--half--bottom {
  padding-bottom: 0.9rem;
}

.gb-u-padding--and-half {
  padding: 2.7rem;
}

.gb-u-padding--and-half--top {
  padding-top: 2.7rem;
}

.gb-u-padding--and-half--bottom {
  padding-bottom: 2.7rem;
}

.gb-u-padding--double {
  padding: 3.6rem;
}

.gb-u-padding--double--right {
  padding-right: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--double--right {
    padding-right: 3.6rem;
  }
}

.gb-u-padding--double--left {
  padding-left: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--double--left {
    padding-left: 3.6rem;
  }
}

.gb-u-padding--double--top {
  padding-top: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--double--top {
    padding-top: 3.6rem;
  }
}

.gb-u-padding--double--bottom {
  padding-bottom: 1.8rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--double--bottom {
    padding-bottom: 3.6rem;
  }
}

.gb-u-padding--triple {
  padding: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--triple {
    padding-bottom: 5.4rem;
  }
}

.gb-u-padding--triple--top {
  padding-top: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--triple--top {
    padding-top: 5.4rem;
  }
}

.gb-u-padding--triple--bottom {
  padding-bottom: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--triple--bottom {
    padding-bottom: 5.4rem;
  }
}

.gb-u-padding--quad {
  padding: 3.6rem;
}

@media (min-width: 64.01em) {
  .gb-u-padding--quad {
    padding: 7.2rem;
  }
}
.gb-u-padding--quad--top {
  padding-top: 3.6rem;
}
@media (min-width: 64.01em) {
  .gb-u-padding--quad--top {
    padding-top: 7.2rem;
  }
}
.gb-u-padding--quad--bottom {
  padding-bottom: 3.6rem;
}
@media (min-width: 64.01em) {.gb-u-padding--quad--bottom {padding-bottom: 7.2rem;}}
.gb-u-padding--zero {padding: 0;}
.gb-u-padding--zero--top {padding-top: 0;}
.gb-u-padding--zero--bottom {padding-bottom: 0;}
#gsc-i-id1{color:#000;padding:5px;}	
#gsc-i-id2{color:#000;padding:5px;}
.gsc-search-box td{padding-left: 0;line-height:22px;}
.gsc-input-box{border-radius: 2px;}

button.gsc-search-button
{padding:10px !important; /* background-color: #002f6c !important; */ border-radius: 3px !important;} /* ajc - remove dark background on button */
#___gcse_2 .gsc-control-cse * {font-family:"mrseavesxlsernarot-reg", serif; font-size:20px; font-size:1.275rem; line-height:30px;} /* ajc - improve typography */
#___gcse_2 .gsc-above-wrapper-area {border:0 none;} /* ajc - remove border */
#___gcse_2 .gsc-refinementBlock * {font-family:"ITC Avant Garde Pro Md", sans;} /* ajc - add correct body font and boost size */

.gb-u-image-ratio {height: 0;overflow: hidden;}
.gb-u-image-ratio img {position: absolute;top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);}
.gb-u-image-ratio--wide {padding-bottom: 45.5%;}
.gb-u-image-ratio--photo {padding-bottom: 66.7%;}
.gb-u-image-ratio--story-carousel {padding-bottom: 56.2775%;}
#mainContent {
    overflow-x: hidden;
}
@media print { /* ajc - adds print stylesheet */
    header, footer, #notification-banner, #toc, .page-toc {display:none;}
    div, section {display:block;}
    .gb {font-size:18px;}
    .gb-c-hero, .gb-c-hero__content {margin:0; padding:0; min-height:0; max-height:none; height:auto;}
    .gb-c-hero__title {color:#000000; font-size:32px; padding:0;}
    .gb-c-hero__breadcrumbs, .gb-c-navigation-section {display:none !important;}
    .gb-l-grid, .gb-l-split--general, .gb-l-split--general .column {display:block; margin:0; padding:0;}
    .gb-u-spacing-quad-top {margin:0; padding:0;}
    .gb-c-longform h2 {font-size:24px;}
    .gb-c-longform h3 {font-size:20px;}
    .gb-c-longform p, .gb-c-longform ul, .gb-c-longform ol, .gb-c-longform ul li *, .gb-c-longform ol li * {font-size:16px; margin:0 0 12px 0;}
    .gb-u-type-p--large {font-size:18px;}
    #mainContent .gb-l-grid .column p {margin:0 0 12px;}
}
/* ajc - Feedburner styles (from ES Student Research page) */
div.feedburnerFeedBlock ul li div {display:inline;}
div.feedburnerFeedBlock ul {margin:1em 0px 0.5em .5em; list-style:none;}
div.feedburnerFeedBlock span.headline {display:block; text-indent:0;}
div.feedburnerFeedBlock ul li {margin-bottom:1em; padding-left:0 !important; text-indent:0 !important;}
div.feedburnerFeedBlock img {display:none;}