body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-style: normal; }

h1,
h2,
h3,
h4,
h5,
h6, thead {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-size: 100%;
  line-height: 1.75em;
  font-family: "Poppins", sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  box-sizing: border-box; }

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

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE <10.
 * Add the correct display in Edge, IE, and Firefox for `details` or `summary`.
 * Add the correct display in IE for `main`.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * Add the correct display in IE <10.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/**
 * Add the correct display and remove excess height in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE <11, Safari <8, and Firefox <22.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox <40.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

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

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

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

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 64px;
  font-size: 4rem;
  line-height: 84px;
  line-height: 5.25rem;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin: 28px 0;
  margin: 1.75rem 0; }

h2 {
  font-size: 48px;
  font-size: 3rem;
  line-height: 56px;
  line-height: 3.5rem;
  margin: 28px 0;
  margin: 1.75rem 0; }

h3 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 56px;
  line-height: 3.5rem;
  margin: 28px 0;
  margin: 1.75rem 0; }

h4 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 1.75rem;
  margin: 28px 0;
  margin: 1.75rem 0; }

h5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.75rem;
  margin: 28px 0;
  margin: 1.75rem 0; }

h6 {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 28px;
  line-height: 1.75rem;
  margin: 28px 0;
  margin: 1.75rem 0; }

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

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE <11.
 */
img {
  border-style: none;
  display: block;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic; }

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

/* Grouping content
   ========================================================================== */
/**
   * Set 1 unit of vertical rhythm on the top and bottom margin.
   */
blockquote {
  margin: 28px 40px;
  margin: 1.75rem 40px; }

/**
   * Address margins set differently in IE 6/7.
   */
dl,
menu,
ol,
ul {
  margin: 0; }

/**
     * Turn off margins on nested lists.
     */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0; }

dd {
  margin: 0 0 0 40px; }

/**
   * Address paddings set differently in IE 6/7.
   */
menu,
ol,
ul {
  padding: 0; }

/**
   * Correct list images handled incorrectly in IE 7.
   */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 28px 40px;
  margin: 1.75rem 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
   * Set 1 unit of vertical rhythm on the top and bottom margin.
   */
p,
pre {
  margin: 28px 0;
  margin: 1.75rem 0; }
  p:first-child,
  pre:first-child {
    margin-top: 0; }
  p:last-child,
  pre:last-child {
    margin-bottom: 0; }

/* Forms
   ========================================================================== */
/**
 * Known issues:
 * - By default, Chrome on OS X and Safari on OS X allow very limited styling of
 *   select, unless a border property is set. The default font weight on
 *   optgroup elements cannot safely be changed in Chrome on OSX and Safari on
 *   OS X.
 * - It is recommended that you do not style checkbox and radio inputs as
 *   Firefox's implementation does not respect box-sizing, padding, or width.
 * - Certain font size values applied to number inputs cause the cursor style of
 *   the decrement button to change from default to text.
 * - The search input is not fully stylable by default. In Chrome and Safari on
 *   OSX/iOS you can't control font, padding, border, or background. In Chrome
 *   and Safari on Windows you can't control border properly. It will apply
 *   border-width but will only show a border color (which cannot be controlled)
 *   for the outer 1px of that border. Applying -webkit-appearance: textfield
 *   addresses these issues without removing the benefits of search inputs (e.g.
 *   showing past searches). Safari (but not Chrome) will clip the cancel button
 *   on when it has padding (and textfield appearance).
 */
/**
   * Correct margin displayed oddly in IE 6/7.
   */
form {
  margin: 0; }

/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 * 3. Address `font-family` inconsistency between `textarea` and other form in IE 7
 * 4. Improve appearance and consistency with IE 6/7.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  *font-family: "Poppins", sans-serif;
  /* 3 */
  *vertical-align: middle;
  /* 4 */ }

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible; }

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

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */ }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0; }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText; }

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
  line-height: normal; }

/**
 * 1. Add the correct box sizing in IE <11.
 * 2. Remove the padding in IE <11.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
   */ }
  [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

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

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

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

/**
 * Restore the font weight unset by a previous rule.
 */
optgroup {
  font-weight: bold; }

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

@-webkit-keyframes dropdown-open {
  0% {
    display: block;
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes dropdown-open {
  0% {
    display: block;
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes accordion-open {
  1% {
    max-height: 0; }
  100% {
    max-height: 1000px; } }

@keyframes accordion-open {
  1% {
    max-height: 0; }
  100% {
    max-height: 1000px; } }

@font-face {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/icomoon/fonts/icomoon.woff") format("woff"), url("../fonts/icomoon/fonts/icomoon.ttf") format("truetype"), url("../fonts/icomoon/fonts/icomoon.svg#icomoon") format("svg"); }

html {
  -webkit-tap-highlight-color: transparent; }

html,
body {
  height: 100%; }

body.no-scroll {
  overflow: hidden; }

body.lightbox-no-scroll {
  overflow: hidden; }

body.modal-open {
  overflow: hidden; }

.wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%; }

.main-container {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  padding-top: 50px;
  overflow-x: hidden; }
  @media screen and (min-width: 560px) {
    .main-container {
      overflow-x: hidden; } }
  @media screen and (min-width: 992px) {
    .main-container {
      padding-top: 50px; } }

*:target::before {
  content: '';
  display: block;
  height: 201px;
  margin: -201px 0 0; }

.container-full-width {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto; }

.container-main {
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%; }
  @media screen and (min-width: 560px) {
    .container-main {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 768px) {
    .container-main {
      padding-left: 20px;
      padding-right: 20px;
      width: 720px; } }
  @media screen and (min-width: 992px) {
    .container-main {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 1200px) {
    .container-main {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }

.dev-container {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%; }
  @media screen and (min-width: 560px) {
    .dev-container {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 768px) {
    .dev-container {
      padding-left: 20px;
      padding-right: 20px;
      width: 720px; } }
  @media screen and (min-width: 992px) {
    .dev-container {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 1200px) {
    .dev-container {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }
  .dev-container-full-width {
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto; }

footer {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto; }

.visually-hidden {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.clearfix::after {
  clear: both;
  content: "";
  display: table; }

ul.form-progress-nav {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style: none; }
  ul.form-progress-nav li {
    position: relative;
    border-left: 4px solid #d9d9d9;
    padding-left: 4px;
    margin-bottom: 4px; }
    ul.form-progress-nav li > a, ul.form-progress-nav li > div {
      display: block;
      padding: 12px 30px 12px 12px;
      background: #fff;
      font-size: 16px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: left;
      color: #6f6f6f; }
    ul.form-progress-nav li > i {
      display: none;
      position: absolute;
      right: 0;
      top: 12px;
      font-size: 24px;
      width: 24px;
      height: 24px;
      overflow: hidden; }
  ul.form-progress-nav li.completed {
    border-left: 4px solid #242637; }
    ul.form-progress-nav li.completed > a:hover {
      color: #ec223a; }
    ul.form-progress-nav li.completed > i {
      display: block; }
  ul.form-progress-nav li.active {
    border-left: 4px solid #242637; }
    ul.form-progress-nav li.active > a, ul.form-progress-nav li.active > div {
      background: #f5f5f5;
      font-size: 16px;
      font-weight: bold;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: left;
      color: #242637; }

a.link,
a.link:link,
a.link:visited {
  color: #cc0000;
  outline: 0; }

a.link:hover {
  color: #ec223a;
  text-decoration: underline; }

.separator {
  position: relative;
  text-align: right; }
  .separator h4 {
    z-index: 2;
    position: relative;
    display: inline-block;
    background-color: #fff;
    padding: 0 15px;
    text-transform: uppercase; }
  .separator:before {
    content: '';
    position: absolute;
    display: block;
    top: 43px;
    z-index: 1;
    width: 100%;
    height: 4px;
    background-color: #c00; }

.video-embed-field-responsive-video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0; }

/* Colorbox themes */
.colorbox-njit .cboxClose {
  display: none; }

.colorbox-njit #cboxClose {
  display: block; }

.colorbox-njit .cboxClose,
.colorbox-njit #cboxClose {
  z-index: 10000;
  top: -45px;
  right: -5px;
  background: none;
  width: 36px;
  height: 36px;
  line-height: 1;
  outline: 0;
  text-indent: 100%;
  overflow: hidden;
  cursor: pointer; }
  .colorbox-njit .cboxClose:before,
  .colorbox-njit #cboxClose:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "\00d7";
    display: block;
    line-height: 36px;
    margin: auto;
    text-align: center;
    text-indent: 0;
    font-size: 62px;
    font-weight: normal;
    color: #fff; }
  .colorbox-njit .cboxClose:hover:before,
  .colorbox-njit #cboxClose:hover:before {
    color: #ec223a; }

.colorbox-njit#cboxOverlay {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1 !important;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: default !important; }

.colorbox-njit#colorbox {
  margin-bottom: 80px;
  position: absolute;
  top: 80px !important;
  left: 0 !important;
  bottom: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto; }
  .colorbox-njit#colorbox #cboxWrapper {
    height: auto !important; }
    .colorbox-njit#colorbox #cboxWrapper #cboxMiddleLeft,
    .colorbox-njit#colorbox #cboxWrapper #cboxMiddleRight {
      float: none !important;
      display: none !important;
      height: auto !important; }
    .colorbox-njit#colorbox #cboxWrapper #cboxContent {
      float: none !important;
      height: auto !important;
      margin-top: 50px; }
      .colorbox-njit#colorbox #cboxWrapper #cboxContent #cboxLoadedContent {
        background-color: #fff;
        padding: 0;
        overflow: hidden !important; }

@media screen and (max-width: 1200px) {
  .colorbox-njit#cboxOverlay, .colorbox-njit#colorbox,
  .colorbox-njit #cboxWrapper,
  .colorbox-njit #cboxContent,
  .colorbox-njit #cboxLoadedContent {
    width: 100% !important; } }

@media screen and (max-width: 560px) {
  .colorbox-njit.colorbox-opened .cboxClose {
    display: block !important; }
  .colorbox-njit #cboxClose {
    display: none !important; }
  .colorbox-njit .cboxClose,
  .colorbox-njit #cboxClose {
    position: fixed;
    top: 16px;
    right: 16px;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 40px; }
    .colorbox-njit .cboxClose:before,
    .colorbox-njit #cboxClose:before {
      color: #6f6f6f;
      top: 1px;
      left: 0px;
      font-size: 45px;
      line-height: 40px;
      width: 40px;
      height: 40px;
      overflow: hidden;
      padding: 0;
      margin: 0;
      display: block; }
  .colorbox-njit#cboxOverlay, .colorbox-njit#colorbox,
  .colorbox-njit #cboxWrapper,
  .colorbox-njit #cboxContent,
  .colorbox-njit #cboxLoadedContent {
    width: 100% !important; }
  .colorbox-njit#colorbox {
    top: 0 !important;
    margin-bottom: 0;
    min-height: 100%;
    background: #fff; }
    .colorbox-njit#colorbox #cboxWrapper #cboxContent {
      margin-top: 0; } }

/* Lightbox inside content area */
.lb .lb-header {
  box-shadow: inset 0 -1px 0 0 rgba(184, 184, 184, 0.5); }
  .lb .lb-header h3.title {
    font-size: 20px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: -0.4px;
    text-align: left;
    color: #242637;
    padding: 16px 40px;
    margin: 0; }
    @media screen and (max-width: 560px) {
      .lb .lb-header h3.title {
        font-size: 18px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.11;
        letter-spacing: -0.4px;
        text-align: left;
        color: #242637;
        padding: 18px 16px; } }

.lb .lb-body {
  padding: 40px; }
  @media screen and (max-width: 560px) {
    .lb .lb-body {
      padding: 16px; } }

body {
  color: #232636;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h1 {
  margin-bottom: .25em;
  margin-top: .75em; }

h2 {
  margin-bottom: .5em;
  margin-top: 1em; }

h3 {
  margin-bottom: .5em;
  margin-top: 1em; }

h4 {
  margin-bottom: .6667em;
  margin-top: 1.3334em; }

h5 {
  margin-bottom: .5em;
  margin-top: 1em; }

h6 {
  margin-bottom: .6667em;
  margin-top: 1.3334em; }

a {
  text-decoration: none; }

p {
  color: #6f6f6f;
  margin-bottom: 1em;
  margin-top: 0; }
  p a {
    font-size: 16px;
    color: #c00; }
    p a:hover {
      color: #ec223a;
      text-decoration: underline; }

h5.paragraph-title {
  margin: 0 0 16px 0;
  font-size: 18px; }

/*# sourceMappingURL=maps/globals.css.map */

@charset "UTF-8";
div.mobile-nav .nav-wrapper li.expanded > a, div.mobile-nav .nav-wrapper li.parent > a, div.mobile-nav nav.student-navigation-mobile a, .mega-nav nav.navigation > ul > li a:before, .mega-nav nav.student-navigation > ul > li a:before, .mega-nav nav.navigation > ul > li.opened > a, .mega-nav nav.student-navigation > ul > li.opened > a, .mega-nav nav.student-navigation > ul > li > a, .mega-nav-content .inner .links-block a {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.header-container .form-item, .header-container .form-actions {
  margin-top: 0;
  margin-bottom: 0; }

.header-container header.main-header {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 100%;
  background: #fff; }
  .header-container header.main-header.mega-nav-opened {
    z-index: 12; }
  .header-container header.main-header .top-header {
    background-image: linear-gradient(to left, #d11717, #e00e1f 35%, #dd152d 51%, #750d42);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%; }
    @media screen and (min-width: 560px) {
      .header-container header.main-header .top-header {
        padding-left: 16px;
        padding-right: 16px; } }
    @media screen and (min-width: 768px) {
      .header-container header.main-header .top-header {
        padding-left: 20px;
        padding-right: 20px;
        width: 720px; } }
    @media screen and (min-width: 992px) {
      .header-container header.main-header .top-header {
        padding-left: 20px;
        padding-right: 20px;
        width: 960px; } }
    @media screen and (min-width: 1200px) {
      .header-container header.main-header .top-header {
        padding-left: 20px;
        padding-right: 20px;
        width: 1140px; } }
    @media screen and (max-width: 991px) {
      .header-container header.main-header .top-header {
        width: 100%; } }
    @media screen and (min-width: 992px) {
      .header-container header.main-header .top-header {
        background: #fff;
        -ms-flex-pack: end;
            justify-content: flex-end;
        -ms-flex-align: center;
            align-items: center;
        padding-top: 22px;
        padding-bottom: 18px; } }
  .header-container header.main-header .logo {
    display: block;
    padding: 8px 0; }
    @media screen and (min-width: 992px) {
      .header-container header.main-header .logo {
        position: relative;
        float: none;
        margin-left: 0;
        padding: 0;
        margin-right: auto; } }
    .header-container header.main-header .logo a {
      overflow: hidden;
      display: block;
      margin: 0 auto;
      color: #fff;
      -webkit-animation-delay: 0;
      -webkit-animation-duration: 0.5s;
      -webkit-animation-name: animation-slide-in-down;
      -webkit-animation-fill-mode: fowards;
      -webkit-animation-direction: ease;
      -moz-animation-delay: 0;
      -moz-animation-duration: 0.5s;
      -moz-animation-name: animation-slide-in-down;
      -moz-animation-fill-mode: fowards;
      -moz-animation-direction: ease;
      animation-delay: 0;
      animation-duration: 0.5s;
      animation-name: animation-slide-in-down;
      animation-fill-mode: fowards;
      animation-direction: ease; }
      .header-container header.main-header .logo a:before {
        font-family: 'icomoon';
        content: "\e900";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 32px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .header-container header.main-header .logo a:before {
        width: 73px;
        height: 32px;
        display: block;
        margin-left: auto;
        margin-right: auto; }
      @media screen and (min-width: 992px) {
        .header-container header.main-header .logo a {
          position: absolute;
          top: -22px;
          color: #c00; }
          .header-container header.main-header .logo a:before {
            font-family: 'icomoon';
            content: "\e901";
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            font-size: 51px;
            /* Better Font Rendering =========== */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; }
          .header-container header.main-header .logo a:before {
            width: 193px;
            height: 52px;
            display: block; } }
    .header-container header.main-header .logo img {
      display: none; }
    .header-container header.main-header .logo h2 {
      font-size: 12px;
      font-weight: bold;
      line-height: 1.17;
      text-align: center;
      color: #fff;
      margin: 4px 0; }
      .header-container header.main-header .logo h2 a {
        display: table;
        height: 100%;
        width: 100%;
        position: initial;
        top: initial;
        color: #333; }
        .header-container header.main-header .logo h2 a:before {
          display: none; }
      @media screen and (min-width: 992px) {
        .header-container header.main-header .logo h2 {
          width: 460px;
          height: 55px;
          position: absolute;
          left: 135px;
          top: -33px;
          padding-left: 20px;
          border-left: 1px solid #e0e0e0;
          display: table;
          font-size: 18px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 1;
          letter-spacing: normal;
          text-align: left;
          color: #323232; }
          .header-container header.main-header .logo h2 span {
            display: table-cell;
            vertical-align: middle;
            min-width: 440px; } }
  @media screen and (min-width: 992px) and (max-width: 1200px) {
    .header-container header.main-header .logo h2 {
      width: 340px; }
      .header-container header.main-header .logo h2 span {
        min-width: 0; } }
  .header-container header.main-header .search-field {
    display: none; }
    @media screen and (min-width: 992px) {
      .header-container header.main-header .search-field {
        -ms-flex: 0 1 29.4%;
            flex: 0 1 29.4%;
        display: block; } }
    @media screen and (min-width: 992px) {
      .header-container header.main-header .search-field {
        min-width: 348px; } }
    .header-container header.main-header .search-field .form-item {
      position: relative; }
      .header-container header.main-header .search-field .form-item:before {
        font-family: 'icomoon';
        content: "\f001";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 24px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .header-container header.main-header .search-field .form-item:before {
        position: absolute;
        color: #c00;
        top: 10px;
        left: 13px; }
      .header-container header.main-header .search-field .form-item button {
        position: absolute;
        color: #c00;
        top: 10px;
        left: 8px;
        text-indent: -5000px;
        background: transparent;
        border: 0;
        width: 30px; }
      .header-container header.main-header .search-field .form-item:hover:before {
        color: #ec223a; }
    .header-container header.main-header .search-field input {
      width: 100%;
      font-size: 16px;
      color: #c00;
      padding: 10px 16px 11px 48px;
      border: 1px solid #f6f7f9;
      background-color: #f6f7f9; }
      .header-container header.main-header .search-field input::-webkit-input-placeholder {
        opacity: 0;
        color: #c00; }
      .header-container header.main-header .search-field input:-ms-input-placeholder {
        opacity: 0;
        color: #c00; }
      .header-container header.main-header .search-field input::placeholder {
        opacity: 0;
        color: #c00; }
        @media screen and (min-width: 992px) {
          .header-container header.main-header .search-field input::-webkit-input-placeholder {
            opacity: 1; }
          .header-container header.main-header .search-field input:-ms-input-placeholder {
            opacity: 1; }
          .header-container header.main-header .search-field input::placeholder {
            opacity: 1; } }
      .header-container header.main-header .search-field input:hover::-webkit-input-placeholder {
        color: #ec223a; }
      .header-container header.main-header .search-field input:hover:-ms-input-placeholder {
        color: #ec223a; }
      .header-container header.main-header .search-field input:hover::placeholder {
        color: #ec223a; }
      .header-container header.main-header .search-field input:hover, .header-container header.main-header .search-field input:focus {
        outline: none;
        border: solid 1px #e2e5eb; }
  .header-container header.main-header .menu-toggle, .header-container header.main-header .search-toggle {
    display: block;
    font-size: 0;
    height: 27px;
    color: #fff; }
    @media screen and (min-width: 992px) {
      .header-container header.main-header .menu-toggle, .header-container header.main-header .search-toggle {
        display: none; } }
    .header-container header.main-header .menu-toggle:hover, .header-container header.main-header .search-toggle:hover {
      cursor: pointer; }
  .header-container header.main-header .menu-toggle {
    padding: 26px;
    margin-left: -16px; }
    .header-container header.main-header .menu-toggle:before {
      font-family: 'icomoon';
      content: "\f002";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 20px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .header-container header.main-header .menu-toggle:before {
      position: relative;
      bottom: 10px; }
  .header-container header.main-header .search-toggle {
    padding: 26px;
    margin-right: -16px; }
    .header-container header.main-header .search-toggle:before {
      font-family: 'icomoon';
      content: "\f001";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 27px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .header-container header.main-header .search-toggle:before {
      position: relative;
      bottom: 15px; }

div.mobile-nav {
  position: fixed;
  background-color: transparent;
  height: 100%;
  width: 100%;
  z-index: 12;
  top: 0;
  left: -100%;
  transition: left 0s ease .5s, background-color .5s ease-in-out; }
  @media screen and (min-width: 992px) {
    div.mobile-nav {
      display: none; } }
  div.mobile-nav.open {
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    transition: background-color .4s; }
    div.mobile-nav.open .slide-wrapper {
      margin-left: 0; }
  div.mobile-nav .slide-wrapper {
    box-shadow: 10px 0 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    height: 100%;
    margin-left: -88%;
    width: 88%;
    background-color: #fff;
    transition: all .5s ease-in-out; }
  div.mobile-nav .menu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 12%;
    height: 100%;
    margin: 0;
    padding: 0; }
    div.mobile-nav .menu-toggle:before {
      content: ''; }
  div.mobile-nav .logo {
    background-image: linear-gradient(to left, #d11717, #e00e1f 35%, #dd152d 51%, #750d42);
    display: block;
    float: none;
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 7px 0; }
    div.mobile-nav .logo a {
      transition: all 0.3s ease;
      display: inline-block;
      color: #fff;
      width: 73px;
      height: 32px; }
      div.mobile-nav .logo a:before {
        font-family: 'icomoon';
        content: "\e900";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 32px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
  div.mobile-nav .nav-wrapper {
    background: #f5f5f5;
    position: relative;
    height: 100%;
    overflow-y: auto; }
    div.mobile-nav .nav-wrapper nav, div.mobile-nav .nav-wrapper li {
      transition: max-height 0.3s, -webkit-transform 0.3s ease 0.3s;
      transition: transform 0.3s ease 0.3s, max-height 0.3s;
      transition: transform 0.3s ease 0.3s, max-height 0.3s, -webkit-transform 0.3s ease 0.3s; }
    div.mobile-nav .nav-wrapper li {
      max-height: 120px; }
    div.mobile-nav .nav-wrapper li.expandable, div.mobile-nav .nav-wrapper li.expandable.parent {
      position: relative; }
      div.mobile-nav .nav-wrapper li.expandable > ul.dropdown li, div.mobile-nav .nav-wrapper li.expandable.parent > ul.dropdown li {
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        transition: opacity 0.3s ease 0.6s, max-height 0s ease 0s; }
    div.mobile-nav .nav-wrapper .dropdown > li {
      overflow: hidden;
      max-height: 0; }
    div.mobile-nav .nav-wrapper li.expanded a, div.mobile-nav .nav-wrapper li.parent a {
      padding-left: 48px; }
    div.mobile-nav .nav-wrapper li.expanded > a, div.mobile-nav .nav-wrapper li.parent > a {
      background-color: #f5f5f5; }
    div.mobile-nav .nav-wrapper li.expanded > .submenu-toggle, div.mobile-nav .nav-wrapper li.parent > .submenu-toggle {
      left: 0; }
      div.mobile-nav .nav-wrapper li.expanded > .submenu-toggle:before, div.mobile-nav .nav-wrapper li.parent > .submenu-toggle:before {
        font-family: 'icomoon';
        content: "\f053";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 16px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
  div.mobile-nav .nav-wrapper.open {
    background: #fff; }
    div.mobile-nav .nav-wrapper.open nav.open {
      -webkit-transform: none;
              transform: none;
      max-height: 120px; }
    div.mobile-nav .nav-wrapper.open li.expandable.expanded {
      -webkit-transform: none;
              transform: none;
      max-height: 120px; }
      div.mobile-nav .nav-wrapper.open li.expandable.expanded > ul.dropdown {
        background: #fff; }
        div.mobile-nav .nav-wrapper.open li.expandable.expanded > ul.dropdown > li {
          visibility: visible;
          overflow: visible;
          opacity: 1;
          max-height: 120px;
          -webkit-transform: none;
                  transform: none;
          transition: opacity 0.3s ease 0.6s, max-height 0s ease 0.6s; }
    div.mobile-nav .nav-wrapper.open li.expandable.parent {
      -webkit-transform: none;
              transform: none;
      max-height: 120px; }
      div.mobile-nav .nav-wrapper.open li.expandable.parent li.expandable.expanded {
        visibility: visible;
        overflow: visible;
        opacity: 1;
        -webkit-transform: none;
                transform: none;
        max-height: 120px; }
    div.mobile-nav .nav-wrapper.open nav, div.mobile-nav .nav-wrapper.open li {
      max-height: 0;
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
      transition: max-height 0.3s ease 0.3s, -webkit-transform 0.3s ease;
      transition: transform 0.3s ease, max-height 0.3s ease 0.3s;
      transition: transform 0.3s ease, max-height 0.3s ease 0.3s, -webkit-transform 0.3s ease; }
  div.mobile-nav .nav-wrapper > nav > ul li {
    width: 100%; }
    div.mobile-nav .nav-wrapper > nav > ul li .submenu-toggle {
      display: block;
      position: absolute;
      text-align: center;
      width: 48px;
      height: 36px;
      right: 0;
      top: 0;
      line-height: 1;
      border-left: 1px solid #ebebeb;
      padding: 10px 0;
      margin: 8px 0; }
      div.mobile-nav .nav-wrapper > nav > ul li .submenu-toggle:before {
        font-family: 'icomoon';
        content: "\f054";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 16px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      div.mobile-nav .nav-wrapper > nav > ul li .submenu-toggle:before {
        color: #c00; }
      div.mobile-nav .nav-wrapper > nav > ul li .submenu-toggle:hover {
        cursor: pointer; }
    div.mobile-nav .nav-wrapper > nav > ul li > a {
      display: block;
      padding: 12px 0;
      margin-left: 16px;
      color: #232636;
      border-bottom: 1px solid #ebebeb;
      transition: all 0.3s; }
  div.mobile-nav .nav-wrapper > nav > ul li.parent > a {
    display: none; }
  div.mobile-nav .nav-wrapper > nav > ul li.expanded > a {
    margin-left: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
    text-align: left;
    color: #242637;
    padding-top: 14px;
    padding-bottom: 14px;
    border: none; }
  div.mobile-nav .nav-wrapper > nav > ul li.expanded > .submenu-toggle {
    padding: 8px 0; }
  div.mobile-nav .nav-wrapper > nav > ul > li > ul li > a {
    margin-left: 48px !important;
    padding-left: 0 !important; }
  div.mobile-nav .nav-wrapper > nav > ul > li > ul li.expanded > a {
    margin-left: 0 !important;
    padding-left: 48px !important; }
  div.mobile-nav nav.navigation-mobile,
  div.mobile-nav nav.user-navigation-mobile,
  div.mobile-nav nav.student-navigation-mobile {
    background: #fff; }
  div.mobile-nav nav.student-navigation-mobile a {
    text-transform: uppercase; }
  div.mobile-nav nav.student-navigation-mobile ul li ul a {
    font-weight: 400;
    text-transform: none; }
  div.mobile-nav nav.student-navigation-mobile > ul > li:last-child > a {
    border-bottom: none; }
  div.mobile-nav nav.user-navigation-mobile > ul li .submenu-toggle:before {
    color: #6f6f6f;
    opacity: 0.5; }
  div.mobile-nav nav.user-navigation-mobile > ul {
    background-color: #f5f5f5; }
    div.mobile-nav nav.user-navigation-mobile > ul > li > a {
      text-transform: none;
      font-size: 14px;
      line-height: 1.43;
      text-align: left;
      color: #6f6f6f;
      padding: 16px 0; }
  div.mobile-nav nav.user-navigation-mobile > ul > li.expanded .submenu-toggle:before {
    color: #c00 !important;
    opacity: 1 !important; }

nav.user-navigation {
  display: none; }
  @media screen and (min-width: 992px) {
    nav.user-navigation {
      min-width: 310px;
      -ms-flex: 0 0 15.5%;
          flex: 0 0 15.5%;
      display: block; }
      nav.user-navigation a {
        color: #242637;
        font-size: 14px;
        line-height: 1.29;
        padding-right: 20px;
        letter-spacing: normal; } }
  nav.user-navigation > ul > li {
    display: inline-block;
    position: relative;
    margin: 0; }
    nav.user-navigation > ul > li:hover {
      cursor: pointer; }
      nav.user-navigation > ul > li:hover a {
        color: #ec223a; }
      nav.user-navigation > ul > li:hover .submenu-toggle {
        color: #ec223a; }
        nav.user-navigation > ul > li:hover .submenu-toggle:before {
          color: #ec223a; }
    nav.user-navigation > ul > li:last-child a {
      padding-right: 0; }
  @media screen and (min-width: 992px) {
    nav.user-navigation > ul li.expandable:hover ul {
      visibility: visible; } }
  nav.user-navigation > ul li.expandable ul {
    visibility: hidden;
    position: absolute;
    min-width: 141px;
    z-index: 1;
    padding: 8px 7px 6px 5px;
    background-color: #fff;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.2);
    border: solid 1px #e0e0e0; }
    nav.user-navigation > ul li.expandable ul li {
      display: block; }
    nav.user-navigation > ul li.expandable ul a {
      color: #232636;
      display: block;
      padding: 7px 11px;
      font-size: 12px;
      line-height: 1.83; }
      nav.user-navigation > ul li.expandable ul a:hover {
        background-color: #f6f7f9; }
  nav.user-navigation .submenu-toggle {
    width: 8px;
    display: inline-block;
    text-align: center; }
    nav.user-navigation .submenu-toggle:before {
      font-family: 'icomoon';
      content: "\f0d7";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 14px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    nav.user-navigation .submenu-toggle:before {
      color: #b6b8bb;
      width: 8px;
      display: inline-block; }

.mega-nav {
  display: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%; }
  @media screen and (min-width: 560px) {
    .mega-nav {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 768px) {
    .mega-nav {
      padding-left: 20px;
      padding-right: 20px;
      width: 720px; } }
  @media screen and (min-width: 992px) {
    .mega-nav {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 1200px) {
    .mega-nav {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }
  @media screen and (min-width: 992px) {
    .mega-nav {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }
  .mega-nav-container {
    background-image: linear-gradient(to left, #d11717, #e00e1f 35%, #dd152d 51%, #750d42); }
  .mega-nav nav.navigation > ul > li, .mega-nav nav.student-navigation > ul > li {
    display: inline-block; }
    .mega-nav nav.navigation > ul > li a, .mega-nav nav.student-navigation > ul > li a {
      display: block;
      position: relative;
      padding: 14px 10px 14px 0;
      color: #fff;
      margin-right: 5px;
      font-size: 15px !important;
      font-weight: 500;
      line-height: 20px; }
      .mega-nav nav.navigation > ul > li a:after, .mega-nav nav.student-navigation > ul > li a:after {
        font-family: 'icomoon';
        content: "\f078";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 11px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      @media screen and (min-width: 992px) {
        .mega-nav nav.navigation > ul > li a, .mega-nav nav.student-navigation > ul > li a {
          margin-right: 18px; } }
      @media screen and (min-width: 1200px) {
        .mega-nav nav.navigation > ul > li a, .mega-nav nav.student-navigation > ul > li a {
          font-size: inherit;
          margin-right: 32px; } }
      .mega-nav nav.navigation > ul > li a:before, .mega-nav nav.student-navigation > ul > li a:before {
        display: block;
        content: attr(title);
        letter-spacing: normal;
        height: 0;
        overflow: hidden;
        visibility: hidden; }
      .mega-nav nav.navigation > ul > li a:after, .mega-nav nav.student-navigation > ul > li a:after {
        position: absolute;
        right: 0;
        top: 19px;
        color: #fff; }
        @media screen and (min-width: 992px) {
          .mega-nav nav.navigation > ul > li a:after, .mega-nav nav.student-navigation > ul > li a:after {
            right: -2px; } }
    .mega-nav nav.navigation > ul > li:last-child > a, .mega-nav nav.student-navigation > ul > li:last-child > a {
      margin-right: 0; }
    .mega-nav nav.navigation > ul > li:hover > a, .mega-nav nav.student-navigation > ul > li:hover > a {
      padding-bottom: 10px;
      border-bottom: 4px solid #6ab3fc; }
    .mega-nav nav.navigation > ul > li.opened > a, .mega-nav nav.student-navigation > ul > li.opened > a {
      font-weight: 800 !important;
      letter-spacing: -.5px;
      padding-bottom: 10px;
      border-bottom: 4px solid #6ab3fc; }
      .mega-nav nav.navigation > ul > li.opened > a:after, .mega-nav nav.student-navigation > ul > li.opened > a:after {
        font-family: 'icomoon';
        content: "\f00d";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 14px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .mega-nav nav.navigation > ul > li.opened > a:after, .mega-nav nav.student-navigation > ul > li.opened > a:after {
        top: 18px; }
  .mega-nav nav.student-navigation > ul > li.opened > a {
    letter-spacing: normal; }
  .mega-nav nav.student-navigation > ul > li > a {
    font-size: 13px;
    padding-right: 18px;
    text-transform: uppercase; }
    @media screen and (min-width: 1200px) {
      .mega-nav nav.student-navigation > ul > li > a {
        font-size: 16px !important;
        font-weight: 800;
        padding-right: 20px; } }
    .mega-nav nav.student-navigation > ul > li > a:after {
      top: 16px;
      font-size: 14px; }

.mega-nav-content {
  width: 100% !important;
  background-color: #fff;
  display: none; }
  @media screen and (min-width: 992px) {
    .mega-nav-content.opened .inner {
      display: -ms-flexbox;
      display: flex; } }
  .mega-nav-content .inner {
    width: 1220px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (min-width: 560px) {
      .mega-nav-content .inner {
        padding-left: 16px;
        padding-right: 16px; } }
    @media screen and (min-width: 768px) {
      .mega-nav-content .inner {
        padding-left: 20px;
        padding-right: 20px;
        width: 720px; } }
    @media screen and (min-width: 992px) {
      .mega-nav-content .inner {
        padding-left: 20px;
        padding-right: 20px;
        width: 960px; } }
    @media screen and (min-width: 1200px) {
      .mega-nav-content .inner {
        padding-left: 20px;
        padding-right: 20px;
        width: 1140px; } }
    @media screen and (max-width: 1200px) {
      .mega-nav-content .inner {
        width: 1000px !important; } }
    .mega-nav-content .inner .item {
      width: calc(20%);
      float: left;
      margin-left: 0;
      border-left: 1px solid #e2e5eb;
      border-right: 1px solid #e2e5eb;
      float: none;
      padding-left: 19px;
      padding-right: 19px;
      padding-bottom: 0px;
      margin-left: 0;
      min-height: 326px; }
      .mega-nav-content .inner .item:first-child {
        border-left: 1px solid #fff; }
      .mega-nav-content .inner .item:last-child {
        border-right: 1px solid #fff; }
    .mega-nav-content .inner .text-only-callout {
      padding: 0; }
      .mega-nav-content .inner .text-only-callout > a {
        min-height: 196px;
        display: block;
        padding: 20px 18px 55px 18px; }
        .mega-nav-content .inner .text-only-callout > a:after {
          margin-left: 0; }
      .mega-nav-content .inner .text-only-callout h4 {
        font-size: 16px;
        font-weight: bold;
        line-height: 20px;
        letter-spacing: -0.4px;
        text-align: left;
        color: #ffffff;
        margin: 0 0 10px 0; }
        .mega-nav-content .inner .text-only-callout h4:last-child {
          margin-bottom: 0; }
      .mega-nav-content .inner .text-only-callout span {
        padding: 7px 18px 7px 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        line-height: 16px;
        min-height: 53px;
        display: table; }
        .mega-nav-content .inner .text-only-callout span:after {
          content: '';
          display: none; }
        .mega-nav-content .inner .text-only-callout span i {
          display: table-cell;
          vertical-align: middle;
          font-style: normal; }
          .mega-nav-content .inner .text-only-callout span i:after {
            font-family: 'icomoon';
            content: "\f061";
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            font-size: 16px;
            /* Better Font Rendering =========== */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; }
          .mega-nav-content .inner .text-only-callout span i:after {
            color: #6ab3fc;
            margin-left: 8px; }
    .mega-nav-content .inner .text-image-callout h5 {
      font-size: 16px;
      font-weight: bold;
      letter-spacing: -0.1px;
      text-align: left;
      color: #242637;
      margin-bottom: 8px; }
      .mega-nav-content .inner .text-image-callout h5 a, .mega-nav-content .inner .text-image-callout h5 a:link, .mega-nav-content .inner .text-image-callout h5 a:visited {
        display: block;
        line-height: 1.25;
        color: #242637; }
      .mega-nav-content .inner .text-image-callout h5 a:hover {
        color: #ec223a; }
    .mega-nav-content .inner .text-image-callout p {
      font-size: 14px;
      line-height: 1.43;
      text-align: left;
      color: #242637;
      margin: 0 0 4px 0; }
    .mega-nav-content .inner .text-image-callout .video {
      position: relative;
      width: 100%;
      height: auto; }
      .mega-nav-content .inner .text-image-callout .video a {
        display: block; }
        .mega-nav-content .inner .text-image-callout .video a .thumb {
          width: 100%;
          height: auto; }
        .mega-nav-content .inner .text-image-callout .video a .play {
          position: absolute;
          width: auto;
          height: auto;
          opacity: 0.9;
          margin: 0 auto;
          top: calc((100% - 40px) / 2);
          left: calc((100% - 57px) / 2); }
        .mega-nav-content .inner .text-image-callout .video a:hover .play {
          opacity: 1; }
    .mega-nav-content .inner .text-image-callout a.link {
      font-size: 14px;
      line-height: 1.43;
      text-align: left;
      color: #242637;
      margin-bottom: 8px; }
      .mega-nav-content .inner .text-image-callout a.link:hover {
        color: #ec223a;
        text-decoration: none; }
    .mega-nav-content .inner .text-image-callout a.more {
      font-size: 14px;
      line-height: 1.43;
      text-align: left;
      color: #c00;
      display: block; }
      .mega-nav-content .inner .text-image-callout a.more:hover {
        color: #ec223a;
        text-decoration: underline; }
    .mega-nav-content .inner .links-block a {
      display: block;
      color: #232636;
      line-height: 1.25;
      letter-spacing: -0.1px;
      margin-bottom: 16px; }
      .mega-nav-content .inner .links-block a:hover {
        color: #ec223a; }

@media screen and (min-width: 992px) {
  .header-container.college-header-container header.main-header .logo a:before {
    font-family: 'icomoon';
    content: "\e900";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 51px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .header-container.college-header-container header.main-header .logo a:before {
    width: 114px;
    height: 50px;
    display: block; } }

.header-container.college-header-container header.main-header .logo h2 {
  display: none; }
  @media screen and (min-width: 992px) {
    .header-container.college-header-container header.main-header .logo h2 {
      display: table; } }

.header-container.college-header-container nav.user-navigation {
  min-width: 96px;
  -ms-flex: 0;
      flex: 0; }

@media screen and (min-width: 992px) {
  .header-container.microsite-header-container header.main-header .logo a:before {
    font-family: 'icomoon';
    content: "\e900";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 51px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .header-container.microsite-header-container header.main-header .logo a:before {
    width: 114px;
    height: 50px;
    display: block; } }

.header-container.microsite-header-container header.main-header .logo h2 a {
  display: table;
  height: 100%;
  width: 100%;
  position: initial;
  top: initial;
  color: #333; }
  .header-container.microsite-header-container header.main-header .logo h2 a:before {
    display: none; }

.header-container.microsite-header-container nav.user-navigation {
  min-width: 96px;
  -ms-flex: 0;
      flex: 0; }

body.sticky-header .header-container {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20; }

.scrolling-down body.page-microsite header.main-header .logo a {
  display: none;
  -webkit-animation-delay: 0;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: animation-slide-out-down;
  -webkit-animation-fill-mode: fowards;
  -webkit-animation-direction: ease;
  -moz-animation-delay: 0;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: animation-slide-out-down;
  -moz-animation-fill-mode: fowards;
  -moz-animation-direction: ease;
  animation-delay: 0;
  animation-duration: 0.5s;
  animation-name: animation-slide-out-down;
  animation-fill-mode: fowards;
  animation-direction: ease; }

/*# sourceMappingURL=maps/header.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.text-only-callout.two_column_alt_, .text-only-callout.two_column {
  max-width: 240px;
  min-width: 200px;
  padding: 24px;
  width: 100%;
  height: 244px; }

.text-only-callout {
  background-image: linear-gradient(to bottom, #d11717, #e00e1f 35%, #dd152d 51%, #750d42);
  position: relative;
  padding: 24px 24px 60px 24px;
  min-height: 196px; }
  .text-only-callout h4 {
    font-size: 20px;
    line-height: 1.09;
    letter-spacing: -.8px;
    margin-top: 0;
    margin-bottom: 8px;
    color: #fff; }
    @media screen and (min-width: 768px) {
      .text-only-callout h4 {
        font-size: 22px; } }
  .text-only-callout a {
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.5;
    padding: 15px 24px;
    display: block;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 0;
    left: 0; }
    .text-only-callout a:after {
      font-family: 'icomoon';
      content: "\f061";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 18px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .text-only-callout a:after {
      color: #6ab3fc;
      margin-left: 8px; }
  .text-only-callout--homepage {
    height: 160px;
    min-width: 300px;
    min-height: 160px;
    padding: 16px 16px 72px 16px;
    margin-top: 15px;
    margin-bottom: 15px; }
    @media screen and (min-width: 560px) {
      .text-only-callout--homepage {
        height: auto;
        padding: 32px 32px 72px 32px;
        margin-top: 15px;
        margin-bottom: 15px;
        min-width: 340px;
        min-height: 344px !important; } }
  .text-only-callout--4-col {
    padding: 15px 15px 72px 15px;
    height: 100%; }
    .text-only-callout--4-col a {
      padding: 10px 15px;
      font-size: 14px; }
      @media screen and (min-width: 768px) {
        .text-only-callout--4-col a {
          font-size: 16px;
          padding: 15px 32px; } }
    @media screen and (min-width: 560px) {
      .text-only-callout--4-col {
        max-width: 340px;
        min-height: 280px;
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .text-only-callout--4-col {
        padding: 32px 32px 72px 32px; } }
  @media screen and (min-width: 560px) {
    .text-only-callout--3-col {
      max-width: 245px;
      min-height: 264px;
      width: 100%;
      padding: 24px 24px 60px 24px; }
      .text-only-callout--3-col h4 {
        font-size: 24px;
        line-height: 1.17; }
      .text-only-callout--3-col a {
        padding: 16px 24px; } }
  @media screen and (min-width: 560px) {
    .text-only-callout--header {
      min-height: 188px;
      padding: 20px 20px 72px 20px; }
      .text-only-callout--header > a {
        text-transform: none;
        color: #fff;
        position: static;
        border-top: none;
        padding: 0; }
        .text-only-callout--header > a:after {
          content: ''; }
      .text-only-callout--header h4 {
        font-size: 16px;
        line-height: 1.25; }
      .text-only-callout--header span {
        width: 100%;
        font-size: 14px;
        text-transform: uppercase;
        line-height: 1.5;
        padding: 15px 24px;
        display: block;
        border-top: 2px solid rgba(255, 255, 255, 0.5);
        position: absolute;
        bottom: 0;
        left: 0; }
        .text-only-callout--header span:after {
          font-family: 'icomoon';
          content: "\f061";
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          font-size: 18px;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
        .text-only-callout--header span:after {
          color: #6ab3fc;
          margin-left: 8px; } }

/*# sourceMappingURL=maps/text-only-callout.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.text-image-callout {
  margin-bottom: 32px; }
  .text-image-callout img {
    width: 100%;
    height: auto;
    margin-bottom: 12px; }
  .text-image-callout h4 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -.8px; }
  .text-image-callout h5 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.17; }
  .text-image-callout p {
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 8px;
    color: #6f6f6f; }
  .text-image-callout .link {
    display: block;
    line-height: 1.43;
    margin-bottom: 8px; }
  .text-image-callout a {
    line-height: 1.5;
    color: #232636; }
    .text-image-callout a:hover {
      color: #c00; }
  .text-image-callout .more {
    line-height: 1.5;
    height: 20px;
    color: #c00;
    text-transform: capitalize; }
    .text-image-callout .more:hover {
      text-decoration: underline; }
  .text-image-callout:last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 560px) {
    .text-image-callout {
      max-width: 245px; } }
  .text-image-callout--header {
    max-width: initial; }
    .text-image-callout--header p {
      color: #232636; }

/*# sourceMappingURL=maps/text-image-callout.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-mobile {
  display: block; }
  @media screen and (min-width: 560px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-mobile {
      display: block; } }
  @media screen and (min-width: 768px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-mobile {
      display: none; } }
  @media screen and (min-width: 992px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-mobile {
      display: none; } }

footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-medium {
  display: none; }
  @media screen and (min-width: 560px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-medium {
      display: none; } }
  @media screen and (min-width: 768px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-medium {
      display: block; } }
  @media screen and (min-width: 992px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-medium {
      display: none; } }

footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-desktop {
  display: none; }
  @media screen and (min-width: 560px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-desktop {
      display: none; } }
  @media screen and (min-width: 768px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-desktop {
      display: none; } }
  @media screen and (min-width: 992px) {
    footer.footer-container .footer-menu-wrapper.footer-menu-wrapper-desktop {
      display: block; } }

footer.footer-container {
  width: 100%;
  position: relative;
  z-index: 0;
  box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(324deg, #d11717, #e00e1f 35%, #dd152d 51%, #750d42); }
  footer.footer-container .footer-menu-wrapper {
    width: auto;
    margin: 0 auto;
    padding: 36px 16px 12px 16px; }
    footer.footer-container .footer-menu-wrapper .footer-menu {
      margin-bottom: 36px;
      display: table;
      width: 100%; }
      footer.footer-container .footer-menu-wrapper .footer-menu .first-col {
        display: table-cell;
        vertical-align: top;
        width: 50%;
        padding-right: 16px; }
      footer.footer-container .footer-menu-wrapper .footer-menu .second-col {
        display: table-cell;
        vertical-align: top;
        width: 50%;
        padding-left: 16px; }
      footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column {
        width: 100%;
        margin: 0;
        padding: 0; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li {
          list-style: none;
          margin: 0 0 10px 0;
          padding: 0; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:visited {
            font-size: 16px;
            line-height: 1.25;
            color: #ffffff;
            display: block; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:hover {
            text-decoration: underline; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li:last-child {
            margin-bottom: 0; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 {
          margin: 0 0 10px 0; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:visited {
            font-size: 16px;
            font-weight: bold;
            line-height: 1.25;
            color: #ffffff;
            display: block; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:hover {
            text-decoration: underline; }
      footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li {
        margin: 0 0 10px 0; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:visited {
          font-size: 16px;
          font-weight: bold;
          line-height: 1.25;
          color: #ffffff;
          text-transform: uppercase;
          display: block; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a.key-links-title, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:link.key-links-title, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:visited.key-links-title {
            color: #59a2fc; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:hover {
          text-decoration: underline; }
      footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.last {
        margin-top: 36px; }
    footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-1 {
      display: table;
      width: 100%; }
      footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-1 .address {
        width: 156px;
        display: table-cell;
        vertical-align: bottom;
        font-size: 14px;
        line-height: 1.43;
        color: #ffffff; }
        footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-1 .address span {
          display: block; }
      footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-1 ul.links {
        width: auto;
        display: table-cell;
        vertical-align: bottom;
        text-align: right; }
        footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-1 ul.links li {
          display: block;
          margin-bottom: 4px; }
          footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-1 ul.links li a {
            font-size: 12px;
            line-height: 1.33;
            text-align: right;
            color: #ffffff;
            text-decoration: underline;
            display: block; }
    footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .divider {
      width: 100%;
      border-bottom: 1px solid #fff;
      margin: 12px 0 17px 0; }
    footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-2 {
      display: table;
      width: 100%; }
      footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-2 .footer-social-icons {
        width: auto;
        display: table-cell;
        vertical-align: middle; }
        footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-2 .footer-social-icons .social-icons {
          display: block;
          height: 34px;
          overflow: hidden; }
          footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-2 .footer-social-icons .social-icons .social-icon {
            overflow: hidden;
            margin-left: 5px;
            margin-right: 5px;
            width: 34px;
            height: 34px; }
            footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-2 .footer-social-icons .social-icons .social-icon a {
              width: 34px;
              height: 34px; }
              footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-2 .footer-social-icons .social-icons .social-icon a:before {
                font-size: 17px; }
      footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .line-2 .codes {
        display: table-cell;
        vertical-align: middle;
        width: 156px;
        text-align: right;
        font-size: 12px;
        line-height: 1.33;
        text-align: right;
        color: #fff; }

footer.footer-container.microsite-footer-container .footer-menu-wrapper {
  width: auto;
  margin: 0 auto;
  padding: 25px 16px 17px 16px; }
  footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu {
    margin-bottom: 36px; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .first-col,
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .second-col {
      padding: 0;
      width: 100%; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column {
      width: 100%;
      margin: 0; }
      footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 {
        margin: 0 0 16px 0; }
        footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a {
          font-size: 16px;
          font-weight: bold;
          line-height: 1.25;
          color: #ffffff; }
      footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column:last-child > h6 {
        margin-bottom: 0; }

@media screen and (min-width: 768px) {
  footer.footer-container {
    background-image: linear-gradient(324deg, #d21718, #dd142b 37%, #780d42);
    background-image: linear-gradient(290deg, #d11717, #e00e1f 35%, #dd152d 51%, #750d42); }
    footer.footer-container .footer-menu-wrapper {
      position: relative;
      width: auto;
      margin: 40px 16px 32px 16px;
      padding: 0; }
      footer.footer-container .footer-menu-wrapper .footer-menu {
        margin-bottom: 48px;
        display: block;
        width: 100%; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column {
          width: calc(25% - 50px);
          float: left;
          margin-left: 40px; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 {
            margin: 0px 0 10px 0; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6:first-child {
              margin-top: 0; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6:last-child {
              margin-bottom: 0; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:visited {
              font-size: 16px;
              font-weight: bold;
              line-height: 1.25;
              color: #ffffff;
              display: block; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:hover {
              text-decoration: underline; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li {
            list-style: none;
            margin: 0 0 10px 0;
            padding: 0; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li:last-child {
              margin-bottom: 0; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:visited {
              font-size: 16px;
              line-height: 1.25;
              color: #faf6f8;
              display: block; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:hover {
              text-decoration: underline; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column:first-child {
            margin-left: 0px; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links {
          padding: 0px;
          border: none; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:visited {
            font-size: 16px;
            font-weight: bold;
            line-height: 1.25;
            color: #ffffff;
            text-transform: uppercase; }
            footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a.key-links-title, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:link.key-links-title, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:visited.key-links-title {
              color: #59a2fc; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:hover {
            text-decoration: underline; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.last {
          margin-top: 0; }
      footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes {
        display: table;
        width: 100%; }
        footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .footer-logo {
          display: table-cell;
          vertical-align: top;
          width: 95px;
          text-align: center; }
          footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .footer-logo img {
            margin: 0; }
        footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines {
          display: table-cell;
          vertical-align: top;
          width: auto;
          text-align: left;
          padding-left: 25px; }
          footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line {
            font-size: 14px;
            line-height: 1.43;
            color: #ffffff;
            margin-bottom: 4px; }
            footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line:last-child {
              margin-bottom: 0; }
            footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links {
              padding: 0;
              margin: 0; }
              footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li {
                list-style: none;
                display: inline-block;
                padding: 0 0 0 0;
                margin: 0; }
                footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li a.link {
                  color: #fff;
                  text-decoration: underline; }
                footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li::before {
                  content: "\2022";
                  color: #fff;
                  width: auto;
                  height: 20px;
                  line-height: 20px;
                  padding: 0 8px 0 5px;
                  display: inline-block;
                  text-align: center; }
                footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li:first-child::before {
                  display: none; }
            footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line.line-name h3.name {
              font-size: 14px;
              font-weight: bold;
              line-height: 1.29;
              color: #ffffff;
              margin: 0 0 2px 0; }
      footer.footer-container .footer-menu-wrapper .footer-social-icons {
        position: absolute;
        top: -60px;
        right: 0px; }
        footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons {
          display: block;
          position: relative;
          right: 0;
          top: 0; }
          footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons .social-icon {
            width: 50px;
            height: 50px; }
            footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons .social-icon a {
              width: 50px;
              height: 50px; }
              footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons .social-icon a:before {
                font-size: 25px; }
  footer.footer-container.microsite-footer-container .footer-menu-wrapper {
    width: auto;
    margin: 50px auto 50px auto;
    padding: 0; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu {
      margin-bottom: 34px; }
      footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column {
        width: auto;
        margin-right: 37px;
        margin-left: 40px; }
        footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 {
          margin: 0 0 16px 0; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-bottom .footer-notes .footer-logo {
      width: 95px;
      padding: 0 55px 0 40px; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines {
      padding-left: 0; } }

@media screen and (min-width: 992px) {
  footer.footer-container .footer-menu-wrapper {
    width: 960px;
    margin: 60px auto 48px auto;
    padding: 0; }
    footer.footer-container .footer-menu-wrapper .footer-menu {
      margin-bottom: 48px; }
      footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column {
        width: calc(16.66667% - 46.66667px);
        float: left;
        margin-left: 40px;
        margin: 0 20px; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 {
          margin: 24px 0 12px 0; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6:first-child {
            margin-top: 0; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:visited {
            font-size: 14px;
            font-weight: bold;
            line-height: 1.29;
            color: #ffffff;
            display: block; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 a:hover {
            text-decoration: underline; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li {
          list-style: none;
          margin: 0 0 10px 0;
          padding: 0; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li:last-child {
            margin-bottom: 0; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:visited {
            font-size: 14px;
            line-height: 1.29;
            color: #faf6f8;
            display: block;
            line-height: 1.29; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > ul li a:hover {
            text-decoration: underline; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column:first-child {
          width: 190px;
          margin-left: 0px; }
      footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links {
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.5); }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:link, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:visited {
          font-size: 16px;
          font-weight: bold;
          line-height: 1.25;
          color: #ffffff;
          text-transform: uppercase; }
          footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a.key-links-title, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:link.key-links-title, footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:visited.key-links-title {
            color: #59a2fc; }
        footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.key-links > ul li a:hover {
          text-decoration: underline; }
      footer.footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column.last {
        margin-top: 0; }
    footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes {
      display: table;
      width: 100%; }
      footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .footer-logo {
        display: table-cell;
        vertical-align: top;
        width: 190px;
        text-align: center; }
        footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .footer-logo img {
          margin: 0 auto; }
      footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines {
        display: table-cell;
        vertical-align: top;
        width: auto;
        text-align: left;
        padding-left: 40px; }
        footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line {
          font-size: 14px;
          line-height: 1.43;
          color: #ffffff;
          margin-bottom: 4px; }
          footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line:last-child {
            margin-bottom: 0; }
          footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links {
            padding: 0;
            margin: 0; }
            footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li {
              list-style: none;
              display: inline-block;
              padding: 0 0 0 0;
              margin: 0; }
              footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li a.link {
                color: #fff;
                text-decoration: underline; }
              footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li::before {
                content: "\2022";
                color: #fff;
                width: auto;
                height: 20px;
                line-height: 20px;
                padding: 0 8px 0 5px;
                display: inline-block;
                text-align: center; }
              footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line ul.note-links li:first-child::before {
                display: none; }
          footer.footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines .line.line-name h3.name {
            font-size: 14px;
            font-weight: bold;
            line-height: 1.29;
            color: #ffffff;
            margin: 0 0 2px 0; }
    footer.footer-container .footer-menu-wrapper .footer-social-icons {
      position: absolute;
      top: -80px;
      right: 0px; }
      footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons {
        display: block;
        position: relative;
        right: 0;
        top: 0; }
  footer.footer-container.main-footer-container .footer-menu .footer-menu--single-column {
    margin-bottom: 24px; }
  footer.footer-container.microsite-footer-container .footer-menu-wrapper {
    margin: 50px auto 50px auto;
    padding: 0; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu {
      margin-bottom: 34px; }
      footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column {
        width: auto;
        margin-right: 37px;
        margin-left: 40px; }
        footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-menu .footer-menu--single-column > h6 {
          margin: 0 0 16px 0; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-bottom .footer-notes .footer-logo {
      width: 95px;
      padding: 0 55px 0 40px; }
    footer.footer-container.microsite-footer-container .footer-menu-wrapper .footer-bottom .footer-notes .lines {
      padding-left: 0; } }

@media screen and (min-width: 1200px) {
  footer.footer-container .footer-menu-wrapper {
    width: 1180px; }
    footer.footer-container .footer-menu-wrapper .footer-social-icons {
      position: absolute;
      top: -80px;
      right: 0; }
  footer.footer-container.main-footer-container .footer-menu .footer-menu--single-column {
    margin-bottom: 0px; }
  footer.footer-container.microsite-footer-container .footer-menu-wrapper {
    width: 1180px;
    margin: 50px auto 50px auto;
    padding: 0; } }

@media only screen and (min-width: 1440px) {
  footer.footer-container .footer-menu-wrapper .footer-social-icons {
    position: absolute;
    top: -80px;
    right: -80px; }
    footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons .social-icon {
      width: 80px;
      height: 80px; }
      footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons .social-icon a {
        width: 80px;
        height: 80px; }
        footer.footer-container .footer-menu-wrapper .footer-social-icons .social-icons .social-icon a:before {
          font-size: 40px; } }

/*# sourceMappingURL=maps/footer.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.alert-level-page {
  margin: 0 0 10px 0; }
  .alert-level-page .content {
    position: relative;
    margin: 0 auto;
    padding: 23px 16px 23px;
    max-width: 1100px;
    background-color: #FFF4CB; }
    .alert-level-page .content::after {
      clear: both;
      content: "";
      display: table; }
    .alert-level-page .content:before {
      font-family: 'icomoon';
      content: "\f017";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 60px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    @media screen and (min-width: 560px) {
      .alert-level-page .content {
        padding: 20px 32px 20px 30px; } }
    .alert-level-page .content:before {
      color: #936b07;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      padding: 0px 16px 0px 0px;
      float: left; }
      @media screen and (min-width: 560px) {
        .alert-level-page .content:before {
          padding: 2px 22px 2px 2px;
          font-size: 60px; } }
  .alert-level-page h3 {
    margin: 0 0 0 75px;
    line-height: 1;
    color: #936b07;
    font-size: 24px;
    max-width: 960px; }
  .alert-level-page p {
    margin: 0 0 0 75px;
    max-width: 960px; }
  .alert-level-page p, .alert-level-page a {
    margin-top: 16px;
    line-height: 1;
    color: #936b07;
    font-size: 24px;
    max-width: 960px; }
  .alert-level-page a {
    text-decoration: underline; }

/*# sourceMappingURL=maps/alert-level-page.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.alert-level-site {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  height: 0;
  overflow: hidden;
  width: 100%;
  background-color: #232636;
  padding: 24px 16px; }
  @media screen and (min-width: 768px) {
    .alert-level-site {
      padding: 35px 0; } }
  @media screen and (min-width: 768px) {
    .alert-level-site .content {
      margin-left: auto;
      margin-right: auto;
      padding-left: 16px;
      padding-right: 16px;
      width: 100%;
      font-size: 24px; } }
  @media screen and (min-width: 768px) and (min-width: 560px) {
    .alert-level-site .content {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 768px) and (min-width: 768px) {
    .alert-level-site .content {
      padding-left: 20px;
      padding-right: 20px;
      width: 720px; } }
  @media screen and (min-width: 768px) and (min-width: 992px) {
    .alert-level-site .content {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 768px) and (min-width: 1200px) {
    .alert-level-site .content {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }
  .alert-level-site h3 {
    position: relative;
    padding-left: 40px;
    margin: 0;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px; }
    .alert-level-site h3:before {
      font-family: 'icomoon';
      content: "\f071";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 24px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    @media screen and (min-width: 768px) {
      .alert-level-site h3 {
        padding-left: 40px;
        font-size: 24px; } }
    .alert-level-site h3:before {
      position: absolute;
      left: 0;
      top: -8px;
      margin-right: 16px;
      color: #fff; }
      @media screen and (min-width: 768px) {
        .alert-level-site h3:before {
          top: -4px; } }
  .alert-level-site p {
    margin-top: 10px;
    margin-left: 40px;
    line-height: 1.17;
    color: #fff;
    font-size: 24px; }
    @media screen and (min-width: 768px) {
      .alert-level-site p {
        margin-left: 0; } }
  .alert-level-site a {
    line-height: 1.17;
    color: #fff;
    font-size: 24px;
    text-decoration: underline; }

/*# sourceMappingURL=maps/alert-level-site.css.map */

@charset "UTF-8";
.breadcrumbs li:nth-last-child(2) a {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.breadcrumbs {
  list-style: none; }
  .breadcrumbs li {
    display: none; }
    .breadcrumbs li:nth-last-child(2) {
      display: inline; }
      .breadcrumbs li:nth-last-child(2) a {
        font-size: 16px;
        line-height: 1.5;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
            align-items: center; }
        .breadcrumbs li:nth-last-child(2) a:before {
          font-family: 'icomoon';
          content: "\f053";
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          font-size: 18px;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
        .breadcrumbs li:nth-last-child(2) a::before {
          margin-right: 4px;
          color: #c00; }
        .breadcrumbs li:nth-last-child(2) a:hover {
          color: #ec223a; }
    @media screen and (min-width: 560px) {
      .breadcrumbs li {
        display: inline; }
        .breadcrumbs li:nth-last-child(2) a {
          font-family: 'Poppins', sans-serif;
          font-weight: 400;
          font-style: normal;
          font-size: 12px;
          color: #232636; }
          .breadcrumbs li:nth-last-child(2) a::before {
            content: none; }
        .breadcrumbs li:last-child a {
          color: #6f6f6f; }
          .breadcrumbs li:last-child a:hover {
            color: #ec223a;
            line-height: 1.33; }
        .breadcrumbs li:last-child::after {
          content: none; }
        .breadcrumbs li::after {
          content: '/';
          font-size: 10px;
          color: #6f6f6f;
          padding-left: 5px; } }
  .breadcrumbs a {
    font-size: 12px;
    color: #232636; }
    .breadcrumbs a:hover {
      color: #ec223a;
      line-height: 1.33; }

/*# sourceMappingURL=maps/breadcrumbs.css.map */

@charset "UTF-8";
blockquote.pullquote {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

blockquote.pullquote {
  font-size: 26px;
  line-height: 1.23;
  letter-spacing: -.4px;
  color: #232636;
  position: relative;
  padding-left: 47px;
  padding-top: 26px;
  margin: 0;
  max-width: 815px; }
  @media screen and (min-width: 560px) {
    blockquote.pullquote {
      font-size: 48px;
      line-height: 1.13;
      padding-left: 97px;
      padding-top: 62px; } }
  blockquote.pullquote::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: url("../img/icon-quote.svg");
    background-size: 100%;
    width: 64px;
    height: 64px; }
    @media screen and (min-width: 560px) {
      blockquote.pullquote::before {
        width: 128px;
        height: 128px; } }
  blockquote.pullquote::after {
    content: '”'; }

/*# sourceMappingURL=maps/blockquote.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.check-application-status {
  max-width: 530px;
  width: 100%; }
  .check-application-status .form-type-textfield label {
    display: block !important; }
    .check-application-status .form-type-textfield label.error {
      color: #f60; }
  .check-application-status .form-type-textfield input + label,
  .check-application-status .form-type-textfield div {
    margin-top: 4px; }
  .check-application-status input[type='text'],
  .check-application-status input[type='email'],
  .check-application-status input[type='number'],
  .check-application-status input[type='password'] {
    height: 48px;
    padding: 12px;
    border: solid 1px #d9d9d9;
    transition: border 0.5s; }
    .check-application-status input[type='text'].error,
    .check-application-status input[type='email'].error,
    .check-application-status input[type='number'].error,
    .check-application-status input[type='password'].error {
      border: solid 1px #f60 !important; }
    .check-application-status input[type='text']:hover,
    .check-application-status input[type='email']:hover,
    .check-application-status input[type='number']:hover,
    .check-application-status input[type='password']:hover {
      outline: none;
      border: solid 1px #232636; }
    .check-application-status input[type='text']:focus,
    .check-application-status input[type='email']:focus,
    .check-application-status input[type='number']:focus,
    .check-application-status input[type='password']:focus {
      outline: none;
      border: solid 1px #006bbd; }
    .check-application-status input[type='text']:placeholder-shown,
    .check-application-status input[type='email']:placeholder-shown,
    .check-application-status input[type='number']:placeholder-shown,
    .check-application-status input[type='password']:placeholder-shown {
      color: #bbb;
      border: solid 1px #d9d9d9; }
    .check-application-status input[type='text']:placeholder-shown:hover,
    .check-application-status input[type='email']:placeholder-shown:hover,
    .check-application-status input[type='number']:placeholder-shown:hover,
    .check-application-status input[type='password']:placeholder-shown:hover {
      outline: none;
      border: solid 1px #232636; }
    .check-application-status input[type='text']:placeholder-shown:focus,
    .check-application-status input[type='email']:placeholder-shown:focus,
    .check-application-status input[type='number']:placeholder-shown:focus,
    .check-application-status input[type='password']:placeholder-shown:focus {
      outline: none;
      border: solid 1px #006bbd; }
    .check-application-status input[type='text']:-ms-input-placeholder,
    .check-application-status input[type='email']:-ms-input-placeholder,
    .check-application-status input[type='number']:-ms-input-placeholder,
    .check-application-status input[type='password']:-ms-input-placeholder {
      color: #bbb; }
  .check-application-status .form-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: stretch;
        align-items: stretch; }
    @media screen and (min-width: 560px) {
      .check-application-status .form-container {
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-align: start;
            align-items: flex-start; } }
  .check-application-status .title {
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.13;
    font-size: 1.35em; }
    @media screen and (min-width: 560px) {
      .check-application-status .title {
        font-size: 2em; } }
  .check-application-status .email {
    -ms-flex-positive: 1;
        flex-grow: 1;
    margin-bottom: 16px; }
    @media screen and (min-width: 560px) {
      .check-application-status .email {
        margin-right: 4px; } }
  .check-application-status .label-container {
    margin-bottom: 2px; }
  .check-application-status .submit-button {
    background: transparent;
    border: 0;
    border-style: solid;
    border-width: 4px;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    margin-bottom: 16px; }
    .check-application-status .submit-button.primary {
      border-image-slice: 1;
      color: #c00;
      border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
      .check-application-status .submit-button.primary:hover {
        background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
        color: #fff; }
      .check-application-status .submit-button.primary:disabled {
        opacity: 0.35;
        cursor: not-allowed; }
        .check-application-status .submit-button.primary:disabled:hover {
          opacity: 0.35;
          background-image: inherit;
          color: #cc0000; }
    .check-application-status .submit-button.secondary {
      border-color: #e6e6e6;
      color: #6f6f6f; }
      .check-application-status .submit-button.secondary:hover {
        border-color: #6f6f6f; }
      .check-application-status .submit-button.secondary:disabled {
        border-color: #e6e6e6;
        color: #6f6f6f;
        cursor: not-allowed; }
        .check-application-status .submit-button.secondary:disabled:hover {
          border-color: #e6e6e6;
          color: #6f6f6f; }

/*# sourceMappingURL=maps/check-application-status.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.message {
  padding: 15px 18px;
  display: -ms-flexbox;
  display: flex; }
  .message-success {
    background-color: #d4edda;
    border: solid 1px #c3e6cb; }
    .message-success .text {
      color: #155724; }
    .message-success .close {
      opacity: .5;
      color: #155724; }
  .message .text {
    font-size: 16px;
    -ms-flex: 1 1;
        flex: 1 1; }
  .message .close {
    height: 24px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center; }
    .message .close:before {
      font-family: 'icomoon';
      content: "\e903";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 24px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }

/*# sourceMappingURL=maps/message.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.cost-overview {
  background: #f5f5f5;
  padding: 64px 0px;
  font-family: Poppins;
  margin: 80px auto 0 auto; }
  @media screen and (max-width: 991px) {
    .cost-overview {
      background: none;
      padding: 0 16px;
      margin-top: 0; } }
  .cost-overview .inner {
    max-width: 1100px;
    margin: 0 auto; }
    @media screen and (max-width: 959px) {
      .cost-overview .inner {
        max-width: 100%; } }
    @media screen and (max-width: 1200px) {
      .cost-overview .inner {
        max-width: 960px; } }
    .cost-overview .inner .first-col {
      width: 625px;
      float: left;
      margin-right: 135px; }
      @media screen and (max-width: 1200px) {
        .cost-overview .inner .first-col {
          width: 540px;
          margin-right: 40px; } }
      @media screen and (max-width: 991px) {
        .cost-overview .inner .first-col {
          width: auto;
          float: none;
          background: #f5f5f5;
          margin-left: -16px;
          margin-right: -16px;
          padding: 24px 16px 72px 16px; } }
      .cost-overview .inner .first-col h3.title {
        margin: 0 0 24px 0;
        font-size: 48px;
        font-weight: bold;
        line-height: 1.13;
        letter-spacing: -0.4px;
        text-align: left;
        color: #242637; }
        @media screen and (max-width: 991px) {
          .cost-overview .inner .first-col h3.title {
            font-size: 26px;
            font-weight: bold;
            line-height: 1.23;
            letter-spacing: -0.4px;
            text-align: left;
            color: #242637;
            padding: 1px 0; } }
      .cost-overview .inner .first-col .cost table.line-items {
        border-collapse: collapse;
        width: 100%;
        border-bottom: 2px solid #333;
        margin-bottom: 16px; }
        .cost-overview .inner .first-col .cost table.line-items tr {
          vertical-align: middle; }
          .cost-overview .inner .first-col .cost table.line-items tr td {
            padding-bottom: 8px; }
          .cost-overview .inner .first-col .cost table.line-items tr td.op {
            width: 11px;
            font-size: 24px;
            font-weight: 300;
            line-height: 1.33;
            letter-spacing: -0.5px;
            text-align: left;
            color: #767676;
            padding: 0 0 8px 0; }
            @media screen and (max-width: 991px) {
              .cost-overview .inner .first-col .cost table.line-items tr td.op {
                width: 8px;
                max-width: 8px;
                font-size: 18px;
                font-weight: 300;
                line-height: 1.33;
                letter-spacing: -0.5px;
                text-align: left;
                color: #767676; } }
          .cost-overview .inner .first-col .cost table.line-items tr td.price {
            width: 139px;
            font-size: 24px;
            font-weight: 300;
            line-height: 1.33;
            letter-spacing: -0.5px;
            text-align: right;
            text-align: right;
            color: #767676; }
            @media screen and (max-width: 991px) {
              .cost-overview .inner .first-col .cost table.line-items tr td.price {
                width: 85px;
                font-size: 18px; } }
          .cost-overview .inner .first-col .cost table.line-items tr td.desc {
            width: auto;
            padding-left: 20px;
            font-size: 12px;
            line-height: 1.33;
            text-align: left;
            color: #6f6f6f; }
            @media screen and (max-width: 991px) {
              .cost-overview .inner .first-col .cost table.line-items tr td.desc {
                font-size: 12px;
                padding-left: 32px; } }
      .cost-overview .inner .first-col .cost .avg {
        display: inline-block;
        margin-bottom: 16px; }
        .cost-overview .inner .first-col .cost .avg .price {
          height: 72px;
          font-size: 64px;
          font-weight: bold;
          line-height: 1.13;
          letter-spacing: -0.4px;
          text-align: left;
          color: #242637;
          margin-bottom: 4px; }
          @media screen and (max-width: 991px) {
            .cost-overview .inner .first-col .cost .avg .price {
              height: 34px;
              font-size: 30px;
              margin-bottom: 8px; } }
        .cost-overview .inner .first-col .cost .avg .label {
          display: block;
          height: 16px;
          font-size: 12px;
          line-height: 1.33;
          text-align: right;
          color: #6f6f6f; }
          @media screen and (max-width: 991px) {
            .cost-overview .inner .first-col .cost .avg .label {
              margin-top: 0; } }
      .cost-overview .inner .first-col .more-info {
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        color: #6f6f6f; }
        .cost-overview .inner .first-col .more-info .want {
          display: inline; }
          @media screen and (max-width: 991px) {
            .cost-overview .inner .first-col .more-info .want {
              display: block; } }
        .cost-overview .inner .first-col .more-info a.net-calculator,
        .cost-overview .inner .first-col .more-info a.net-calculator:link,
        .cost-overview .inner .first-col .more-info a.net-calculator:visited {
          color: #cc0000; }
        .cost-overview .inner .first-col .more-info a.net-calculator:after {
          font-family: 'icomoon';
          content: "\f08e";
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          font-size: 16px;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
        .cost-overview .inner .first-col .more-info a.net-calculator:after {
          color: #cc0000;
          margin-left: 5px; }
        .cost-overview .inner .first-col .more-info a.net-calculator:hover {
          color: #ec223a; }
          .cost-overview .inner .first-col .more-info a.net-calculator:hover:after {
            color: #ec223a; }
    .cost-overview .inner .second-col {
      width: 340px;
      float: right; }
      @media screen and (max-width: 991px) {
        .cost-overview .inner .second-col {
          width: auto;
          float: none; } }
      .cost-overview .inner .second-col .text-only-callout {
        margin-top: -104px; }
        @media screen and (max-width: 991px) {
          .cost-overview .inner .second-col .text-only-callout {
            max-width: 100%;
            margin-top: -48px; } }

/*# sourceMappingURL=maps/cost-overview.css.map */

.events-overview .button, .events-overview .date-block .day, .events-overview .date-block .month {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.events-overview {
  max-width: 530px;
  min-width: 250px;
  width: 100%; }
  .events-overview .title {
    margin-top: 0;
    margin-bottom: 32px; }
  .events-overview .button {
    background: transparent;
    border: 0;
    border-style: solid;
    border-width: 4px;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    display: block;
    padding: 16px; }
    .events-overview .button.primary {
      border-image-slice: 1;
      color: #c00;
      border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
      .events-overview .button.primary:hover {
        background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
        color: #fff; }
      .events-overview .button.primary:disabled {
        opacity: 0.35;
        cursor: not-allowed; }
        .events-overview .button.primary:disabled:hover {
          opacity: 0.35;
          background-image: inherit;
          color: #cc0000; }
    .events-overview .button.secondary {
      border-color: #e6e6e6;
      color: #6f6f6f; }
      .events-overview .button.secondary:hover {
        border-color: #6f6f6f; }
      .events-overview .button.secondary:disabled {
        border-color: #e6e6e6;
        color: #6f6f6f;
        cursor: not-allowed; }
        .events-overview .button.secondary:disabled:hover {
          border-color: #e6e6e6;
          color: #6f6f6f; }
  .events-overview .items {
    margin-bottom: 32px; }
  .events-overview .item {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
    cursor: pointer; }
    .events-overview .item:hover .item-title {
      color: #ec223a; }
    .events-overview .item .item-title {
      color: #232636;
      margin-top: 0;
      margin-bottom: 0; }
    .events-overview .item .left-container {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 96px;
      height: 96px; }
      @media screen and (min-width: 560px) {
        .events-overview .item .left-container {
          width: 104px;
          height: 104px; } }
      .events-overview .item .left-container img {
        width: 100%; }
    .events-overview .item .content {
      margin-left: 16px;
      overflow: hidden; }
    .events-overview .item .date {
      font-size: 12px;
      line-height: 1.33;
      color: #6f6f6f;
      text-transform: uppercase;
      margin-bottom: 4px; }
    .events-overview .item .description {
      line-height: 1.5;
      text-align: left;
      color: #6f6f6f;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden; }
  .events-overview .date-block {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(136deg, #d21718, #dd142b 46%, #780d42);
    text-align: center;
    padding: 14px 12px; }
    @media screen and (min-width: 560px) {
      .events-overview .date-block {
        padding: 18px 12px; } }
    .events-overview .date-block .day {
      font-size: 48px;
      line-height: 1.17;
      letter-spacing: -.4px;
      color: #fff; }
    .events-overview .date-block .month {
      font-size: 16px;
      line-height: 1.25;
      letter-spacing: -.4px;
      color: #fff; }

/*# sourceMappingURL=maps/events-overview.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.faculty-staff-profile-card {
  width: 100%;
  cursor: pointer; }
  @media screen and (min-width: 560px) {
    .faculty-staff-profile-card {
      max-width: 245px;
      margin: 10px; } }
  .faculty-staff-profile-card .picture {
    width: 100%;
    background: linear-gradient(to bottom right, #c5c5c5, white); }
  .faculty-staff-profile-card .stat-container {
    position: relative;
    width: calc(100% - 32px);
    margin: -62px auto auto auto;
    margin-bottom: 20px; }
  .faculty-staff-profile-card:hover .link {
    color: #ec223a;
    text-decoration: underline; }

/*# sourceMappingURL=maps/faculty-staff-profile-card.css.map */

.stat--subsite-home-page-hero .supertitle {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 500; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

a.stat:hover .redtext {
  text-decoration: underline; }

.stat {
  width: 100%;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 -3px 20px 0 rgba(0, 0, 0, 0.18);
  text-align: center;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column;
      flex-flow: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }
  @media screen and (min-width: 560px) {
    .stat {
      max-width: 245px;
      padding: 24px; } }
  .stat .number {
    margin: 0;
    margin-top: 7px;
    line-height: 1.13;
    color: #232636;
    width: 100%;
    letter-spacing: -.4px; }
  .stat .caption {
    font-size: 24px;
    color: #6f6f6f;
    margin-top: 16px; }
    .stat .caption:not(:last-child) {
      margin-bottom: 16px; }
  .stat .redtext {
    color: #c00;
    font-weight: bold; }
  .stat .attr {
    font-size: 12px;
    line-height: 1.33;
    text-align: center;
    color: #6f6f6f; }
  .stat--testimonial {
    max-width: 100%;
    padding: 16px; }
    @media screen and (min-width: 560px) {
      .stat--testimonial {
        padding: 10px; } }
    @media screen and (min-width: 992px) {
      .stat--testimonial {
        padding: 16px; } }
    .stat--testimonial .number {
      font-size: 16px;
      line-height: 1.25; }
      @media screen and (min-width: 560px) {
        .stat--testimonial .number {
          font-size: 14px; } }
      @media screen and (min-width: 992px) {
        .stat--testimonial .number {
          font-size: 16px; } }
    .stat--testimonial .caption {
      font-size: 12px;
      line-height: 1.33;
      margin-top: 8px; }
      .stat--testimonial .caption:not(:last-child) {
        margin-bottom: 8px; }
    .stat--testimonial .read-more {
      color: #c00; }
  .stat--faculty-staff-profile-card {
    padding: 16px;
    max-width: 100%;
    text-align: left;
    -ms-flex-align: start;
        align-items: flex-start; }
    .stat--faculty-staff-profile-card .name {
      letter-spacing: -.4px;
      font-size: 16px;
      line-height: 1.25;
      margin: 0;
      color: #232636;
      margin-bottom: 8px; }
    .stat--faculty-staff-profile-card .title {
      font-size: 12px;
      line-height: 1.33;
      margin-top: 0;
      margin-bottom: 4px; }
    .stat--faculty-staff-profile-card .link {
      font-size: 12px;
      color: #c00; }
  .stat--home-page {
    max-width: 160px;
    min-width: 160px;
    height: 160px;
    padding: 18px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
    margin-right: 0;
    margin-top: 15px;
    margin-bottom: 15px; }
    .stat--home-page .number {
      font-size: 32px;
      line-height: 1; }
    .stat--home-page .caption {
      font-size: 14px;
      line-height: 1; }
    @media screen and (min-width: 560px) {
      .stat--home-page {
        box-shadow: 0 -3px 20px 0 rgba(0, 0, 0, 0.18);
        max-width: 340px;
        min-width: 300px;
        padding: 24px;
        width: 100%;
        height: 344px;
        margin-right: 20px; }
        .stat--home-page .number {
          font-size: 64px;
          line-height: 5.25rem; }
        .stat--home-page .caption {
          font-size: 28px;
          line-height: 1; } }
  .stat--subsite-home-page-hero {
    display: block;
    text-align: left;
    max-width: 100%;
    padding: 16px;
    box-shadow: 0 -3px 72px 0 rgba(0, 0, 0, 0.18); }
    @media screen and (min-width: 560px) {
      .stat--subsite-home-page-hero {
        max-width: 475px;
        width: 475px;
        padding: 40px; } }
    .stat--subsite-home-page-hero .supertitle {
      margin: 0;
      font-size: 14px;
      line-height: 1.43;
      text-align: left;
      color: #6f6f6f; }
    .stat--subsite-home-page-hero .title {
      line-height: 1.17;
      letter-spacing: -.5px;
      margin-top: 0;
      margin-bottom: 16px;
      font-size: 24px; }
      @media screen and (min-width: 560px) {
        .stat--subsite-home-page-hero .title {
          font-size: 48px;
          margin-bottom: 24px; } }
    .stat--subsite-home-page-hero .caption {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 16px; }
    .stat--subsite-home-page-hero .actions {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: column;
          flex-flow: column; }
      @media screen and (min-width: 560px) {
        .stat--subsite-home-page-hero .actions {
          -ms-flex-pack: justify;
              justify-content: space-between;
          -ms-flex-flow: row;
              flex-flow: row; } }
  .stat--4-col {
    height: 100%;
    min-height: 240px; }
    @media screen and (min-width: 992px) {
      .stat--4-col {
        padding: 15px; } }
    @media screen and (min-width: 560px) {
      .stat--4-col .number {
        font-size: 30px; } }
    @media screen and (min-width: 1200px) {
      .stat--4-col .number {
        font-size: 50px; } }
    @media screen and (min-width: 560px) {
      .stat--4-col .caption {
        font-size: 18px;
        line-height: 1.2; } }
    @media screen and (min-width: 1200px) {
      .stat--4-col .caption {
        font-size: 22px; } }

.stats-3-up .stat--home-page {
  min-width: 245px;
  height: 245px; }
  .stats-3-up .stat--home-page .caption {
    font-size: 20px;
    line-height: 1.25; }

.stats-3-up .njit-flex-row .njit-flex-col {
  min-width: 245px; }

.stats-3-up .text-only-callout--homepage {
  min-width: 245px;
  min-height: 245px !important; }

@media screen and (min-width: 560px) {
  .stats-3-up .stat.stat--home-page {
    max-width: 245px;
    height: 245px; }
  .stats-3-up .njit-flex-row .njit-flex-col {
    min-width: 245px;
    margin-left: 20px !important;
    margin-right: 20px !important; }
  .stats-3-up .stat--home-page .number {
    font-size: 50px;
    line-height: 1; }
  .stats-3-up .text-only-callout--4-col {
    max-width: 245px;
    min-height: 264px;
    width: 100%;
    padding: 24px 24px 60px 24px; }
  .stats-3-up .text-only-callout--4-col h4 {
    font-size: 24px;
    line-height: 1.17; }
  .stats-3-up .text-only-callout--homepage {
    min-width: 245px;
    min-height: 245px !important; } }

.homepage-stats-row .njit-flex-col {
  min-width: 245px !important; }

/*# sourceMappingURL=maps/stat.css.map */

@charset "UTF-8";
.hero-option-1 .text-block .text-block-content {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal; }

.hero-option-1 .video-controls-overlay .play-video p, .hero-option-1 .text-block h5.title, .hero-option-1 .cta-block .cta-headline {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.hero-option-1 {
  position: relative; }
  .hero-option-1.video .video-controls-overlay {
    display: block; }
  @media screen and (min-width: 1200px) {
    .hero-option-1 {
      margin-right: 131px; } }
  .hero-option-1 .wrapper {
    display: block;
    padding-bottom: 0px;
    background-color: #f5f5f5; }
    @media screen and (min-width: 560px) {
      .hero-option-1 .wrapper {
        padding-bottom: 118px; } }
  .hero-option-1 .video-controls-overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%; }
    .hero-option-1 .video-controls-overlay .play-video {
      bottom: 0;
      color: #fff;
      width: 100%;
      text-align: center;
      padding: 14px 40px;
      display: -ms-flexbox;
      display: flex;
      position: static;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      height: 100%; }
      @media screen and (min-width: 560px) {
        .hero-option-1 .video-controls-overlay .play-video {
          background-color: rgba(0, 0, 0, 0.6);
          position: absolute;
          height: auto;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
      .hero-option-1 .video-controls-overlay .play-video::before {
        color: #fff; }
      .hero-option-1 .video-controls-overlay .play-video .label-play {
        text-transform: uppercase;
        position: relative;
        color: #fff;
        display: none; }
        @media screen and (min-width: 560px) {
          .hero-option-1 .video-controls-overlay .play-video .label-play {
            display: inline-block;
            min-width: 120px; } }
        @media screen and (min-width: 768px) {
          .hero-option-1 .video-controls-overlay .play-video .label-play::after {
            content: '|';
            margin: 0 15px; } }
      .hero-option-1 .video-controls-overlay .play-video .icon-play:before {
        font-family: 'icomoon';
        content: "\e904";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 16px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .hero-option-1 .video-controls-overlay .play-video .icon-play::before {
        display: block;
        margin-right: 0;
        border-radius: 80px;
        width: 80px;
        height: 80px;
        line-height: 80px;
        background: rgba(0, 0, 0, 0.5);
        font-size: 32px;
        margin-top: -50px;
        padding-left: 8px; }
        @media screen and (min-width: 560px) {
          .hero-option-1 .video-controls-overlay .play-video .icon-play::before {
            display: inline;
            margin-right: 8px;
            border-radius: initial;
            line-height: 1;
            background: rgba(0, 0, 0, 0.5);
            font-size: 16px;
            margin-top: 0;
            padding-left: 0; } }
      .hero-option-1 .video-controls-overlay .play-video p {
        display: none;
        color: #fff;
        max-width: 414px;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .hero-option-1 .video-controls-overlay .play-video p {
            display: inline-block;
            padding: 0;
            margin: 0;
            line-height: 1.25;
            text-align: left; } }
    .hero-option-1 .video-controls-overlay:hover {
      cursor: pointer; }
      .hero-option-1 .video-controls-overlay:hover .play-video .icon-play::before {
        background: rgba(204, 0, 0, 0.6); }
      @media screen and (min-width: 560px) {
        .hero-option-1 .video-controls-overlay:hover .play-video {
          background-color: rgba(204, 0, 0, 0.6); }
          .hero-option-1 .video-controls-overlay:hover .play-video .icon-play::before {
            background: initial; } }
    .hero-option-1 .video-controls-overlay--home-page-hero .play-video .icon-play:before {
      font-family: 'icomoon';
      content: "\e904";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 80px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .hero-option-1 .video-controls-overlay--home-page-hero .play-video .icon-play::before {
      display: block;
      margin-right: 0;
      border-radius: 175px;
      width: 175px;
      height: 175px;
      line-height: 175px;
      padding-left: 20px;
      margin-top: 0; }
      @media screen and (min-width: 560px) {
        .hero-option-1 .video-controls-overlay--home-page-hero .play-video .icon-play::before {
          display: inline;
          margin-right: 8px;
          border-radius: initial;
          line-height: 1;
          background: rgba(0, 0, 0, 0.5);
          font-size: 20px;
          padding-left: 0; } }
    .hero-option-1 .video-controls-overlay .play-video .icon-play:before {
      margin-top: 0; }
    .hero-option-1 .video-controls-overlay .play-video p {
      max-width: 380px; }
  .hero-option-1 .image-wrapper {
    max-width: 1270px;
    position: relative; }
    @media screen and (min-width: 560px) {
      .hero-option-1 .image-wrapper {
        width: 100%;
        margin-left: auto;
        margin-right: 0; } }
    @media screen and (min-width: 1200px) {
      .hero-option-1 .image-wrapper {
        margin-right: -131px; } }
    .hero-option-1 .image-wrapper .image {
      position: relative;
      width: 100%;
      height: 240px;
      background-position: center;
      background-size: cover; }
      @media screen and (min-width: 560px) {
        .hero-option-1 .image-wrapper .image {
          height: 482px; } }
  .hero-option-1 .text-block {
    padding: 24px 16px 48px 16px;
    background-color: #f5f5f5; }
    @media screen and (min-width: 560px) {
      .hero-option-1 .text-block {
        background: transparent;
        max-width: 1270px;
        width: 100%;
        margin-left: auto;
        margin-top: -118px; } }
    @media screen and (min-width: 1080px) {
      .hero-option-1 .text-block {
        margin-right: -130px;
        padding-left: 0; } }
    @media screen and (min-width: 560px) {
      .hero-option-1 .text-block .text-wrapper {
        width: calc(100% - 40px - 260px); } }
    @media screen and (min-width: 992px) {
      .hero-option-1 .text-block .text-wrapper {
        width: calc(100% - 60px - 435px - 170px);
        max-width: none; } }
    @media screen and (min-width: 1440px) {
      .hero-option-1 .text-block .text-wrapper {
        width: 605px;
        max-width: 605px; } }
    .hero-option-1 .text-block h5.title {
      font-size: 26px;
      line-height: 1.23;
      color: #232636;
      margin: 0 0 16px 0;
      letter-spacing: -0.4px; }
      @media screen and (min-width: 992px) {
        .hero-option-1 .text-block h5.title {
          line-height: 57px;
          font-size: 48px; } }
    .hero-option-1 .text-block .text-block-content {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.33;
      letter-spacing: -0.5px;
      text-align: left;
      color: #767676; }
      @media screen and (min-width: 992px) {
        .hero-option-1 .text-block .text-block-content {
          font-size: 24px;
          line-height: 1.33; } }
  .hero-option-1 .cta-block {
    background-image: linear-gradient(to bottom, #d11717, #e00e1f 35%, #dd152d 51%, #750d42);
    margin: 0 16px;
    padding: 24px;
    margin-top: -24px;
    transition: all .3s;
    transition-delay: .3s; }
    @media screen and (min-width: 560px) {
      .hero-option-1 .cta-block {
        width: 260px;
        margin: 0;
        position: absolute;
        right: 16px;
        top: 360px; } }
    @media screen and (min-width: 992px) {
      .hero-option-1 .cta-block {
        width: 435px;
        padding: 36px;
        right: 40px;
        margin: 0; } }
    .hero-option-1 .cta-block .cta-headline {
      font-size: 22px;
      font-weight: bold;
      line-height: 1.09;
      letter-spacing: -0.4px;
      text-align: left;
      color: #fff; }
      @media screen and (min-width: 992px) {
        .hero-option-1 .cta-block .cta-headline {
          width: 100%;
          padding: 0;
          font-size: 32px;
          font-weight: bold;
          line-height: 1.13;
          letter-spacing: -0.4px;
          text-align: left;
          color: #fff; } }
      .hero-option-1 .cta-block .cta-headline p {
        color: #fff;
        margin-bottom: 24px; }
        @media screen and (min-width: 992px) {
          .hero-option-1 .cta-block .cta-headline p {
            margin-bottom: 36px; } }
      .hero-option-1 .cta-block .cta-headline .button {
        text-align: center;
        font-size: 16px;
        padding: 16px 0;
        color: #fff;
        border: solid 4px #fff;
        display: block;
        background-color: transparent;
        text-transform: uppercase;
        width: 100%; }
        .hero-option-1 .cta-block .cta-headline .button:hover {
          color: #c00;
          background-color: #fff; }
        .hero-option-1 .cta-block .cta-headline .button.first {
          margin-bottom: 10px; }
          @media screen and (min-width: 560px) {
            .hero-option-1 .cta-block .cta-headline .button.first {
              margin-bottom: 10px;
              margin-right: 10px; } }
          @media screen and (min-width: 992px) {
            .hero-option-1 .cta-block .cta-headline .button.first {
              margin-bottom: 0; } }
        @media screen and (min-width: 992px) {
          .hero-option-1 .cta-block .cta-headline .button {
            float: left;
            width: calc(50% - 5px); } }
  .hero-option-1 .video {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 20;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    .hero-option-1 .video .video-embed-field-responsive-video {
      position: absolute;
      max-width: 1100px;
      max-height: 476px;
      padding: 0;
      box-sizing: content-box;
      overflow: visible;
      width: 95%;
      height: 80%;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
      @media screen and (min-width: 560px) {
        .hero-option-1 .video .video-embed-field-responsive-video {
          background-color: #fff;
          padding: 20px;
          width: 100%;
          height: 100%; } }
      .hero-option-1 .video .video-embed-field-responsive-video iframe {
        position: static; }
    .hero-option-1 .video span.close {
      position: absolute;
      right: 0;
      color: #fff;
      top: -54px;
      margin-top: 0px;
      padding-top: 0px;
      font-size: 0; }
      .hero-option-1 .video span.close:before {
        font-family: 'icomoon';
        content: "\e903";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 29px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .hero-option-1 .video span.close:hover {
        cursor: pointer; }
      .hero-option-1 .video span.close:before {
        height: 29px;
        width: 29px;
        line-height: 56px; }

/*# sourceMappingURL=maps/hero-option-1.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.flippable-card {
  width: 100%;
  height: calc(100vw - 32px);
  position: relative;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  cursor: pointer; }
  @media screen and (min-width: 560px) {
    .flippable-card {
      width: 340px;
      height: 340px; } }
  .flippable-card-inner {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.18);
    position: absolute;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    transition: -webkit-transform .8s;
    transition: transform .8s;
    transition: transform .8s, -webkit-transform .8s;
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: translateZ(0);
            transform: translateZ(0); }
  @media screen and (min-width: 560px) {
    .flippable-card:hover .flippable-card-inner {
      -webkit-transform: translateX(-100%) rotateY(-180deg);
              transform: translateX(-100%) rotateY(-180deg); } }
  .flippable-card .title {
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: -.4px;
    text-align: left;
    color: #fff;
    margin: 0; }
  .flippable-card .front-card {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 32px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden; }
  .flippable-card .description {
    margin-top: 0;
    margin-bottom: 16px; }
  .flippable-card .link {
    color: #ec223a; }
  .flippable-card .background-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(308deg, rgba(36, 38, 55, 0.1), rgba(36, 38, 55, 0.3) 26%, rgba(36, 38, 55, 0.5) 53%, rgba(36, 38, 55, 0.75));
    z-index: -1;
    top: 0;
    left: 0; }
  .flippable-card .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
    z-index: -2; }
  .flippable-card .back-card {
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 32px;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding: 32px;
    backface-visibility: hidden;
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    z-index: 1; }

/*# sourceMappingURL=maps/flippable-card.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.hero-small-image .content {
  background-color: #f5f5f5; }

@media screen and (min-width: 560px) {
  .hero-small-image::after {
    clear: both;
    content: "";
    display: table; } }

.hero-small-image .image-wrapper {
  text-align: center;
  max-height: 355px;
  overflow: hidden;
  height: 67vw; }
  @media screen and (min-width: 560px) {
    .hero-small-image .image-wrapper {
      float: left;
      height: auto;
      margin-top: 16px;
      max-height: none; } }
  .hero-small-image .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
    @media screen and (min-width: 560px) {
      .hero-small-image .image-wrapper img {
        height: auto;
        max-width: 260px; } }
    @media screen and (min-width: 768px) {
      .hero-small-image .image-wrapper img {
        max-width: 416px; } }

.hero-small-image .text-block {
  padding: 16px 16px 24px; }
  @media screen and (min-width: 560px) {
    .hero-small-image .text-block {
      margin-left: 260px; } }
  @media screen and (min-width: 768px) {
    .hero-small-image .text-block {
      padding: 24px 24px 38px 40px;
      margin-left: 416px;
      min-height: 278px; } }
  .hero-small-image .text-block .subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.43;
    padding: 0;
    color: #6f6f6f; }
  .hero-small-image .text-block .title {
    font-size: 30px;
    line-height: 1.2;
    margin: 0;
    padding: 16px 0;
    max-width: 815px; }
    @media screen and (min-width: 560px) {
      .hero-small-image .text-block .title {
        font-size: 48px;
        line-height: 1.12; } }
  .hero-small-image .text-block .text-block-content {
    font-size: 20px;
    line-height: 1.2;
    color: #6f6f6f;
    max-width: 720px; }
    .hero-small-image .text-block .text-block-content p a {
      font-size: 1em; }
    @media screen and (min-width: 560px) {
      .hero-small-image .text-block .text-block-content {
        font-size: 24px;
        font-weight: 300;
        line-height: 1.33; } }

/*# sourceMappingURL=maps/hero-small-image.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.hero-text-only .content {
  max-width: 815px; }

@media screen and (min-width: 768px) {
  .hero-text-only::after {
    clear: both;
    content: "";
    display: table; } }

.hero-text-only .title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.23;
  margin-bottom: 24px; }
  @media screen and (min-width: 768px) {
    .hero-text-only .title {
      font-size: 48px;
      line-height: 1.12;
      margin-bottom: 31px; } }

.hero-text-only .text-block-content {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.33;
  color: #767676; }
  @media screen and (min-width: 768px) {
    .hero-text-only .text-block-content {
      font-size: 24px;
      line-height: 1.33; } }

/*# sourceMappingURL=maps/hero-text-only.css.map */

@charset "UTF-8";
.home-page-hero .video-controls-overlay .play-video p {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@media screen and (min-width: 560px) {
  .home-page-hero {
    display: -ms-flexbox;
    display: flex; } }

.home-page-hero #homepage-hero-video-wrapper {
  height: 100%; }

.home-page-hero .majors-navigation-container {
  display: none;
  position: fixed;
  z-index: 10;
  top: 136px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
  padding-top: 8px;
  padding-bottom: 8px; }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors-navigation-container {
      display: block; } }

.home-page-hero .majors-navigation {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  padding: 0 10px !important; }
  @media screen and (min-width: 560px) {
    .home-page-hero .majors-navigation {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 768px) {
    .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 720px; } }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 1200px) {
    .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }
  .home-page-hero .majors-navigation > * {
    margin: 0 8px; }

.home-page-hero .majors-mobile {
  overflow-x: scroll;
  overflow-y: hidden;
  height: 50px;
  position: fixed;
  z-index: 1;
  top: 52px;
  background: #fff;
  box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
  width: 100%; }
  .home-page-hero .majors-mobile .majors-mobile-navigation {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: end;
        align-items: flex-end;
    height: 100%; }
  .home-page-hero .majors-mobile .link {
    color: #6f6f6f;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 2px;
    white-space: nowrap;
    border-bottom: 4px solid #f5f5f5;
    text-decoration: none; }
    .home-page-hero .majors-mobile .link.active {
      font-weight: bold;
      color: #232636;
      letter-spacing: -.3px;
      border-bottom: 4px solid #c00; }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors-mobile {
      display: none; } }

.home-page-hero .picture-container {
  position: relative;
  height: 100%; }
  @media screen and (min-width: 560px) {
    .home-page-hero .picture-container {
      max-width: 500px;
      margin-right: 25px; } }
  @media screen and (min-width: 992px) {
    .home-page-hero .picture-container {
      margin-right: 55px;
      max-width: 645px; } }

.home-page-hero .title {
  font-size: 32px;
  line-height: 1.13;
  letter-spacing: -.4px;
  margin-top: 5px;
  margin-bottom: 16px;
  color: #232636; }
  @media screen and (min-width: 560px) {
    .home-page-hero .title {
      font-size: 40px;
      line-height: 1.06;
      margin-top: 10px;
      margin-bottom: 60px; } }
  @media screen and (min-width: 992px) {
    .home-page-hero .title {
      font-size: 56px; } }
  @media screen and (min-width: 1200px) {
    .home-page-hero .title {
      font-size: 65px; } }

.home-page-hero .picture {
  max-width: 100%;
  position: relative;
  z-index: 0; }

.home-page-hero .video-controls-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0; }
  .home-page-hero .video-controls-overlay .play-video {
    bottom: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay .play-video {
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        height: auto;
        -ms-flex-pack: start;
            justify-content: flex-start; } }
    .home-page-hero .video-controls-overlay .play-video::before {
      color: #fff; }
    .home-page-hero .video-controls-overlay .play-video .label-play {
      text-transform: uppercase;
      position: relative;
      color: #fff;
      display: none; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .label-play {
          display: inline-block;
          min-width: 120px; } }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video .label-play::after {
          content: '|';
          margin: 0 15px; } }
    .home-page-hero .video-controls-overlay .play-video .icon-play:before {
      font-family: 'icomoon';
      content: "\e904";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 16px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .home-page-hero .video-controls-overlay .play-video .icon-play::before {
      display: block;
      margin-right: 0;
      border-radius: 80px;
      width: 80px;
      height: 80px;
      line-height: 80px;
      background: rgba(0, 0, 0, 0.5);
      font-size: 32px;
      margin-top: -50px;
      padding-left: 8px; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .icon-play::before {
          display: inline;
          margin-right: 8px;
          border-radius: initial;
          line-height: 1;
          background: rgba(0, 0, 0, 0.5);
          font-size: 16px;
          margin-top: 0;
          padding-left: 0; } }
    .home-page-hero .video-controls-overlay .play-video p {
      display: none;
      color: #fff;
      max-width: 414px;
      width: 100%; }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video p {
          display: inline-block;
          padding: 0;
          margin: 0;
          line-height: 1.25;
          text-align: left; } }
  .home-page-hero .video-controls-overlay:hover {
    cursor: pointer; }
    .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
      background: rgba(204, 0, 0, 0.6); }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay:hover .play-video {
        background-color: rgba(204, 0, 0, 0.6); }
        .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
          background: initial; } }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play:before {
    font-family: 'icomoon';
    content: "\e904";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 80px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
    display: block;
    margin-right: 0;
    border-radius: 175px;
    width: 175px;
    height: 175px;
    line-height: 175px;
    padding-left: 20px;
    margin-top: 0; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
        display: inline;
        margin-right: 8px;
        border-radius: initial;
        line-height: 1;
        background: rgba(0, 0, 0, 0.5);
        font-size: 20px;
        padding-left: 0; } }

.home-page-hero .video .video-controls-overlay {
  display: block; }

.home-page-hero .video-controls-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%; }
  .home-page-hero .video-controls-overlay .play-video {
    bottom: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay .play-video {
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        height: auto;
        -ms-flex-pack: start;
            justify-content: flex-start; } }
    .home-page-hero .video-controls-overlay .play-video::before {
      color: #fff; }
    .home-page-hero .video-controls-overlay .play-video .label-play {
      text-transform: uppercase;
      position: relative;
      color: #fff;
      display: none; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .label-play {
          display: inline-block;
          min-width: 120px; } }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video .label-play::after {
          content: '|';
          margin: 0 15px; } }
    .home-page-hero .video-controls-overlay .play-video .icon-play:before {
      font-family: 'icomoon';
      content: "\e904";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 16px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .home-page-hero .video-controls-overlay .play-video .icon-play::before {
      display: block;
      margin-right: 0;
      border-radius: 80px;
      width: 80px;
      height: 80px;
      line-height: 80px;
      background: rgba(0, 0, 0, 0.5);
      font-size: 32px;
      margin-top: -50px;
      padding-left: 8px; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .icon-play::before {
          display: inline;
          margin-right: 8px;
          border-radius: initial;
          line-height: 1;
          background: rgba(0, 0, 0, 0.5);
          font-size: 16px;
          margin-top: 0;
          padding-left: 0; } }
    .home-page-hero .video-controls-overlay .play-video p {
      display: none;
      color: #fff;
      max-width: 414px;
      width: 100%; }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video p {
          display: inline-block;
          padding: 0;
          margin: 0;
          line-height: 1.25;
          text-align: left; } }
  .home-page-hero .video-controls-overlay:hover {
    cursor: pointer; }
    .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
      background: rgba(204, 0, 0, 0.6); }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay:hover .play-video {
        background-color: rgba(204, 0, 0, 0.6); }
        .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
          background: initial; } }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play:before {
    font-family: 'icomoon';
    content: "\e904";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 80px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
    display: block;
    margin-right: 0;
    border-radius: 175px;
    width: 175px;
    height: 175px;
    line-height: 175px;
    padding-left: 20px;
    margin-top: 0; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
        display: inline;
        margin-right: 8px;
        border-radius: initial;
        line-height: 1;
        background: rgba(0, 0, 0, 0.5);
        font-size: 20px;
        padding-left: 0; } }
  .home-page-hero .video-controls-overlay .play-video .icon-play:before {
    margin-top: 0; }
  .home-page-hero .video-controls-overlay .play-video p {
    max-width: 380px; }

.home-page-hero .video {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }
  .home-page-hero .video .video-embed-field-responsive-video {
    position: absolute;
    max-width: 1100px;
    max-height: 476px;
    padding: 0;
    box-sizing: content-box;
    overflow: visible;
    width: 95%;
    height: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media screen and (min-width: 560px) {
      .home-page-hero .video .video-embed-field-responsive-video {
        background-color: #fff;
        padding: 20px;
        width: 100%;
        height: 100%; } }
    .home-page-hero .video .video-embed-field-responsive-video iframe {
      position: static; }
  .home-page-hero .video span.close {
    position: absolute;
    right: 0;
    color: #fff;
    top: -54px;
    margin-top: 0px;
    padding-top: 0px;
    font-size: 0; }
    .home-page-hero .video span.close:before {
      font-family: 'icomoon';
      content: "\e903";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 29px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .home-page-hero .video span.close:hover {
      cursor: pointer; }
    .home-page-hero .video span.close:before {
      height: 29px;
      width: 29px;
      line-height: 56px; }

.home-page-hero .content {
  position: relative;
  margin-top: -48px;
  margin-left: 16px;
  margin-right: 16px;
  padding: 16px;
  background: #fff; }
  @media screen and (min-width: 560px) {
    .home-page-hero .content {
      padding: 0;
      margin: 0;
      position: static;
      max-width: 570px; } }

.home-page-hero .description {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: -.4px;
  color: #232636; }
  @media screen and (min-width: 560px) {
    .home-page-hero .description {
      font-size: 24px;
      line-height: 1.33;
      margin-bottom: 16px; } }

.home-page-hero .explore-degrees {
  color: #c00; }
  .home-page-hero .explore-degrees:after {
    font-family: 'icomoon';
    content: "\f061";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 20px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .home-page-hero .explore-degrees:hover {
    color: #ec223a; }
  .home-page-hero .explore-degrees::after {
    margin-left: 4px; }

.home-page-hero .majors {
  display: none; }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -9px; }
      .home-page-hero .majors > * {
        margin-right: 9px;
        margin-left: 9px;
        margin-bottom: 18px; } }

.home-page-hero .button {
  border: 1px solid #d9d9d9;
  border-radius: 11px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #6f6f6f;
  width: 178px;
  height: 72px;
  padding: 12px 23px;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all .2s;
  cursor: pointer; }
  .home-page-hero .button.active {
    border-image-slice: 1;
    background-image: linear-gradient(292deg, #e00e1f, #dd152d 47%, #750d42);
    color: #fff;
    border-color: transparent; }
  .home-page-hero .button:hover:not(.active) {
    color: #232636;
    border-color: #232636; }
  .home-page-hero .button--navigation {
    font-size: 16px;
    line-height: 1.25;
    width: 170px;
    height: 56px;
    padding: 6px 19px; }
  .home-page-hero .button--content {
    font-size: 20px;
    line-height: 1.2;
    width: 178px;
    height: 72px;
    padding: 12px 24px; }

@media screen and (min-width: 560px) {
  .home-page-hero .video .video-embed-field-responsive-video {
    background-color: #fff;
    padding: 20px;
    width: 80%;
    height: 100%;
    max-height: initial;
    height: initial; } }

.home-page-hero #homepage-hero-video-wrapper {
  height: initial;
  padding-top: 56.25%;
  position: relative; }

.home-page-hero .video .video-embed-field-responsive-video iframe {
  position: absolute; }

/*# sourceMappingURL=maps/home-page-hero.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.illustrated-callout {
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: initial;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px; }
  @media screen and (min-width: 560px) {
    .illustrated-callout {
      width: 100%;
      max-width: initial;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px;
      margin-top: initial; } }
  @media screen and (min-width: 768px) {
    .illustrated-callout {
      max-width: 33.3333%;
      margin-bottom: initial;
      margin-top: 140px; } }
  @media screen and (min-width: 992px) {
    .illustrated-callout {
      max-width: 340px;
      margin-bottom: initial;
      margin-top: 140px; } }
  @media screen and (min-width: 1200px) {
    .illustrated-callout {
      max-width: 340px;
      margin-bottom: initial;
      margin-top: 140px; } }
  .illustrated-callout .illustration {
    display: block;
    max-width: 52%;
    margin-bottom: 45px;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (min-width: 560px) {
      .illustrated-callout .illustration {
        margin-bottom: 0px;
        max-width: 300px; } }
  .illustrated-callout .title {
    line-height: 1.17;
    letter-spacing: -0.4px;
    margin-top: 0;
    margin-bottom: 16px;
    padding: 0 24px; }
    @media screen and (min-width: 560px) {
      .illustrated-callout .title {
        margin-bottom: 19px; } }
  .illustrated-callout .link {
    display: block;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.4px;
    color: #c00; }
    .illustrated-callout .link:after {
      font-family: 'icomoon';
      content: "\f061";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 18px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .illustrated-callout .link:hover {
      color: #ec223a; }
    .illustrated-callout .link::after {
      margin-left: 8px; }

/*# sourceMappingURL=maps/illustrated-callout.css.map */

@charset "UTF-8";
.local-navigation [data-collapsible-toggle], .local-navigation .menu .active > a {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.local-navigation {
  width: 100%;
  max-width: 100%;
  background: #f5f5f5; }
  @media screen and (min-width: 560px) {
    .local-navigation {
      width: 100%;
      max-width: 100%; } }
  @media screen and (min-width: 992px) {
    .local-navigation {
      background: transparent;
      padding: 0; } }
  .local-navigation.open [data-collapsible-toggle]:after {
    font-family: 'icomoon';
    content: "\f077";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 16px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .local-navigation:not(.open) [data-collapsible-toggle]:after {
    font-family: 'icomoon';
    content: "\f078";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 16px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .local-navigation [data-collapsible-toggle] {
    position: relative;
    padding: 12px 16px; }
    .local-navigation [data-collapsible-toggle]::after {
      color: #c00;
      position: absolute;
      right: 16px; }
    @media screen and (min-width: 992px) {
      .local-navigation [data-collapsible-toggle] {
        display: none; } }
  .local-navigation [data-collapsible-content] {
    transition: max-height .4s;
    max-height: 0;
    overflow: hidden; }
    @media screen and (min-width: 992px) {
      .local-navigation [data-collapsible-content] {
        max-height: 3000px; } }
  .local-navigation.open [data-collapsible-content] {
    max-height: 3000px; }
  .local-navigation .parent {
    display: -ms-flexbox;
    display: flex; }
    @media screen and (min-width: 992px) {
      .local-navigation .parent {
        font-weight: bold;
        -ms-flex-align: center;
            align-items: center;
        position: relative;
        margin-left: 3px; }
        .local-navigation .parent:before {
          font-family: 'icomoon';
          content: "\f053";
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          font-size: 16px;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; } }
    .local-navigation .parent:hover {
      color: #ec223a; }
    .local-navigation .parent:hover::before {
      color: #ec223a; }
    .local-navigation .parent::before {
      color: #c00;
      position: absolute;
      left: -4px; }
  @media screen and (min-width: 992px) {
    .local-navigation {
      display: block;
      max-width: 269px; } }
  .local-navigation .title {
    line-height: 1.13;
    margin-bottom: 24px;
    margin-top: 0; }
  .local-navigation li {
    margin: 0;
    padding: 0; }
  .local-navigation li:not(.active) a:hover {
    color: #ec223a; }
  .local-navigation a {
    color: #232636;
    padding: 12px;
    display: block;
    line-height: 1.25; }
  .local-navigation .menu--submenu {
    display: none; }
    @media screen and (min-width: 992px) {
      .local-navigation .menu--submenu {
        margin-top: 16px;
        margin-bottom: 16px;
        margin-left: 12px;
        border-left: 2px solid #bdbdc2; }
        .local-navigation .menu--submenu li:first-child a {
          padding-top: 0; }
        .local-navigation .menu--submenu li:last-child a {
          padding-bottom: 0; } }
  .local-navigation .menu > li {
    padding: 0 0 0 16px;
    list-style-type: none;
    list-style-image: none; }
    .local-navigation .menu > li li {
      border-bottom: 1px solid rgba(187, 187, 187, 0.25); }
      @media screen and (min-width: 992px) {
        .local-navigation .menu > li li {
          border-bottom: 0;
          padding: 0; } }
    @media screen and (min-width: 992px) {
      .local-navigation .menu > li {
        border-bottom: 0;
        padding: 0; } }
    .local-navigation .menu > li:last-child {
      border: 0; }
      .local-navigation .menu > li:last-child > a {
        border: 0; }
    .local-navigation .menu > li > a {
      max-width: 253px;
      padding: 16px 5px; }
      @media screen and (min-width: 992px) {
        .local-navigation .menu > li > a {
          padding: 12px; } }
    .local-navigation .menu > li .menu--submenu li {
      padding: 0 0 0 16px; }
  .local-navigation .menu .active > a {
    cursor: default;
    background-color: #f5f5f5; }
  .local-navigation .menu .active .menu--submenu {
    display: block; }
  @media screen and (min-width: 992px) {
    .local-navigation .active-with-children > *:not(.active) {
      display: block; }
    .local-navigation .active-with-children .active > *:not(.menu--submenu) {
      display: block; }
    .local-navigation .active-with-children li.expanded {
      list-style-image: none; } }

/*# sourceMappingURL=maps/local-navigation.css.map */

@charset "UTF-8";
.navigator-mobile .open > a, .navigator-desktop [data-level] li .active {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.navigator-mobile {
  margin: 0 -16px; }
  @media screen and (min-width: 560px) {
    .navigator-mobile {
      margin: 0; } }
  .navigator-mobile .has-children {
    transition: background-color .2s; }
  .navigator-mobile li:not(.has-children) > a {
    color: #c00;
    border-bottom: 0; }
    .navigator-mobile li:not(.has-children) > a:hover {
      color: #ec223a; }
    .navigator-mobile li:not(.has-children) > a::after {
      content: initial; }
  .navigator-mobile li:not(.has-children):last-child a {
    border-bottom: 1px solid rgba(150, 150, 150, 0.25); }
  .navigator-mobile .open {
    background-color: #f5f5f5; }
    .navigator-mobile .open > a:after {
      font-family: 'icomoon';
      content: "\f077";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 12px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .navigator-mobile .open > ul {
      display: block;
      -webkit-animation: .5s accordion-open;
              animation: .5s accordion-open;
      overflow: hidden; }
      .navigator-mobile .open > ul a {
        padding-left: 32px; }
        .navigator-mobile .open > ul a::after {
          color: #6f6f6f; }
  .navigator-mobile li {
    list-style: none;
    line-height: 1.38; }
    .navigator-mobile li a {
      color: #232636;
      padding-top: 15px;
      padding-bottom: 15px;
      padding-left: 16px;
      padding-right: 32px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: justify;
          justify-content: space-between;
      border-bottom: 1px solid rgba(150, 150, 150, 0.25); }
      .navigator-mobile li a:after {
        font-family: 'icomoon';
        content: "\f078";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 12px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .navigator-mobile li a:hover {
        color: #ec223a; }
        .navigator-mobile li a:hover::after {
          color: #ec223a; }
      .navigator-mobile li a::after {
        color: #c00; }
    .navigator-mobile li ul {
      display: none; }

.navigator-desktop-inner {
  display: -ms-flexbox;
  display: flex; }

.navigator-desktop [data-level] {
  width: 285px;
  border-right: 4px solid #f5f5f5;
  padding-right: 18px;
  padding-left: 18px; }
  .navigator-desktop [data-level] li {
    list-style: none;
    line-height: 1.5; }
    .navigator-desktop [data-level] li a {
      padding: 12px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: justify;
          justify-content: space-between; }
    .navigator-desktop [data-level] li .active {
      background: #f5f5f5; }
      .navigator-desktop [data-level] li .active:after {
        font-family: 'icomoon';
        content: "\f054";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 12px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .navigator-desktop [data-level] li .active::after {
        float: right;
        color: #c00; }

.navigator-desktop [data-level]:not(.last-level) a {
  color: #232636; }
  .navigator-desktop [data-level]:not(.last-level) a:hover {
    color: #ec223a; }
    .navigator-desktop [data-level]:not(.last-level) a:hover:after {
      font-family: 'icomoon';
      content: "\f054";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 12px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }

.navigator-desktop .last-level {
  border-right: 0;
  width: 300px; }
  .navigator-desktop .last-level li a {
    color: #c00;
    padding: 12px 0; }
    .navigator-desktop .last-level li a:hover {
      text-decoration: underline; }

/*# sourceMappingURL=maps/navigator.css.map */

.scrollspy-in-page-navigation .menu .active {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.scrollspy-in-page-navigation-container {
  height: calc(100% - 150px); }

.scrollspy-in-page-navigation {
  display: none; }
  @media screen and (min-width: 560px) {
    .scrollspy-in-page-navigation {
      display: block; } }
  .scrollspy-in-page-navigation .title {
    line-height: 1.13;
    margin-bottom: 24px;
    margin-top: 0; }
  .scrollspy-in-page-navigation .menu {
    list-style: none;
    min-width: 245px; }
    .scrollspy-in-page-navigation .menu li {
      margin: 0;
      padding: 0; }
    .scrollspy-in-page-navigation .menu a {
      color: #232636;
      padding: 12px;
      display: block;
      line-height: 1.25; }
      .scrollspy-in-page-navigation .menu a:hover {
        color: #ec223a; }
    .scrollspy-in-page-navigation .menu .active {
      background-color: #f5f5f5; }

/*# sourceMappingURL=maps/scrollspy-in-page-navigation.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.search-modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: none;
  overflow: hidden;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98); }
  .search-modal .close-btn {
    width: 24px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
    background: url(../images/search/icon-close.png);
    background-size: 24px 24px;
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 16px; }
    .search-modal .close-btn:hover {
      background: url(../images/search/icon-close-hover.png);
      background-size: 24px 24px; }
  .search-modal .form-item, .search-modal .form-actions {
    margin-top: 0;
    margin-bottom: 0; }
  .search-modal .inner {
    padding: 64px 16px; }
    .search-modal .inner .search-form .form-type-textfield label {
      display: block !important; }
      .search-modal .inner .search-form .form-type-textfield label.error {
        color: #f60; }
    .search-modal .inner .search-form .form-type-textfield input + label,
    .search-modal .inner .search-form .form-type-textfield div {
      margin-top: 4px; }
    .search-modal .inner .search-form input[type='text'],
    .search-modal .inner .search-form input[type='email'],
    .search-modal .inner .search-form input[type='number'],
    .search-modal .inner .search-form input[type='password'] {
      height: 48px;
      padding: 12px;
      border: solid 1px #d9d9d9;
      transition: border 0.5s; }
      .search-modal .inner .search-form input[type='text'].error,
      .search-modal .inner .search-form input[type='email'].error,
      .search-modal .inner .search-form input[type='number'].error,
      .search-modal .inner .search-form input[type='password'].error {
        border: solid 1px #f60 !important; }
      .search-modal .inner .search-form input[type='text']:hover,
      .search-modal .inner .search-form input[type='email']:hover,
      .search-modal .inner .search-form input[type='number']:hover,
      .search-modal .inner .search-form input[type='password']:hover {
        outline: none;
        border: solid 1px #232636; }
      .search-modal .inner .search-form input[type='text']:focus,
      .search-modal .inner .search-form input[type='email']:focus,
      .search-modal .inner .search-form input[type='number']:focus,
      .search-modal .inner .search-form input[type='password']:focus {
        outline: none;
        border: solid 1px #006bbd; }
      .search-modal .inner .search-form input[type='text']:placeholder-shown,
      .search-modal .inner .search-form input[type='email']:placeholder-shown,
      .search-modal .inner .search-form input[type='number']:placeholder-shown,
      .search-modal .inner .search-form input[type='password']:placeholder-shown {
        color: #bbb;
        border: solid 1px #d9d9d9; }
      .search-modal .inner .search-form input[type='text']:placeholder-shown:hover,
      .search-modal .inner .search-form input[type='email']:placeholder-shown:hover,
      .search-modal .inner .search-form input[type='number']:placeholder-shown:hover,
      .search-modal .inner .search-form input[type='password']:placeholder-shown:hover {
        outline: none;
        border: solid 1px #232636; }
      .search-modal .inner .search-form input[type='text']:placeholder-shown:focus,
      .search-modal .inner .search-form input[type='email']:placeholder-shown:focus,
      .search-modal .inner .search-form input[type='number']:placeholder-shown:focus,
      .search-modal .inner .search-form input[type='password']:placeholder-shown:focus {
        outline: none;
        border: solid 1px #006bbd; }
      .search-modal .inner .search-form input[type='text']:-ms-input-placeholder,
      .search-modal .inner .search-form input[type='email']:-ms-input-placeholder,
      .search-modal .inner .search-form input[type='number']:-ms-input-placeholder,
      .search-modal .inner .search-form input[type='password']:-ms-input-placeholder {
        color: #bbb; }
    .search-modal .inner .search-form .form-item-keywords label {
      font-size: 14px;
      font-weight: 500;
      line-height: 1.43;
      color: #767676;
      margin-bottom: 8px;
      text-transform: uppercase; }
    .search-modal .inner .search-form .form-item-keywords .form-text {
      font-size: 36px;
      height: auto;
      line-height: 48px;
      color: #232636;
      padding: 12px;
      background: #fff;
      width: 100%;
      margin-bottom: 16px;
      border-radius: 0;
      -webkit-border-radius: 0;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      box-shadow: none;
      -webkit-box-shadow: none;
      outline: none; }
      .search-modal .inner .search-form .form-item-keywords .form-text:focus {
        outline: none; }
      @media screen and (min-width: 560px) {
        .search-modal .inner .search-form .form-item-keywords .form-text {
          font-size: 48px;
          height: 96px;
          line-height: 1;
          text-align: left;
          color: #232636;
          padding: 21px 24px;
          margin-bottom: 0; } }
    .search-modal .inner .search-form .form-actions {
      margin-bottom: 48px; }
      .search-modal .inner .search-form .form-actions .form-submit {
        background: transparent;
        border: 0;
        border-style: solid;
        border-width: 4px;
        border-radius: 0;
        font-size: 16px;
        font-weight: bold;
        line-height: 1;
        text-align: center;
        text-transform: uppercase;
        padding: 12px 16px;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.5;
        text-align: center;
        width: 100%;
        padding: 16px;
        text-transform: uppercase;
        cursor: pointer; }
        .search-modal .inner .search-form .form-actions .form-submit.primary {
          border-image-slice: 1;
          color: #c00;
          border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
          .search-modal .inner .search-form .form-actions .form-submit.primary:hover {
            background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
            color: #fff; }
          .search-modal .inner .search-form .form-actions .form-submit.primary:disabled {
            opacity: 0.35;
            cursor: not-allowed; }
            .search-modal .inner .search-form .form-actions .form-submit.primary:disabled:hover {
              opacity: 0.35;
              background-image: inherit;
              color: #cc0000; }
        .search-modal .inner .search-form .form-actions .form-submit.secondary {
          border-color: #e6e6e6;
          color: #6f6f6f; }
          .search-modal .inner .search-form .form-actions .form-submit.secondary:hover {
            border-color: #6f6f6f; }
          .search-modal .inner .search-form .form-actions .form-submit.secondary:disabled {
            border-color: #e6e6e6;
            color: #6f6f6f;
            cursor: not-allowed; }
            .search-modal .inner .search-form .form-actions .form-submit.secondary:disabled:hover {
              border-color: #e6e6e6;
              color: #6f6f6f; }
        .search-modal .inner .search-form .form-actions .form-submit:active, .search-modal .inner .search-form .form-actions .form-submit:focus {
          outline: none; }
    .search-modal .inner .single-col-item h6 {
      margin: 0;
      padding: 0;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.43;
      color: #767676;
      margin-bottom: 24px;
      text-transform: uppercase; }
    .search-modal .inner .single-col-item ul {
      list-style: none; }
      .search-modal .inner .single-col-item ul li a, .search-modal .inner .single-col-item ul li a:link, .search-modal .inner .single-col-item ul li a:visited {
        font-size: 16px;
        line-height: 1.5;
        color: #232636;
        display: block; }
      .search-modal .inner .single-col-item ul li a:hover {
        color: #ec223a; }
      .search-modal .inner .single-col-item ul li:last-child {
        margin-bottom: 0; }
    .search-modal .inner .single-col-item.top-pages ul li {
      margin-bottom: 16px; }
      .search-modal .inner .single-col-item.top-pages ul li a, .search-modal .inner .single-col-item.top-pages ul li a:link, .search-modal .inner .single-col-item.top-pages ul li a:visited {
        padding-top: 2px;
        padding-left: 32px;
        position: relative; }
        .search-modal .inner .single-col-item.top-pages ul li a span.icon, .search-modal .inner .single-col-item.top-pages ul li a:link span.icon, .search-modal .inner .single-col-item.top-pages ul li a:visited span.icon {
          position: absolute;
          top: 0;
          left: 0; }
          .search-modal .inner .single-col-item.top-pages ul li a span.icon:before, .search-modal .inner .single-col-item.top-pages ul li a:link span.icon:before, .search-modal .inner .single-col-item.top-pages ul li a:visited span.icon:before {
            font-family: 'icomoon';
            content: "\f001";
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            font-size: 23px;
            /* Better Font Rendering =========== */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; }
    .search-modal .inner .single-col-item.top-people ul li {
      margin-bottom: 13px; }
      .search-modal .inner .single-col-item.top-people ul li a, .search-modal .inner .single-col-item.top-people ul li a:link, .search-modal .inner .single-col-item.top-people ul li a:visited {
        padding-left: 0;
        display: table;
        width: 100%; }
        .search-modal .inner .single-col-item.top-people ul li a img, .search-modal .inner .single-col-item.top-people ul li a:link img, .search-modal .inner .single-col-item.top-people ul li a:visited img {
          display: table-cell;
          vertical-align: middle;
          width: 37px;
          height: 37px; }
        .search-modal .inner .single-col-item.top-people ul li a .name, .search-modal .inner .single-col-item.top-people ul li a:link .name, .search-modal .inner .single-col-item.top-people ul li a:visited .name {
          display: table-cell;
          vertical-align: middle;
          padding-left: 7px;
          width: 100%; }
    .search-modal .inner .search-popular {
      display: block;
      margin-bottom: 48px; }
    .search-modal .inner .search-results {
      display: none; }
      .search-modal .inner .search-results .single-col-item {
        margin-bottom: 48px; }
        .search-modal .inner .search-results .single-col-item:last-child {
          margin-bottom: 0; }

@media screen and (min-width: 560px) {
  .search-modal .close-btn {
    width: 39px;
    height: 39px;
    background-size: 39px 39px;
    top: 38px;
    right: 38px; }
    .search-modal .close-btn:hover {
      background: url(../images/search/icon-close-hover.png);
      background-size: 39px 39px; }
  .search-modal .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 16px; }
    .search-modal .inner .search-form {
      display: table;
      width: 100%;
      margin-bottom: 32px; }
      .search-modal .inner .search-form .form-items {
        display: table-cell;
        vertical-align: bottom;
        width: 100%; }
      .search-modal .inner .search-form .form-actions {
        display: table-cell;
        vertical-align: bottom;
        width: 96px;
        height: 96px;
        padding-left: 4px; }
        .search-modal .inner .search-form .form-actions .form-submit {
          width: 96px;
          height: 96px;
          transition: none;
          opacity: 0.98;
          border: none;
          background-repeat: no-repeat;
          background-image: linear-gradient(to right, #750c42 0%, #e00e1e 100%), linear-gradient(to right, #750c42 0%, #e00e1e 100%);
          border-left: 6px solid #750c42;
          border-right: 6px solid #e00e1e;
          background-position: 0 0, 0 100%;
          background-size: 100% 6px;
          border-image-source: none !important; }
          .search-modal .inner .search-form .form-actions .form-submit > span {
            display: none; }
          .search-modal .inner .search-form .form-actions .form-submit > i {
            width: 41px;
            height: 44px;
            display: inline-block;
            background: -webkit-linear-gradient(left, #750c42, #e00e1e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; }
            .search-modal .inner .search-form .form-actions .form-submit > i:before {
              font-family: 'icomoon';
              content: "\f001";
              speak: none;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              text-transform: none;
              line-height: 1;
              font-size: 41px;
              /* Better Font Rendering =========== */
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale; }
          .search-modal .inner .search-form .form-actions .form-submit:hover {
            background-image: linear-gradient(324deg, #d21718, #dd142b 37%, #780d42);
            background-size: 100% 100%;
            background-image: linear-gradient(324deg, #d21718, #dd142b 37%, #780d42) !important;
            border: none;
            opacity: 1; }
            .search-modal .inner .search-form .form-actions .form-submit:hover > i {
              background: -webkit-linear-gradient(left, #fff, #fff);
              -webkit-background-clip: text;
              -webkit-text-fill-color: transparent; }
    .search-modal .inner .search-popular,
    .search-modal .inner .search-results {
      margin-left: -20px;
      margin-right: -20px; }
      .search-modal .inner .search-popular .single-col-item,
      .search-modal .inner .search-results .single-col-item {
        width: calc(50% - 60px);
        float: left;
        margin-left: 40px;
        margin-left: 20px;
        margin-right: 20px; } }

@media screen and (min-width: 1200px) {
  .search-modal .inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 0px; }
    .search-modal .inner .search-popular,
    .search-modal .inner .search-results {
      width: 1100px;
      margin-left: -20px;
      margin-right: -20px; }
      .search-modal .inner .search-popular .single-col-item,
      .search-modal .inner .search-results .single-col-item {
        width: calc(33.33333% - 53.33333px);
        float: left;
        margin-left: 40px;
        margin-left: 20px;
        margin-right: 20px;
        width: 340px; } }

/*# sourceMappingURL=maps/search.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.social-media-overview {
  /*[rel="tab-facebook"] iframe {
    min-height: 500px;
    @include njit-mq($bpsmall) {
      min-height: 538px;
    }
  }*/ }
  .social-media-overview .title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.11; }
    @media screen and (min-width: 560px) {
      .social-media-overview .title {
        margin-bottom: 20px;
        line-height: 1.25;
        font-size: 32px; } }
  .social-media-overview header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    border-bottom: 4px solid #ebebeb;
    margin-bottom: 24px; }
    @media screen and (min-width: 560px) {
      .social-media-overview header {
        margin-bottom: 48px; } }
  @media screen and (min-width: 560px) {
    .social-media-overview .main {
      margin-left: -40px;
      margin-right: -40px;
      width: calc(100% + 80px); }
      .social-media-overview .main::after {
        clear: both;
        content: "";
        display: block; } }
  .social-media-overview .widget {
    margin-bottom: 24px; }
    @media screen and (min-width: 560px) {
      .social-media-overview .widget {
        width: calc(58.33333% - 63.33333px);
        float: left;
        margin-left: 40px; } }
  @media screen and (min-width: 560px) {
    .social-media-overview .description {
      max-width: 340px;
      padding-right: 30px;
      width: calc(41.66667% - 56.66667px);
      float: left;
      margin-left: 40px; } }
  .social-media-overview .description-title {
    font-size: 16px;
    margin-bottom: 6px;
    margin-top: 0; }
    @media screen and (min-width: 560px) {
      .social-media-overview .description-title {
        font-size: 24px;
        margin-bottom: 24px; } }
  .social-media-overview .description-link {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0; }
    .social-media-overview .description-link a {
      color: #c00; }
      @media screen and (min-width: 560px) {
        .social-media-overview .description-link a {
          font-size: 24px;
          word-break: break-all; } }
      .social-media-overview .description-link a:hover {
        text-decoration: underline; }
    .social-media-overview .description-link:after {
      font-family: 'icomoon';
      content: "\f08e";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 22px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .social-media-overview .description-link:after {
      margin-left: 8px;
      color: #c00; }
  .social-media-overview .social-buttons {
    -ms-flex-positive: 1;
        flex-grow: 1;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: -4px; }
  .social-media-overview .social-icon {
    color: #6f6f6f;
    padding: 8px 16px;
    padding-top: 0;
    border-bottom: 4px solid #ebebeb; }
    .social-media-overview .social-icon::after {
      text-align: center;
      display: inline-block;
      width: 20px; }
    @media screen and (min-width: 560px) {
      .social-media-overview .social-icon {
        padding: 8px 32px;
        padding-top: 0; }
        .social-media-overview .social-icon::after {
          width: 40px; } }
    .social-media-overview .social-icon:hover {
      color: #c00;
      border-bottom: 4px solid #c00; }
    .social-media-overview .social-icon.fs-tabs-active {
      color: #c00;
      border-bottom: 4px solid #c00; }
  .social-media-overview .view-all-social a {
    color: #c00; }
    .social-media-overview .view-all-social a:hover {
      text-decoration: underline; }
  .social-media-overview .fb_iframe_widget, .social-media-overview .fb_iframe_widget span, .social-media-overview .fb_iframe_widget span iframe[style] {
    width: 100% !important; }
  @media screen and (min-width: 560px) {
    .social-media-overview [rel='tab-twitter'] .widget {
      margin-top: -10px; } }
  .social-media-overview .youtube:after {
    font-family: 'icomoon';
    content: "\e907";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 18px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  @media screen and (min-width: 560px) {
    .social-media-overview .youtube::after {
      font-size: 32px; } }
  .social-media-overview .twitter:after {
    font-family: 'icomoon';
    content: "\e906";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 18px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  @media screen and (min-width: 560px) {
    .social-media-overview .twitter::after {
      font-size: 32px; } }
  .social-media-overview .facebook:after {
    font-family: 'icomoon';
    content: "\e905";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 18px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  @media screen and (min-width: 560px) {
    .social-media-overview .facebook::after {
      font-size: 32px; } }

/*# sourceMappingURL=maps/social-media-overview.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.youtube iframe {
  width: 100%;
  max-width: 815px;
  max-height: 192px; }
  @media screen and (min-width: 560px) {
    .youtube iframe {
      max-height: initial; } }

.youtube--responsive {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }
  .youtube--responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/*# sourceMappingURL=maps/youtube.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.stepped-content {
  font-family: Poppins;
  max-width: 815px; }
  .stepped-content .tab-nav ul {
    margin: 0 -40px;
    clear: both;
    overflow: hidden; }
    @media screen and (max-width: 991px) {
      .stepped-content .tab-nav ul {
        margin: 0; } }
    .stepped-content .tab-nav ul li {
      list-style: none;
      margin-bottom: 0;
      width: calc(33.33333% - 53.33333px);
      float: left;
      margin-left: 40px; }
      @media screen and (max-width: 991px) {
        .stepped-content .tab-nav ul li {
          width: 100%;
          height: auto;
          display: block;
          float: none;
          margin: 0 0 16px 0; } }
      .stepped-content .tab-nav ul li .tab-nav-content {
        position: relative;
        width: 245px;
        height: 245px;
        display: block;
        overflow: hidden;
        float: none;
        background: #fff;
        border: 1px solid #e6e6e6; }
        @media screen and (max-width: 991px) {
          .stepped-content .tab-nav ul li .tab-nav-content {
            width: auto;
            height: auto;
            padding: 16px 55px 16px 16px; } }
        .stepped-content .tab-nav ul li .tab-nav-content .title {
          position: absolute;
          top: 24px;
          left: 32px;
          right: 32px;
          font-size: 14px;
          font-weight: normal;
          line-height: 20px;
          color: #6f6f6f;
          text-transform: uppercase; }
          @media screen and (max-width: 991px) {
            .stepped-content .tab-nav ul li .tab-nav-content .title {
              position: relative;
              top: auto;
              left: auto;
              right: auto;
              display: block;
              font-size: 14px;
              line-height: 1.43;
              text-align: left;
              color: #6f6f6f; } }
        .stepped-content .tab-nav ul li .tab-nav-content .desc {
          position: absolute;
          top: 44px;
          left: 31px;
          right: 31px;
          font-size: 24px;
          font-weight: normal;
          line-height: 32px;
          color: #6f6f6f;
          letter-spacing: -0.4px; }
          @media screen and (max-width: 991px) {
            .stepped-content .tab-nav ul li .tab-nav-content .desc {
              position: relative;
              top: auto;
              left: auto;
              right: auto;
              display: block;
              font-size: 18px;
              font-weight: 300;
              line-height: 1.33;
              text-align: left;
              color: #6f6f6f;
              max-width: 256px; } }
        .stepped-content .tab-nav ul li .tab-nav-content .step {
          position: absolute;
          bottom: -35px;
          right: -3px;
          font-size: 192px;
          font-weight: bold;
          line-height: 1;
          color: rgba(36, 38, 55, 0.1);
          width: 92px;
          overflow: hidden;
          text-align: right; }
          .stepped-content .tab-nav ul li .tab-nav-content .step.one {
            right: -12px; }
          @media screen and (max-width: 991px) {
            .stepped-content .tab-nav ul li .tab-nav-content .step {
              position: absolute;
              top: calc((100% - 38px) / 2);
              right: 16px;
              width: auto;
              font-size: 42px; }
              .stepped-content .tab-nav ul li .tab-nav-content .step.one {
                right: 16px; } }
        .stepped-content .tab-nav ul li .tab-nav-content:hover {
          border: 1px solid #242637; }
          .stepped-content .tab-nav ul li .tab-nav-content:hover .title {
            color: #242637; }
          .stepped-content .tab-nav ul li .tab-nav-content:hover .desc {
            color: #242637; }
      .stepped-content .tab-nav ul li .tab-contents {
        display: none; }
    .stepped-content .tab-nav ul li.fs-tabs-active .tab-nav-content {
      background: #f5f5f5;
      border: 1px solid #242637; }
      .stepped-content .tab-nav ul li.fs-tabs-active .tab-nav-content .title {
        color: #242637; }
      .stepped-content .tab-nav ul li.fs-tabs-active .tab-nav-content .desc {
        font-weight: bold;
        color: #242637; }
      .stepped-content .tab-nav ul li.fs-tabs-active .tab-nav-content .step {
        color: #242637; }
    .stepped-content .tab-nav ul li.fs-tabs-active .tab-nav-arrow {
      content: ' ';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 17.5px 25px 17.5px;
      border-color: transparent transparent #f5f5f5 transparent;
      position: relative;
      bottom: 0;
      margin: 0 auto; }
      @media screen and (max-width: 991px) {
        .stepped-content .tab-nav ul li.fs-tabs-active .tab-nav-arrow {
          left: 100px;
          margin: 10px 0 0 0; } }
    @media screen and (max-width: 991px) {
      .stepped-content .tab-nav ul li.fs-tabs-active .tab-contents {
        display: block; } }
  @media screen and (max-width: 991px) {
    .stepped-content .tab-contents {
      display: none; } }
  .stepped-content .tab-contents .tab-content {
    background: #f5f5f5;
    padding: 40px 0 60px 0; }
    @media screen and (max-width: 991px) {
      .stepped-content .tab-contents .tab-content {
        padding: 24px 0; } }
    .stepped-content .tab-contents .tab-content .first-col {
      width: calc(33.33333%);
      float: left;
      margin-left: 0px;
      width: 264px;
      padding-left: 24px;
      padding-right: 19px; }
      @media screen and (max-width: 991px) {
        .stepped-content .tab-contents .tab-content .first-col {
          width: auto;
          padding-left: 16px;
          padding-right: 16px; } }
    .stepped-content .tab-contents .tab-content .second-col {
      width: calc(66.66667%);
      float: left;
      margin-left: 0px;
      padding-left: 19px;
      padding-right: 24px;
      border-left: 2px solid #e6e6e6; }
      @media screen and (max-width: 991px) {
        .stepped-content .tab-contents .tab-content .second-col {
          width: auto;
          padding-left: 15px;
          padding-right: 17px;
          border-left: none;
          padding-top: 16px;
          margin-top: 0px; } }
    .stepped-content .tab-contents .tab-content .summary {
      font-size: 16px;
      line-height: 1.5;
      text-align: left;
      color: #6f6f6f; }
      @media screen and (max-width: 991px) {
        .stepped-content .tab-contents .tab-content .summary {
          padding-bottom: 16px;
          border-bottom: 2px solid #e6e6e6; } }
    .stepped-content .tab-contents .tab-content .block-stepped {
      margin-top: 0px;
      margin-bottom: 32px; }
      .stepped-content .tab-contents .tab-content .block-stepped:last-child {
        margin-bottom: 0; }
      .stepped-content .tab-contents .tab-content .block-stepped .title {
        width: 426px;
        font-size: 24px;
        font-weight: bold;
        line-height: 1.17;
        letter-spacing: -0.4px;
        text-align: left;
        color: #242637;
        margin-top: 0px;
        margin-bottom: 8px; }
        @media screen and (max-width: 991px) {
          .stepped-content .tab-contents .tab-content .block-stepped .title {
            width: auto; } }
      .stepped-content .tab-contents .tab-content .block-stepped .content {
        width: 506px;
        font-size: 16px;
        line-height: 1.5;
        text-align: left;
        color: #6f6f6f;
        margin-bottom: 4px; }
        @media screen and (max-width: 991px) {
          .stepped-content .tab-contents .tab-content .block-stepped .content {
            width: auto; } }
      .stepped-content .tab-contents .tab-content .block-stepped .learn-more {
        font-size: 16px;
        line-height: 1.25;
        letter-spacing: -0.4px;
        text-align: left;
        color: #cc0000;
        display: block;
        margin-bottom: 4px; }
        .stepped-content .tab-contents .tab-content .block-stepped .learn-more:hover {
          text-decoration: underline;
          color: #ec223a; }
        @media screen and (max-width: 991px) {
          .stepped-content .tab-contents .tab-content .block-stepped .learn-more {
            font-size: 16px;
            line-height: 1.5;
            text-align: left;
            color: #cc0000;
            margin-bottom: 0; } }

/*# sourceMappingURL=maps/stepped-content.css.map */

@charset "UTF-8";
.subsite-home-page-hero .video-controls-overlay .play-video p, .subsite-home-page-hero .button {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.subsite-home-page-hero {
  max-width: 100%; }
  @media screen and (min-width: 560px) {
    .subsite-home-page-hero {
      max-width: initial;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center; } }
  .subsite-home-page-hero .video-controls-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0; }
    .subsite-home-page-hero .video-controls-overlay .play-video {
      bottom: 0;
      color: #fff;
      width: 100%;
      text-align: center;
      padding: 14px 40px;
      display: -ms-flexbox;
      display: flex;
      position: static;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      height: 100%; }
      @media screen and (min-width: 560px) {
        .subsite-home-page-hero .video-controls-overlay .play-video {
          background-color: rgba(0, 0, 0, 0.6);
          position: absolute;
          height: auto;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
      .subsite-home-page-hero .video-controls-overlay .play-video::before {
        color: #fff; }
      .subsite-home-page-hero .video-controls-overlay .play-video .label-play {
        text-transform: uppercase;
        position: relative;
        color: #fff;
        display: none; }
        @media screen and (min-width: 560px) {
          .subsite-home-page-hero .video-controls-overlay .play-video .label-play {
            display: inline-block;
            min-width: 120px; } }
        @media screen and (min-width: 768px) {
          .subsite-home-page-hero .video-controls-overlay .play-video .label-play::after {
            content: '|';
            margin: 0 15px; } }
      .subsite-home-page-hero .video-controls-overlay .play-video .icon-play:before {
        font-family: 'icomoon';
        content: "\e904";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 16px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      .subsite-home-page-hero .video-controls-overlay .play-video .icon-play::before {
        display: block;
        margin-right: 0;
        border-radius: 80px;
        width: 80px;
        height: 80px;
        line-height: 80px;
        background: rgba(0, 0, 0, 0.5);
        font-size: 32px;
        margin-top: -50px;
        padding-left: 8px; }
        @media screen and (min-width: 560px) {
          .subsite-home-page-hero .video-controls-overlay .play-video .icon-play::before {
            display: inline;
            margin-right: 8px;
            border-radius: initial;
            line-height: 1;
            background: rgba(0, 0, 0, 0.5);
            font-size: 16px;
            margin-top: 0;
            padding-left: 0; } }
      .subsite-home-page-hero .video-controls-overlay .play-video p {
        display: none;
        color: #fff;
        max-width: 414px;
        width: 100%; }
        @media screen and (min-width: 768px) {
          .subsite-home-page-hero .video-controls-overlay .play-video p {
            display: inline-block;
            padding: 0;
            margin: 0;
            line-height: 1.25;
            text-align: left; } }
    .subsite-home-page-hero .video-controls-overlay:hover {
      cursor: pointer; }
      .subsite-home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
        background: rgba(204, 0, 0, 0.6); }
      @media screen and (min-width: 560px) {
        .subsite-home-page-hero .video-controls-overlay:hover .play-video {
          background-color: rgba(204, 0, 0, 0.6); }
          .subsite-home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
            background: initial; } }
    .subsite-home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play:before {
      font-family: 'icomoon';
      content: "\e904";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 80px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .subsite-home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
      display: block;
      margin-right: 0;
      border-radius: 175px;
      width: 175px;
      height: 175px;
      line-height: 175px;
      padding-left: 20px;
      margin-top: 0; }
      @media screen and (min-width: 560px) {
        .subsite-home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
          display: inline;
          margin-right: 8px;
          border-radius: initial;
          line-height: 1;
          background: rgba(0, 0, 0, 0.5);
          font-size: 20px;
          padding-left: 0; } }
  .subsite-home-page-hero .picture-container {
    overflow: hidden;
    position: relative; }
  .subsite-home-page-hero .picture {
    max-width: 100%;
    position: relative;
    z-index: 0; }
    @media screen and (min-width: 560px) {
      .subsite-home-page-hero .picture {
        max-width: initial; } }
  .subsite-home-page-hero .stat-container {
    max-width: 100%;
    padding: 0 16px;
    margin-top: -50px;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 560px) {
      .subsite-home-page-hero .stat-container {
        padding: 0;
        width: 475px;
        margin-top: 0;
        margin-left: calc(-475px/2); } }
  .subsite-home-page-hero .header {
    border-left: 4px solid #c00;
    padding-left: 12px;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 16px); }
    @media screen and (min-width: 560px) {
      .subsite-home-page-hero .header {
        padding-left: 36px;
        margin-left: -40px;
        margin-right: -40px;
        width: calc(100% + 40px); } }
  .subsite-home-page-hero .button {
    background: transparent;
    border: 0;
    border-style: solid;
    border-width: 4px;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block; }
    .subsite-home-page-hero .button.primary {
      border-image-slice: 1;
      color: #c00;
      border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
      .subsite-home-page-hero .button.primary:hover {
        background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
        color: #fff; }
      .subsite-home-page-hero .button.primary:disabled {
        opacity: 0.35;
        cursor: not-allowed; }
        .subsite-home-page-hero .button.primary:disabled:hover {
          opacity: 0.35;
          background-image: inherit;
          color: #cc0000; }
    .subsite-home-page-hero .button.secondary {
      border-color: #e6e6e6;
      color: #6f6f6f; }
      .subsite-home-page-hero .button.secondary:hover {
        border-color: #6f6f6f; }
      .subsite-home-page-hero .button.secondary:disabled {
        border-color: #e6e6e6;
        color: #6f6f6f;
        cursor: not-allowed; }
        .subsite-home-page-hero .button.secondary:disabled:hover {
          border-color: #e6e6e6;
          color: #6f6f6f; }
    .subsite-home-page-hero .button:first-child {
      margin-bottom: 8px; }
      @media screen and (min-width: 560px) {
        .subsite-home-page-hero .button:first-child {
          margin-bottom: 0; } }
    @media screen and (min-width: 560px) {
      .subsite-home-page-hero .button {
        width: 187px;
        padding: 16px; } }

/*# sourceMappingURL=maps/subsite-home-page-hero.css.map */

.tabbed-content nav .wide-load a {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.tabbed-content {
  width: 100%;
  padding-bottom: 20px;
  margin-top: 0; }
  @media screen and (min-width: 560px) {
    .tabbed-content {
      overflow: hidden; } }
  @media screen and (min-width: 992px) {
    .tabbed-content {
      max-width: 815px; } }
  .tabbed-content nav {
    overflow-x: auto;
    margin-left: -16px;
    margin-right: -16px;
    width: 100vw; }
    @media screen and (min-width: 560px) {
      .tabbed-content nav {
        margin-left: 0;
        width: calc(100% + 32px); } }
    .tabbed-content nav .nav-scroll {
      overflow: auto; }
    .tabbed-content nav .bottom-line {
      width: 100%;
      min-width: 100%;
      border-bottom: 4px solid #f5f5f5;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      top: -4px;
      z-index: -1; }
      @media screen and (min-width: 992px) {
        .tabbed-content nav .bottom-line {
          width: 100% !important; } }
    .tabbed-content nav .wide-load {
      width: 1400px;
      padding: 0 16px;
      height: 36px;
      overflow: hidden;
      white-space: nowrap; }
      @media screen and (min-width: 560px) {
        .tabbed-content nav .wide-load {
          padding: 0; } }
      .tabbed-content nav .wide-load a {
        font-size: 16px;
        display: block;
        color: #6f6f6f;
        padding: 8px 0 8px 0;
        margin-left: 16px;
        margin-right: 16px;
        float: left;
        height: 36px;
        line-height: 1;
        overflow: hidden;
        border-bottom: 4px solid transparent;
        letter-spacing: -0.4pt;
        display: inline-block;
        float: none; }
        .tabbed-content nav .wide-load a:first-child {
          padding-left: 0;
          margin-left: 0; }
        .tabbed-content nav .wide-load a:last-child {
          padding-right: 0;
          margin-right: 0; }
        @media screen and (min-width: 560px) {
          .tabbed-content nav .wide-load a:first-child {
            padding-left: 0;
            margin-left: 0; }
          .tabbed-content nav .wide-load a:last-child {
            padding-right: 0;
            margin-right: 0; } }
        .tabbed-content nav .wide-load a.fs-tabs-active {
          font-weight: bold;
          color: #232636;
          border-bottom: 4px solid #c00; }
        .tabbed-content nav .wide-load a:hover {
          color: #ec223a; }
    .tabbed-content nav.tabbed-nav .scroll-shade {
      display: none; }
    .tabbed-content nav.tabbed-nav.scrolling .scroll-shade {
      display: block;
      height: 40px;
      width: 50px;
      max-width: 50%;
      position: relative;
      display: block;
      bottom: 55px;
      margin-bottom: -55px;
      z-index: 1;
      float: right;
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%); }
  .tabbed-content .tab-content {
    clear: both;
    padding-top: 16px;
    padding-left: 0; }

.touchevents .tabbed-content nav .nav-scroll {
  overflow: auto; }
  .touchevents .tabbed-content nav .nav-scroll::-webkit-scrollbar-track, .touchevents .tabbed-content nav .nav-scroll::-webkit-scrollbar, .touchevents .tabbed-content nav .nav-scroll::-webkit-scrollbar-thumb {
    display: none;
    background-color: transparent; }

.dev-container {
  width: auto;
  margin: 0; }
  @media screen and (min-width: 992px) {
    .dev-container {
      width: 960px;
      margin-left: auto;
      margin-right: auto; } }
  @media screen and (min-width: 1200px) {
    .dev-container {
      width: 1140px; } }

/*# sourceMappingURL=maps/tabbed-content.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.testimonial {
  width: 100%;
  cursor: pointer; }
  .testimonial:hover .play-fill {
    fill: #ec223a; }
  .testimonial:hover .stat-container .read-more {
    color: #ec223a;
    text-decoration: underline; }
  @media screen and (min-width: 560px) {
    .testimonial {
      max-width: 245px; } }
  .testimonial .picture {
    width: 100%; }
  .testimonial .play {
    display: block;
    width: 56px;
    margin: 0 auto;
    position: absolute;
    top: -25px;
    right: 50%;
    -webkit-transform: translate(50%);
            transform: translate(50%); }
  .testimonial .stat-container {
    position: relative;
    width: calc(100% - 32px);
    margin: -55px auto 5px auto; }
    @media screen and (min-width: 560px) {
      .testimonial .stat-container {
        width: calc(100% - 5px);
        margin: -25px auto 5px auto; } }
    @media screen and (min-width: 768px) {
      .testimonial .stat-container {
        width: calc(100% - 32px);
        margin: -55px auto 5px auto; } }

/*# sourceMappingURL=maps/testimonial.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.text-image-callout {
  margin-bottom: 32px; }
  .text-image-callout img {
    width: 100%;
    height: auto;
    margin-bottom: 12px; }
  .text-image-callout h4 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -.8px; }
  .text-image-callout h5 {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.17; }
  .text-image-callout p {
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 8px;
    color: #6f6f6f; }
  .text-image-callout .link {
    display: block;
    line-height: 1.43;
    margin-bottom: 8px; }
  .text-image-callout a {
    line-height: 1.5;
    color: #232636; }
    .text-image-callout a:hover {
      color: #c00; }
  .text-image-callout .more {
    line-height: 1.5;
    height: 20px;
    color: #c00;
    text-transform: capitalize; }
    .text-image-callout .more:hover {
      text-decoration: underline; }
  .text-image-callout:last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 560px) {
    .text-image-callout {
      max-width: 245px; } }
  .text-image-callout--header {
    max-width: initial; }
    .text-image-callout--header p {
      color: #232636; }

/*# sourceMappingURL=maps/text-image-callout.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.text-only-callout.two_column_alt_, .text-only-callout.two_column {
  max-width: 240px;
  min-width: 200px;
  padding: 24px;
  width: 100%;
  height: 244px; }

.text-only-callout {
  background-image: linear-gradient(to bottom, #d11717, #e00e1f 35%, #dd152d 51%, #750d42);
  position: relative;
  padding: 24px 24px 60px 24px;
  min-height: 196px; }
  .text-only-callout h4 {
    font-size: 20px;
    line-height: 1.09;
    letter-spacing: -.8px;
    margin-top: 0;
    margin-bottom: 8px;
    color: #fff; }
    @media screen and (min-width: 768px) {
      .text-only-callout h4 {
        font-size: 22px; } }
  .text-only-callout a {
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.5;
    padding: 15px 24px;
    display: block;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: 0;
    left: 0; }
    .text-only-callout a:after {
      font-family: 'icomoon';
      content: "\f061";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 18px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .text-only-callout a:after {
      color: #6ab3fc;
      margin-left: 8px; }
  .text-only-callout--homepage {
    height: 160px;
    min-width: 300px;
    min-height: 160px;
    padding: 16px 16px 72px 16px;
    margin-top: 15px;
    margin-bottom: 15px; }
    @media screen and (min-width: 560px) {
      .text-only-callout--homepage {
        height: auto;
        padding: 32px 32px 72px 32px;
        margin-top: 15px;
        margin-bottom: 15px;
        min-width: 340px;
        min-height: 344px !important; } }
  .text-only-callout--4-col {
    padding: 15px 15px 72px 15px;
    height: 100%; }
    .text-only-callout--4-col a {
      padding: 10px 15px;
      font-size: 14px; }
      @media screen and (min-width: 768px) {
        .text-only-callout--4-col a {
          font-size: 16px;
          padding: 15px 32px; } }
    @media screen and (min-width: 560px) {
      .text-only-callout--4-col {
        max-width: 340px;
        min-height: 280px;
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .text-only-callout--4-col {
        padding: 32px 32px 72px 32px; } }
  @media screen and (min-width: 560px) {
    .text-only-callout--3-col {
      max-width: 245px;
      min-height: 264px;
      width: 100%;
      padding: 24px 24px 60px 24px; }
      .text-only-callout--3-col h4 {
        font-size: 24px;
        line-height: 1.17; }
      .text-only-callout--3-col a {
        padding: 16px 24px; } }
  @media screen and (min-width: 560px) {
    .text-only-callout--header {
      min-height: 188px;
      padding: 20px 20px 72px 20px; }
      .text-only-callout--header > a {
        text-transform: none;
        color: #fff;
        position: static;
        border-top: none;
        padding: 0; }
        .text-only-callout--header > a:after {
          content: ''; }
      .text-only-callout--header h4 {
        font-size: 16px;
        line-height: 1.25; }
      .text-only-callout--header span {
        width: 100%;
        font-size: 14px;
        text-transform: uppercase;
        line-height: 1.5;
        padding: 15px 24px;
        display: block;
        border-top: 2px solid rgba(255, 255, 255, 0.5);
        position: absolute;
        bottom: 0;
        left: 0; }
        .text-only-callout--header span:after {
          font-family: 'icomoon';
          content: "\f061";
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          font-size: 18px;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
        .text-only-callout--header span:after {
          color: #6ab3fc;
          margin-left: 8px; } }

/*# sourceMappingURL=maps/text-only-callout.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.text-related-links {
  border-top: solid 2px #242637;
  padding-top: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-width: 815px;
  width: 100%;
  -ms-flex-direction: column;
      flex-direction: column; }
  @media screen and (min-width: 560px) {
    .text-related-links {
      -ms-flex-direction: row;
          flex-direction: row; } }
  .text-related-links .text-title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 16px; }
  .text-related-links p {
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.5; }
  .text-related-links .text {
    max-width: 530px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
    -ms-flex: 1 1;
        flex: 1 1; }
    @media screen and (min-width: 560px) {
      .text-related-links .text {
        margin-right: 40px;
        margin-bottom: 0; } }
  .text-related-links .related-links {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media screen and (min-width: 560px) {
      .text-related-links .related-links {
        width: 245px; } }
  .text-related-links .related-links-title {
    font-size: 20px;
    margin-top: 3px;
    margin-bottom: 18px; }
  .text-related-links .external-link:after {
    font-family: 'icomoon';
    content: "\f08e";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 16px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .text-related-links .external-link:after {
    margin-left: 4px; }
  .text-related-links .links {
    padding-left: 30px; }
    .text-related-links .links li {
      margin-bottom: 16px;
      line-height: 1.25;
      padding-left: 5px; }
      @media screen and (min-width: 560px) {
        .text-related-links .links li {
          padding-right: 30px; } }
    .text-related-links .links a {
      color: #c00; }
      .text-related-links .links a:hover {
        text-decoration: underline;
        color: #ec223a; }

/*# sourceMappingURL=maps/text-related-links.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.two-column-promos {
  width: 100%; }
  @media screen and (min-width: 560px) {
    .two-column-promos {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: start;
          align-items: start;
      padding-left: 55px; } }
  .two-column-promos .container {
    width: 100%;
    padding: 0 16px;
    position: relative; }
    @media screen and (min-width: 560px) {
      .two-column-promos .container {
        background-color: #f5f5f5;
        max-width: 1080px;
        padding: 70px 40px 64px 125px;
        margin-top: 55px;
        z-index: 0;
        margin-left: -95px; } }
    @media screen and (min-width: 992px) {
      .two-column-promos .container {
        padding: 70px 100px 64px 125px; } }
    @media screen and (min-width: 1200px) {
      .two-column-promos .container {
        padding: 70px 170px 64px 190px;
        min-height: 422px; } }
  .two-column-promos .inner-container {
    width: 100%;
    background-color: #f5f5f5;
    padding: 24px 16px; }
    @media screen and (min-width: 560px) {
      .two-column-promos .inner-container {
        margin-left: -40px;
        margin-right: -40px;
        width: calc(100% + 80px);
        padding: 0;
        padding-top: 0; }
        .two-column-promos .inner-container::after {
          clear: both;
          content: "";
          display: block; } }
  .two-column-promos .picture {
    width: 100%;
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 560px) {
      .two-column-promos .picture {
        max-width: 200px; } }
    @media screen and (min-width: 992px) {
      .two-column-promos .picture {
        max-width: 400px; } }
  .two-column-promos .title {
    font-size: 22px;
    color: #232636;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -.6px; }
    @media screen and (min-width: 560px) {
      .two-column-promos .title {
        font-size: 24px;
        margin-top: 0;
        margin-bottom: 34px; } }
    @media screen and (min-width: 992px) {
      .two-column-promos .title {
        font-size: 32px; } }
  .two-column-promos .subtitle {
    font-size: 18px;
    color: #232636;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 5px; }
    @media screen and (min-width: 560px) {
      .two-column-promos .subtitle {
        font-size: 20px;
        margin-bottom: 16px; } }
    @media screen and (min-width: 992px) {
      .two-column-promos .subtitle {
        font-size: 24px; } }
  .two-column-promos .description {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #6f6f6f; }
  .two-column-promos .col {
    margin-bottom: 24px; }
    @media screen and (min-width: 560px) {
      .two-column-promos .col {
        margin-bottom: 0;
        width: calc(50% - 60px);
        float: left;
        margin-left: 40px; } }
    .two-column-promos .col:last-child {
      margin-bottom: 0; }
  .two-column-promos a {
    color: #c00; }
    .two-column-promos a:hover {
      text-decoration: underline; }
  .two-column-promos--4-col {
    padding: 0;
    margin-top: 20px; }
    .two-column-promos--4-col .container {
      margin-top: 20px;
      min-height: 422px; }

/*# sourceMappingURL=maps/two-column-promos.css.map */

.tabbed-content nav .wide-load a {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.tabbed-content {
  width: 100%;
  padding-bottom: 20px;
  margin-top: 0; }
  @media screen and (min-width: 560px) {
    .tabbed-content {
      overflow: hidden; } }
  @media screen and (min-width: 992px) {
    .tabbed-content {
      max-width: 815px; } }
  .tabbed-content nav {
    overflow-x: auto;
    margin-left: -16px;
    margin-right: -16px;
    width: 100vw; }
    @media screen and (min-width: 560px) {
      .tabbed-content nav {
        margin-left: 0;
        width: calc(100% + 32px); } }
    .tabbed-content nav .nav-scroll {
      overflow: auto; }
    .tabbed-content nav .bottom-line {
      width: 100%;
      min-width: 100%;
      border-bottom: 4px solid #f5f5f5;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      top: -4px;
      z-index: -1; }
      @media screen and (min-width: 992px) {
        .tabbed-content nav .bottom-line {
          width: 100% !important; } }
    .tabbed-content nav .wide-load {
      width: 1400px;
      padding: 0 16px;
      height: 36px;
      overflow: hidden;
      white-space: nowrap; }
      @media screen and (min-width: 560px) {
        .tabbed-content nav .wide-load {
          padding: 0; } }
      .tabbed-content nav .wide-load a {
        font-size: 16px;
        display: block;
        color: #6f6f6f;
        padding: 8px 0 8px 0;
        margin-left: 16px;
        margin-right: 16px;
        float: left;
        height: 36px;
        line-height: 1;
        overflow: hidden;
        border-bottom: 4px solid transparent;
        letter-spacing: -0.4pt;
        display: inline-block;
        float: none; }
        .tabbed-content nav .wide-load a:first-child {
          padding-left: 0;
          margin-left: 0; }
        .tabbed-content nav .wide-load a:last-child {
          padding-right: 0;
          margin-right: 0; }
        @media screen and (min-width: 560px) {
          .tabbed-content nav .wide-load a:first-child {
            padding-left: 0;
            margin-left: 0; }
          .tabbed-content nav .wide-load a:last-child {
            padding-right: 0;
            margin-right: 0; } }
        .tabbed-content nav .wide-load a.fs-tabs-active {
          font-weight: bold;
          color: #232636;
          border-bottom: 4px solid #c00; }
        .tabbed-content nav .wide-load a:hover {
          color: #ec223a; }
    .tabbed-content nav.tabbed-nav .scroll-shade {
      display: none; }
    .tabbed-content nav.tabbed-nav.scrolling .scroll-shade {
      display: block;
      height: 40px;
      width: 50px;
      max-width: 50%;
      position: relative;
      display: block;
      bottom: 55px;
      margin-bottom: -55px;
      z-index: 1;
      float: right;
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%); }
  .tabbed-content .tab-content {
    clear: both;
    padding-top: 16px;
    padding-left: 0; }

.touchevents .tabbed-content nav .nav-scroll {
  overflow: auto; }
  .touchevents .tabbed-content nav .nav-scroll::-webkit-scrollbar-track, .touchevents .tabbed-content nav .nav-scroll::-webkit-scrollbar, .touchevents .tabbed-content nav .nav-scroll::-webkit-scrollbar-thumb {
    display: none;
    background-color: transparent; }

.dev-container {
  width: auto;
  margin: 0; }
  @media screen and (min-width: 992px) {
    .dev-container {
      width: 960px;
      margin-left: auto;
      margin-right: auto; } }
  @media screen and (min-width: 1200px) {
    .dev-container {
      width: 1140px; } }

/*# sourceMappingURL=maps/tabbed-content.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.social-icons .social-icon {
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: #fff;
  box-shadow: 0 1px 9px 9px rgba(0, 0, 0, 0.04); }
  @media screen and (min-width: 768px) {
    .social-icons .social-icon {
      display: block;
      width: 80px;
      height: 80px;
      margin-bottom: 2px; } }
  .social-icons .social-icon a {
    position: relative;
    color: #ca1536;
    font-size: 0 !important;
    display: block;
    width: 35px;
    height: 35px; }
    @media screen and (min-width: 768px) {
      .social-icons .social-icon a {
        width: 80px;
        height: 80px; } }
    .social-icons .social-icon a:before {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      display: block; }

.social-icons .facebook-sign a:before {
  font-family: 'icomoon';
  content: "\f082";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 15px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media screen and (min-width: 768px) {
  .social-icons .facebook-sign a:before {
    font-family: 'icomoon';
    content: "\f082";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 40px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; } }

.social-icons .linkedin a:before {
  font-family: 'icomoon';
  content: "\f012";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 16px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media screen and (min-width: 768px) {
  .social-icons .linkedin a:before {
    font-family: 'icomoon';
    content: "\f012";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 40px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; } }

.social-icons .twitter a:before {
  font-family: 'icomoon';
  content: "\f010";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 19px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media screen and (min-width: 768px) {
  .social-icons .twitter a:before {
    font-family: 'icomoon';
    content: "\f010";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 40px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; } }

.social-icons .more a:before {
  font-family: 'icomoon';
  content: "\f013";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  font-size: 17px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@media screen and (min-width: 768px) {
  .social-icons .more a:before {
    font-family: 'icomoon';
    content: "\f013";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 40px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; } }

/*# sourceMappingURL=maps/social-icons.css.map */

@charset "UTF-8";
.home-page-hero .video-controls-overlay .play-video p {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@media screen and (min-width: 560px) {
  .home-page-hero {
    display: -ms-flexbox;
    display: flex; } }

.home-page-hero #homepage-hero-video-wrapper {
  height: 100%; }

.home-page-hero .majors-navigation-container {
  display: none;
  position: fixed;
  z-index: 10;
  top: 136px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
  padding-top: 8px;
  padding-bottom: 8px; }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors-navigation-container {
      display: block; } }

.home-page-hero .majors-navigation {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  padding: 0 10px !important; }
  @media screen and (min-width: 560px) {
    .home-page-hero .majors-navigation {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 768px) {
    .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 720px; } }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 1200px) {
    .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }
  .home-page-hero .majors-navigation > * {
    margin: 0 8px; }

.home-page-hero .majors-mobile {
  overflow-x: scroll;
  overflow-y: hidden;
  height: 50px;
  position: fixed;
  z-index: 1;
  top: 52px;
  background: #fff;
  box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
  width: 100%; }
  .home-page-hero .majors-mobile .majors-mobile-navigation {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: end;
        align-items: flex-end;
    height: 100%; }
  .home-page-hero .majors-mobile .link {
    color: #6f6f6f;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 2px;
    white-space: nowrap;
    border-bottom: 4px solid #f5f5f5;
    text-decoration: none; }
    .home-page-hero .majors-mobile .link.active {
      font-weight: bold;
      color: #232636;
      letter-spacing: -.3px;
      border-bottom: 4px solid #c00; }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors-mobile {
      display: none; } }

.home-page-hero .picture-container {
  position: relative;
  height: 100%; }
  @media screen and (min-width: 560px) {
    .home-page-hero .picture-container {
      max-width: 500px;
      margin-right: 25px; } }
  @media screen and (min-width: 992px) {
    .home-page-hero .picture-container {
      margin-right: 55px;
      max-width: 645px; } }

.home-page-hero .title {
  font-size: 32px;
  line-height: 1.13;
  letter-spacing: -.4px;
  margin-top: 5px;
  margin-bottom: 16px;
  color: #232636; }
  @media screen and (min-width: 560px) {
    .home-page-hero .title {
      font-size: 40px;
      line-height: 1.06;
      margin-top: 10px;
      margin-bottom: 60px; } }
  @media screen and (min-width: 992px) {
    .home-page-hero .title {
      font-size: 56px; } }
  @media screen and (min-width: 1200px) {
    .home-page-hero .title {
      font-size: 65px; } }

.home-page-hero .picture {
  max-width: 100%;
  position: relative;
  z-index: 0; }

.home-page-hero .video-controls-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0; }
  .home-page-hero .video-controls-overlay .play-video {
    bottom: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay .play-video {
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        height: auto;
        -ms-flex-pack: start;
            justify-content: flex-start; } }
    .home-page-hero .video-controls-overlay .play-video::before {
      color: #fff; }
    .home-page-hero .video-controls-overlay .play-video .label-play {
      text-transform: uppercase;
      position: relative;
      color: #fff;
      display: none; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .label-play {
          display: inline-block;
          min-width: 120px; } }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video .label-play::after {
          content: '|';
          margin: 0 15px; } }
    .home-page-hero .video-controls-overlay .play-video .icon-play:before {
      font-family: 'icomoon';
      content: "\e904";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 16px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .home-page-hero .video-controls-overlay .play-video .icon-play::before {
      display: block;
      margin-right: 0;
      border-radius: 80px;
      width: 80px;
      height: 80px;
      line-height: 80px;
      background: rgba(0, 0, 0, 0.5);
      font-size: 32px;
      margin-top: -50px;
      padding-left: 8px; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .icon-play::before {
          display: inline;
          margin-right: 8px;
          border-radius: initial;
          line-height: 1;
          background: rgba(0, 0, 0, 0.5);
          font-size: 16px;
          margin-top: 0;
          padding-left: 0; } }
    .home-page-hero .video-controls-overlay .play-video p {
      display: none;
      color: #fff;
      max-width: 414px;
      width: 100%; }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video p {
          display: inline-block;
          padding: 0;
          margin: 0;
          line-height: 1.25;
          text-align: left; } }
  .home-page-hero .video-controls-overlay:hover {
    cursor: pointer; }
    .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
      background: rgba(204, 0, 0, 0.6); }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay:hover .play-video {
        background-color: rgba(204, 0, 0, 0.6); }
        .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
          background: initial; } }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play:before {
    font-family: 'icomoon';
    content: "\e904";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 80px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
    display: block;
    margin-right: 0;
    border-radius: 175px;
    width: 175px;
    height: 175px;
    line-height: 175px;
    padding-left: 20px;
    margin-top: 0; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
        display: inline;
        margin-right: 8px;
        border-radius: initial;
        line-height: 1;
        background: rgba(0, 0, 0, 0.5);
        font-size: 20px;
        padding-left: 0; } }

.home-page-hero .video .video-controls-overlay {
  display: block; }

.home-page-hero .video-controls-overlay {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%; }
  .home-page-hero .video-controls-overlay .play-video {
    bottom: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay .play-video {
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        height: auto;
        -ms-flex-pack: start;
            justify-content: flex-start; } }
    .home-page-hero .video-controls-overlay .play-video::before {
      color: #fff; }
    .home-page-hero .video-controls-overlay .play-video .label-play {
      text-transform: uppercase;
      position: relative;
      color: #fff;
      display: none; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .label-play {
          display: inline-block;
          min-width: 120px; } }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video .label-play::after {
          content: '|';
          margin: 0 15px; } }
    .home-page-hero .video-controls-overlay .play-video .icon-play:before {
      font-family: 'icomoon';
      content: "\e904";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 16px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .home-page-hero .video-controls-overlay .play-video .icon-play::before {
      display: block;
      margin-right: 0;
      border-radius: 80px;
      width: 80px;
      height: 80px;
      line-height: 80px;
      background: rgba(0, 0, 0, 0.5);
      font-size: 32px;
      margin-top: -50px;
      padding-left: 8px; }
      @media screen and (min-width: 560px) {
        .home-page-hero .video-controls-overlay .play-video .icon-play::before {
          display: inline;
          margin-right: 8px;
          border-radius: initial;
          line-height: 1;
          background: rgba(0, 0, 0, 0.5);
          font-size: 16px;
          margin-top: 0;
          padding-left: 0; } }
    .home-page-hero .video-controls-overlay .play-video p {
      display: none;
      color: #fff;
      max-width: 414px;
      width: 100%; }
      @media screen and (min-width: 768px) {
        .home-page-hero .video-controls-overlay .play-video p {
          display: inline-block;
          padding: 0;
          margin: 0;
          line-height: 1.25;
          text-align: left; } }
  .home-page-hero .video-controls-overlay:hover {
    cursor: pointer; }
    .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
      background: rgba(204, 0, 0, 0.6); }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay:hover .play-video {
        background-color: rgba(204, 0, 0, 0.6); }
        .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
          background: initial; } }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play:before {
    font-family: 'icomoon';
    content: "\e904";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 80px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
    display: block;
    margin-right: 0;
    border-radius: 175px;
    width: 175px;
    height: 175px;
    line-height: 175px;
    padding-left: 20px;
    margin-top: 0; }
    @media screen and (min-width: 560px) {
      .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
        display: inline;
        margin-right: 8px;
        border-radius: initial;
        line-height: 1;
        background: rgba(0, 0, 0, 0.5);
        font-size: 20px;
        padding-left: 0; } }
  .home-page-hero .video-controls-overlay .play-video .icon-play:before {
    margin-top: 0; }
  .home-page-hero .video-controls-overlay .play-video p {
    max-width: 380px; }

.home-page-hero .video {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }
  .home-page-hero .video .video-embed-field-responsive-video {
    position: absolute;
    max-width: 1100px;
    max-height: 476px;
    padding: 0;
    box-sizing: content-box;
    overflow: visible;
    width: 95%;
    height: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media screen and (min-width: 560px) {
      .home-page-hero .video .video-embed-field-responsive-video {
        background-color: #fff;
        padding: 20px;
        width: 100%;
        height: 100%; } }
    .home-page-hero .video .video-embed-field-responsive-video iframe {
      position: static; }
  .home-page-hero .video span.close {
    position: absolute;
    right: 0;
    color: #fff;
    top: -54px;
    margin-top: 0px;
    padding-top: 0px;
    font-size: 0; }
    .home-page-hero .video span.close:before {
      font-family: 'icomoon';
      content: "\e903";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 29px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .home-page-hero .video span.close:hover {
      cursor: pointer; }
    .home-page-hero .video span.close:before {
      height: 29px;
      width: 29px;
      line-height: 56px; }

.home-page-hero .content {
  position: relative;
  margin-top: -48px;
  margin-left: 16px;
  margin-right: 16px;
  padding: 16px;
  background: #fff; }
  @media screen and (min-width: 560px) {
    .home-page-hero .content {
      padding: 0;
      margin: 0;
      position: static;
      max-width: 570px; } }

.home-page-hero .description {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: -.4px;
  color: #232636; }
  @media screen and (min-width: 560px) {
    .home-page-hero .description {
      font-size: 24px;
      line-height: 1.33;
      margin-bottom: 16px; } }

.home-page-hero .explore-degrees {
  color: #c00; }
  .home-page-hero .explore-degrees:after {
    font-family: 'icomoon';
    content: "\f061";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 20px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .home-page-hero .explore-degrees:hover {
    color: #ec223a; }
  .home-page-hero .explore-degrees::after {
    margin-left: 4px; }

.home-page-hero .majors {
  display: none; }
  @media screen and (min-width: 992px) {
    .home-page-hero .majors {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -9px; }
      .home-page-hero .majors > * {
        margin-right: 9px;
        margin-left: 9px;
        margin-bottom: 18px; } }

.home-page-hero .button {
  border: 1px solid #d9d9d9;
  border-radius: 11px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #6f6f6f;
  width: 178px;
  height: 72px;
  padding: 12px 23px;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all .2s;
  cursor: pointer; }
  .home-page-hero .button.active {
    border-image-slice: 1;
    background-image: linear-gradient(292deg, #e00e1f, #dd152d 47%, #750d42);
    color: #fff;
    border-color: transparent; }
  .home-page-hero .button:hover:not(.active) {
    color: #232636;
    border-color: #232636; }
  .home-page-hero .button--navigation {
    font-size: 16px;
    line-height: 1.25;
    width: 170px;
    height: 56px;
    padding: 6px 19px; }
  .home-page-hero .button--content {
    font-size: 20px;
    line-height: 1.2;
    width: 178px;
    height: 72px;
    padding: 12px 24px; }

@media screen and (min-width: 560px) {
  .home-page-hero .video .video-embed-field-responsive-video {
    background-color: #fff;
    padding: 20px;
    width: 80%;
    height: 100%;
    max-height: initial;
    height: initial; } }

.home-page-hero #homepage-hero-video-wrapper {
  height: initial;
  padding-top: 56.25%;
  position: relative; }

.home-page-hero .video .video-embed-field-responsive-video iframe {
  position: absolute; }

/*# sourceMappingURL=maps/home-page-hero.css.map */

@charset "UTF-8";
/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.form-type-textfield label {
  display: block !important; }
  .form-type-textfield label.error {
    color: #f60; }

.form-type-textfield input + label,
.form-type-textfield div {
  margin-top: 4px; }

input[type='text'],
input[type='email'],
input[type='number'],
input[type='password'] {
  height: 48px;
  padding: 12px;
  border: solid 1px #d9d9d9;
  transition: border 0.5s; }
  input[type='text'].error,
  input[type='email'].error,
  input[type='number'].error,
  input[type='password'].error {
    border: solid 1px #f60 !important; }
  input[type='text']:hover,
  input[type='email']:hover,
  input[type='number']:hover,
  input[type='password']:hover {
    outline: none;
    border: solid 1px #232636; }
  input[type='text']:focus,
  input[type='email']:focus,
  input[type='number']:focus,
  input[type='password']:focus {
    outline: none;
    border: solid 1px #006bbd; }
  input[type='text']:placeholder-shown,
  input[type='email']:placeholder-shown,
  input[type='number']:placeholder-shown,
  input[type='password']:placeholder-shown {
    color: #bbb;
    border: solid 1px #d9d9d9; }
  input[type='text']:placeholder-shown:hover,
  input[type='email']:placeholder-shown:hover,
  input[type='number']:placeholder-shown:hover,
  input[type='password']:placeholder-shown:hover {
    outline: none;
    border: solid 1px #232636; }
  input[type='text']:placeholder-shown:focus,
  input[type='email']:placeholder-shown:focus,
  input[type='number']:placeholder-shown:focus,
  input[type='password']:placeholder-shown:focus {
    outline: none;
    border: solid 1px #006bbd; }
  input[type='text']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder,
  input[type='number']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder {
    color: #bbb; }

.form-type-select .error .fs-dropdown-selected {
  border-color: #f60; }

.form-type-select label {
  display: block !important; }
  .form-type-select label.error {
    color: #f60; }

.form-type-select .fs-dropdown + label,
.form-type-select div {
  margin-top: 4px; }

.fs-dropdown:focus {
  outline: 0; }

.fs-dropdown-selected {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: solid 1px #d9d9d9;
  border-radius: 0;
  height: 48px;
  padding: 10px 16px 14px 16px;
  min-width: 340px;
  transition: border 0.2s; }
  .fs-dropdown-selected:after {
    font-family: 'icomoon';
    content: "\f0d7";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 20px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .fs-dropdown-selected:after {
    position: absolute;
    pointer-events: none;
    color: #3b3b3b;
    right: 16px;
    top: 13px;
    z-index: 5; }
  .fs-dropdown-selected:hover {
    outline: none;
    border: solid 1px #232636; }
  .fs-dropdown-selected:focus {
    outline: none;
    border: solid 1px #006bbd; }

.fs-dropdown-open .fs-dropdown-options {
  opacity: 1; }

.fs-dropdown-options {
  margin-top: 3px;
  box-shadow: 0 3px 14px 0 rgba(0, 0, 0, 0.18);
  border: solid 1px #b7b7b7;
  -webkit-animation: dropdown-open .1s;
          animation: dropdown-open .1s; }

.fs-dropdown-item {
  font-size: 1em;
  line-height: 1.5;
  text-align: left;
  color: #232636;
  padding: 10px 15px; }
  .fs-dropdown-item:focus {
    outline: none; }
  .fs-dropdown-item:hover {
    background: #f5f5f5; }

.fs-dropdown-item_selected {
  background: #f5f5f5;
  color: #ec223a; }

.fs-dropdown-disabled {
  pointer-events: none; }
  .fs-dropdown-disabled:after {
    color: #bbb; }
  .fs-dropdown-disabled select {
    border: solid 1px #d9d9d9;
    color: #bbb;
    background-color: #f5f5f5; }

input[type='checkbox'] {
  visibility: hidden;
  position: absolute; }
  input[type='checkbox'] + label {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  input[type='checkbox'] + label:before {
    content: ' ';
    width: 24px;
    height: 24px;
    font-size: 15px;
    border: solid 1px #d9d9d9;
    margin-right: 5px;
    padding: 3px;
    white-space: pre;
    line-height: 1;
    transition: border 0.2s; }
  input[type='checkbox']:checked + label:before {
    font-family: 'icomoon';
    content: "\f00c";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 15px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  input[type='checkbox'] + label:hover:before {
    border: solid 1px #232636; }
  input[type='checkbox']:checked + label:before {
    border: solid 1px #232636; }

input[type='radio'] {
  visibility: hidden;
  position: absolute; }
  input[type='radio'] + label {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  input[type='radio'] + label:before {
    content: ' ';
    font-size: 14px;
    font-family: icomoon;
    width: 24px;
    height: 24px;
    border: solid 1px #bbb;
    border-radius: 48px;
    margin-right: 5px;
    padding: 4px 0px 0px 5px;
    white-space: pre;
    line-height: 1;
    transition: border 0.2s; }
  input[type='radio']:checked + label:before {
    font-family: 'icomoon';
    content: "\f111";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 14px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  input[type='radio'] + label:hover:before {
    border: solid 1px #232636; }
  input[type='radio']:checked + label:before {
    border: solid 1px #bbb; }

.styleguide .title {
  margin-top: 0; }

.styleguide section.primary {
  padding: 30px 0;
  border-bottom: 1px solid #bbb; }

.styleguide section.secondary:not(:last-child) {
  padding-bottom: 30px; }

.styleguide .button {
  background: transparent;
  border: 0;
  border-style: solid;
  border-width: 4px;
  border-radius: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block; }
  .styleguide .button.primary {
    border-image-slice: 1;
    color: #c00;
    border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
    .styleguide .button.primary:hover {
      background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
      color: #fff; }
    .styleguide .button.primary:disabled {
      opacity: 0.35;
      cursor: not-allowed; }
      .styleguide .button.primary:disabled:hover {
        opacity: 0.35;
        background-image: inherit;
        color: #cc0000; }
  .styleguide .button.secondary {
    border-color: #e6e6e6;
    color: #6f6f6f; }
    .styleguide .button.secondary:hover {
      border-color: #6f6f6f; }
    .styleguide .button.secondary:disabled {
      border-color: #e6e6e6;
      color: #6f6f6f;
      cursor: not-allowed; }
      .styleguide .button.secondary:disabled:hover {
        border-color: #e6e6e6;
        color: #6f6f6f; }

.styleguide .form-actions button,
.styleguide .form-actions input[type='submit'],
.styleguide .form-actions input[type='button'] {
  background: transparent;
  border: 0;
  border-style: solid;
  border-width: 4px;
  border-radius: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block; }
  .styleguide .form-actions button.primary,
  .styleguide .form-actions input[type='submit'].primary,
  .styleguide .form-actions input[type='button'].primary {
    border-image-slice: 1;
    color: #c00;
    border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
    .styleguide .form-actions button.primary:hover,
    .styleguide .form-actions input[type='submit'].primary:hover,
    .styleguide .form-actions input[type='button'].primary:hover {
      background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
      color: #fff; }
    .styleguide .form-actions button.primary:disabled,
    .styleguide .form-actions input[type='submit'].primary:disabled,
    .styleguide .form-actions input[type='button'].primary:disabled {
      opacity: 0.35;
      cursor: not-allowed; }
      .styleguide .form-actions button.primary:disabled:hover,
      .styleguide .form-actions input[type='submit'].primary:disabled:hover,
      .styleguide .form-actions input[type='button'].primary:disabled:hover {
        opacity: 0.35;
        background-image: inherit;
        color: #cc0000; }
  .styleguide .form-actions button.secondary,
  .styleguide .form-actions input[type='submit'].secondary,
  .styleguide .form-actions input[type='button'].secondary {
    border-color: #e6e6e6;
    color: #6f6f6f; }
    .styleguide .form-actions button.secondary:hover,
    .styleguide .form-actions input[type='submit'].secondary:hover,
    .styleguide .form-actions input[type='button'].secondary:hover {
      border-color: #6f6f6f; }
    .styleguide .form-actions button.secondary:disabled,
    .styleguide .form-actions input[type='submit'].secondary:disabled,
    .styleguide .form-actions input[type='button'].secondary:disabled {
      border-color: #e6e6e6;
      color: #6f6f6f;
      cursor: not-allowed; }
      .styleguide .form-actions button.secondary:disabled:hover,
      .styleguide .form-actions input[type='submit'].secondary:disabled:hover,
      .styleguide .form-actions input[type='button'].secondary:disabled:hover {
        border-color: #e6e6e6;
        color: #6f6f6f; }

.styleguide .form-actions button[type='submit'],
.styleguide .form-actions input[type='submit'] {
  border-image-slice: 1;
  color: #c00;
  border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
  .styleguide .form-actions button[type='submit']:hover,
  .styleguide .form-actions input[type='submit']:hover {
    background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
    color: #fff; }
  .styleguide .form-actions button[type='submit']:disabled,
  .styleguide .form-actions input[type='submit']:disabled {
    opacity: 0.35;
    cursor: not-allowed; }
    .styleguide .form-actions button[type='submit']:disabled:hover,
    .styleguide .form-actions input[type='submit']:disabled:hover {
      opacity: 0.35;
      background-image: inherit;
      color: #cc0000; }

.styleguide .form-actions button[tye='button'],
.styleguide .form-actions button:not([type='submit']),
.styleguide .form-actions input[type='button'] {
  border-color: #e6e6e6;
  color: #6f6f6f; }
  .styleguide .form-actions button[tye='button']:hover,
  .styleguide .form-actions button:not([type='submit']):hover,
  .styleguide .form-actions input[type='button']:hover {
    border-color: #6f6f6f; }
  .styleguide .form-actions button[tye='button']:disabled,
  .styleguide .form-actions button:not([type='submit']):disabled,
  .styleguide .form-actions input[type='button']:disabled {
    border-color: #e6e6e6;
    color: #6f6f6f;
    cursor: not-allowed; }
    .styleguide .form-actions button[tye='button']:disabled:hover,
    .styleguide .form-actions button:not([type='submit']):disabled:hover,
    .styleguide .form-actions input[type='button']:disabled:hover {
      border-color: #e6e6e6;
      color: #6f6f6f; }

/*# sourceMappingURL=maps/styleguide.css.map */

@charset "UTF-8";
.hero-container .home-page-hero .video-controls-overlay .play-video p {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

/* Containers */
.main-container {
  padding: 0; }

.container-main {
  padding-left: 16px;
  padding-right: 16px;
  width: auto; }
  @media screen and (min-width: 560px) {
    .container-main {
      padding-left: 16px;
      padding-right: 16px;
      width: auto; } }
  @media screen and (min-width: 992px) {
    .container-main {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 1200px) {
    .container-main {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }

.container-margin {
  margin-bottom: 64px; }
  @media screen and (min-width: 560px) {
    .container-margin {
      margin-bottom: 120px; } }
  @media screen and (min-width: 768px) {
    .container-margin {
      margin-bottom: 40px;
      margin-top: 40px; } }
  @media screen and (min-width: 992px) {
    .container-margin {
      margin-bottom: 40px;
      margin-top: 40px; } }
  @media screen and (min-width: 1200px) {
    .container-margin {
      margin-bottom: 40px;
      margin-top: 40px; } }

.equal-cols-container .njit-flex-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between; }
  .equal-cols-container .njit-flex-row .njit-flex-col {
    -ms-flex: 1;
        flex: 1; }

.equal-cols-container .njit-flex-row {
  margin-left: -20px;
  margin-right: -20px; }
  .equal-cols-container .njit-flex-row .njit-flex-col {
    margin-left: 20px !important;
    margin-right: 20px !important; }

.equal-cols-container .njit-flex-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.equal-cols-container .njit-flex-row {
  -ms-flex-align: stretch;
      align-items: stretch; }

.equal-cols-container .njit-flex-row .njit-flex-col {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.equal-cols-container .njit-flex-row {
  -ms-flex-direction: column;
      flex-direction: column; }

@media screen and (min-width: 560px) {
  .equal-cols-container .njit-flex-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
        align-content: space-between; }
    .equal-cols-container .njit-flex-row .njit-flex-col {
      -ms-flex: 1;
          flex: 1; }
  .equal-cols-container .njit-flex-row {
    margin-left: -20px;
    margin-right: -20px; }
    .equal-cols-container .njit-flex-row .njit-flex-col {
      margin-left: 20px !important;
      margin-right: 20px !important; }
  .equal-cols-container .njit-flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .equal-cols-container .njit-flex-row {
    -ms-flex-align: stretch;
        align-items: stretch; }
  .equal-cols-container .njit-flex-row .njit-flex-col {
    -ms-flex-item-align: start;
        align-self: flex-start; }
  .equal-cols-container .njit-flex-row {
    -ms-flex-direction: row;
        flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden; } }

/* For breadcrumb container */
.breadcrumb-container {
  padding-top: 8px;
  padding-bottom: 8px; }
  @media screen and (min-width: 560px) {
    .breadcrumb-container {
      padding-top: 24px;
      padding-bottom: 24px; } }

/* For content container (3 cols layout) */
.content-container .njit-flex-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between; }
  .content-container .njit-flex-row .njit-flex-col {
    -ms-flex: 1;
        flex: 1; }

.content-container .njit-flex-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.content-container .njit-flex-row {
  -ms-flex-align: stretch;
      align-items: stretch; }

.content-container .njit-flex-row .njit-flex-col {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.content-container .njit-flex-row {
  -ms-flex-direction: column;
      flex-direction: column; }

@media screen and (min-width: 560px) {
  .content-container .njit-flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .content-container .njit-flex-row {
    -ms-flex-align: stretch;
        align-items: stretch; }
  .content-container .njit-flex-row .njit-flex-col {
    -ms-flex-item-align: start;
        align-self: flex-start; }
  .content-container .njit-flex-row {
    -ms-flex-direction: row;
        flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden; } }

@media screen and (min-width: 992px) {
  .content-container {
    padding-left: 8px;
    padding-right: 20px; }
    .content-container .njit-flex-row {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }

.content-container .njit-flex-col {
  -ms-flex: auto !important;
      flex: auto !important; }
  .content-container .njit-flex-col .block {
    margin-bottom: 24px; }
    .content-container .njit-flex-col .block:last-child {
      margin-bottom: 0; }
    @media screen and (min-width: 560px) {
      .content-container .njit-flex-col .block {
        margin-bottom: 40px; } }
    .content-container .njit-flex-col .block h5.title {
      margin: 0 0 16px 0; }

.content-container .layout-sidebars .sidebar-first {
  width: 100%; }
  @media screen and (min-width: 560px) {
    .content-container .layout-sidebars .sidebar-first {
      width: 269px;
      min-width: 269px;
      max-width: 269px;
      -ms-flex: 0 0 269px;
          flex: 0 0 269px; } }

.content-container .layout-sidebars .sidebar-content {
  -ms-flex: 1;
      flex: 1;
  padding: 27px 0 58px 0; }
  @media screen and (min-width: 560px) {
    .content-container .layout-sidebars .sidebar-content {
      padding: 0 40px 0 28px; } }

.content-container .layout-sidebars .sidebar-second {
  width: 100%; }
  @media screen and (min-width: 560px) {
    .content-container .layout-sidebars .sidebar-second {
      width: 245px;
      min-width: 245px;
      max-width: 245px;
      -ms-flex: 0 0 245px;
          flex: 0 0 245px; } }

.content-container .layout-sidebar-first .sidebar-first {
  width: 100%; }
  @media screen and (min-width: 560px) {
    .content-container .layout-sidebar-first .sidebar-first {
      width: 269px;
      min-width: 269px;
      max-width: 269px;
      -ms-flex: 0 0 269px;
          flex: 0 0 269px; } }

.content-container .layout-sidebar-first .sidebar-content {
  -ms-flex: 1;
      flex: 1;
  padding: 27px 0 0 0; }
  @media screen and (min-width: 560px) {
    .content-container .layout-sidebar-first .sidebar-content {
      padding: 0 0 0 28px; } }

.content-container .layout-sidebar-second .sidebar-content {
  -ms-flex: 1;
      flex: 1;
  padding: 0 0 0 0; }
  @media screen and (min-width: 560px) {
    .content-container .layout-sidebar-second .sidebar-content {
      padding: 0 40px 0 0; } }

.content-container .layout-sidebar-second .sidebar-second {
  width: 100%; }
  @media screen and (min-width: 560px) {
    .content-container .layout-sidebar-second .sidebar-second {
      width: 245px;
      min-width: 245px;
      max-width: 245px;
      -ms-flex: 0 0 245px;
          flex: 0 0 245px; } }

/* For hero section */
@media screen and (min-width: 560px) {
  .hero-container .home-page-hero {
    display: -ms-flexbox;
    display: flex; } }

.hero-container .home-page-hero .majors-navigation-container {
  display: none;
  position: fixed;
  z-index: 10;
  top: 136px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
  padding-top: 8px;
  padding-bottom: 8px; }
  @media screen and (min-width: 992px) {
    .hero-container .home-page-hero .majors-navigation-container {
      display: block; } }

.hero-container .home-page-hero .majors-navigation {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  padding: 0 10px !important; }
  @media screen and (min-width: 560px) {
    .hero-container .home-page-hero .majors-navigation {
      padding-left: 16px;
      padding-right: 16px; } }
  @media screen and (min-width: 768px) {
    .hero-container .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 720px; } }
  @media screen and (min-width: 992px) {
    .hero-container .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 960px; } }
  @media screen and (min-width: 1200px) {
    .hero-container .home-page-hero .majors-navigation {
      padding-left: 20px;
      padding-right: 20px;
      width: 1140px; } }
  .hero-container .home-page-hero .majors-navigation > * {
    margin: 0 8px; }

.hero-container .home-page-hero .majors-mobile {
  overflow-x: scroll;
  overflow-y: hidden;
  height: 50px;
  position: fixed;
  z-index: 1;
  top: 52px;
  background: #fff;
  box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.2);
  width: 100%; }
  .hero-container .home-page-hero .majors-mobile .majors-mobile-navigation {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: end;
        align-items: flex-end;
    height: 100%; }
  .hero-container .home-page-hero .majors-mobile .link {
    color: #6f6f6f;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 2px;
    white-space: nowrap;
    border-bottom: 4px solid #f5f5f5;
    text-decoration: none; }
    .hero-container .home-page-hero .majors-mobile .link.active {
      font-weight: bold;
      color: #232636;
      letter-spacing: -.3px;
      border-bottom: 4px solid #c00; }
  @media screen and (min-width: 992px) {
    .hero-container .home-page-hero .majors-mobile {
      display: none; } }

.hero-container .home-page-hero .picture-container {
  position: relative;
  height: 100%; }
  @media screen and (min-width: 560px) {
    .hero-container .home-page-hero .picture-container {
      max-width: 500px;
      margin-right: 25px; } }
  @media screen and (min-width: 992px) {
    .hero-container .home-page-hero .picture-container {
      margin-right: 55px;
      max-width: 645px; } }

.hero-container .home-page-hero .title {
  font-size: 32px;
  line-height: 1.13;
  letter-spacing: -.4px;
  margin-top: 5px;
  margin-bottom: 16px;
  color: #232636; }
  @media screen and (min-width: 560px) {
    .hero-container .home-page-hero .title {
      font-size: 40px;
      line-height: 1.06;
      margin-top: 10px;
      margin-bottom: 60px; } }
  @media screen and (min-width: 992px) {
    .hero-container .home-page-hero .title {
      font-size: 56px; } }
  @media screen and (min-width: 1200px) {
    .hero-container .home-page-hero .title {
      font-size: 65px; } }

.hero-container .home-page-hero .picture {
  max-width: 100%;
  position: relative;
  z-index: 0; }

.hero-container .home-page-hero .video-controls-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0; }
  .hero-container .home-page-hero .video-controls-overlay .play-video {
    bottom: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    display: -ms-flexbox;
    display: flex;
    position: static;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    height: 100%; }
    @media screen and (min-width: 560px) {
      .hero-container .home-page-hero .video-controls-overlay .play-video {
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        height: auto;
        -ms-flex-pack: start;
            justify-content: flex-start; } }
    .hero-container .home-page-hero .video-controls-overlay .play-video::before {
      color: #fff; }
    .hero-container .home-page-hero .video-controls-overlay .play-video .label-play {
      text-transform: uppercase;
      position: relative;
      color: #fff;
      display: none; }
      @media screen and (min-width: 560px) {
        .hero-container .home-page-hero .video-controls-overlay .play-video .label-play {
          display: inline-block;
          min-width: 120px; } }
      @media screen and (min-width: 768px) {
        .hero-container .home-page-hero .video-controls-overlay .play-video .label-play::after {
          content: '|';
          margin: 0 15px; } }
    .hero-container .home-page-hero .video-controls-overlay .play-video .icon-play:before {
      font-family: 'icomoon';
      content: "\e904";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 16px;
      /* Better Font Rendering =========== */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .hero-container .home-page-hero .video-controls-overlay .play-video .icon-play::before {
      display: block;
      margin-right: 0;
      border-radius: 80px;
      width: 80px;
      height: 80px;
      line-height: 80px;
      background: rgba(0, 0, 0, 0.5);
      font-size: 32px;
      margin-top: -50px;
      padding-left: 8px; }
      @media screen and (min-width: 560px) {
        .hero-container .home-page-hero .video-controls-overlay .play-video .icon-play::before {
          display: inline;
          margin-right: 8px;
          border-radius: initial;
          line-height: 1;
          background: rgba(0, 0, 0, 0.5);
          font-size: 16px;
          margin-top: 0;
          padding-left: 0; } }
    .hero-container .home-page-hero .video-controls-overlay .play-video p {
      display: none;
      color: #fff;
      max-width: 414px;
      width: 100%; }
      @media screen and (min-width: 768px) {
        .hero-container .home-page-hero .video-controls-overlay .play-video p {
          display: inline-block;
          padding: 0;
          margin: 0;
          line-height: 1.25;
          text-align: left; } }
  .hero-container .home-page-hero .video-controls-overlay:hover {
    cursor: pointer; }
    .hero-container .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
      background: rgba(204, 0, 0, 0.6); }
    @media screen and (min-width: 560px) {
      .hero-container .home-page-hero .video-controls-overlay:hover .play-video {
        background-color: rgba(204, 0, 0, 0.6); }
        .hero-container .home-page-hero .video-controls-overlay:hover .play-video .icon-play::before {
          background: initial; } }
  .hero-container .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play:before {
    font-family: 'icomoon';
    content: "\e904";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 80px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .hero-container .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
    display: block;
    margin-right: 0;
    border-radius: 175px;
    width: 175px;
    height: 175px;
    line-height: 175px;
    padding-left: 20px;
    margin-top: 0; }
    @media screen and (min-width: 560px) {
      .hero-container .home-page-hero .video-controls-overlay--home-page-hero .play-video .icon-play::before {
        display: inline;
        margin-right: 8px;
        border-radius: initial;
        line-height: 1;
        background: rgba(0, 0, 0, 0.5);
        font-size: 20px;
        padding-left: 0; } }

.hero-container .home-page-hero .content {
  position: relative;
  margin-top: -48px;
  margin-left: 16px;
  margin-right: 16px;
  padding: 16px;
  background: #fff; }
  @media screen and (min-width: 560px) {
    .hero-container .home-page-hero .content {
      padding: 0;
      margin: 0;
      position: static;
      max-width: 570px; } }

.hero-container .home-page-hero .description {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: -.4px;
  color: #232636; }
  @media screen and (min-width: 560px) {
    .hero-container .home-page-hero .description {
      font-size: 24px;
      line-height: 1.33;
      margin-bottom: 16px; } }

.hero-container .home-page-hero .explore-degrees {
  color: #c00; }
  .hero-container .home-page-hero .explore-degrees:after {
    font-family: 'icomoon';
    content: "\f061";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 20px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .hero-container .home-page-hero .explore-degrees:hover {
    color: #ec223a; }
  .hero-container .home-page-hero .explore-degrees::after {
    margin-left: 4px; }

.hero-container .home-page-hero .majors {
  display: none; }
  @media screen and (min-width: 992px) {
    .hero-container .home-page-hero .majors {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -9px; }
      .hero-container .home-page-hero .majors > * {
        margin-right: 9px;
        margin-left: 9px;
        margin-bottom: 18px; } }

.hero-container .home-page-hero .button {
  border: 1px solid #d9d9d9;
  border-radius: 11px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.5px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #6f6f6f;
  width: 178px;
  height: 72px;
  padding: 12px 23px;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all .2s;
  cursor: pointer; }
  .hero-container .home-page-hero .button.active {
    border-image-slice: 1;
    background-image: linear-gradient(292deg, #e00e1f, #dd152d 47%, #750d42);
    color: #fff;
    border-color: transparent; }
  .hero-container .home-page-hero .button:hover:not(.active) {
    color: #232636;
    border-color: #232636; }
  .hero-container .home-page-hero .button--navigation {
    font-size: 16px;
    line-height: 1.25;
    width: 170px;
    height: 56px;
    padding: 6px 19px; }
  .hero-container .home-page-hero .button--content {
    font-size: 20px;
    line-height: 1.2;
    width: 178px;
    height: 72px;
    padding: 12px 24px; }

/* For stats section */
.stats-container .njit-flex-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between; }
  .stats-container .njit-flex-row .njit-flex-col {
    -ms-flex: 1;
        flex: 1; }

.stats-container .njit-flex-row {
  margin-left: -4px;
  margin-right: -4px; }
  .stats-container .njit-flex-row .njit-flex-col {
    margin-left: 4px !important;
    margin-right: 4px !important; }

.stats-container .njit-flex-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }

.stats-container .njit-flex-row {
  -ms-flex-align: stretch;
      align-items: stretch; }

.stats-container .njit-flex-row .njit-flex-col {
  -ms-flex-item-align: end;
      align-self: flex-end; }

.stats-container .njit-flex-row {
  -ms-flex-direction: row;
      flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden; }

@media screen and (max-width: 560px) {
  .stats-container .njit-flex-row {
    margin-left: -20px;
    margin-right: -20px; }
    .stats-container .njit-flex-row .njit-flex-col {
      margin-left: 4px !important;
      margin-right: 4px !important; }
      .stats-container .njit-flex-row .njit-flex-col:first-child {
        margin-left: 20px !important; }
      .stats-container .njit-flex-row .njit-flex-col:last-child {
        padding-right: 20px !important; } }

@media screen and (min-width: 560px) {
  .stats-container .njit-flex-row {
    margin-left: -20px;
    margin-right: -20px; }
    .stats-container .njit-flex-row .njit-flex-col {
      margin-left: 20px !important;
      margin-right: 20px !important; }
  .stats-container .njit-flex-row .njit-flex-col {
    min-width: 340px; }
  .stats-container .njit-flex-row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .stats-container .njit-flex-row {
    -ms-flex-align: stretch;
        align-items: stretch; }
  .stats-container .njit-flex-row .njit-flex-col {
    -ms-flex-item-align: end;
        align-self: flex-end; }
  .stats-container .njit-flex-row {
    -ms-flex-direction: row;
        flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden; } }

.node-type-two-column-alt- .sidebar-second .text-image-callout, .node-type-two-column .sidebar-second .text-image-callout {
  margin-left: 20px; }

.node-type-two-column-alt- .sidebar-second .related-links, .node-type-two-column .sidebar-second .related-links {
  margin-left: 20px;
  line-height: normal; }
  .node-type-two-column-alt- .sidebar-second .related-links h4, .node-type-two-column .sidebar-second .related-links h4 {
    margin-top: 0; }
  .node-type-two-column-alt- .sidebar-second .related-links ul, .node-type-two-column-alt- .sidebar-second .related-links ol, .node-type-two-column .sidebar-second .related-links ul, .node-type-two-column .sidebar-second .related-links ol {
    margin-left: 30px;
    color: #6f6f6f; }
    .node-type-two-column-alt- .sidebar-second .related-links ul li, .node-type-two-column-alt- .sidebar-second .related-links ol li, .node-type-two-column .sidebar-second .related-links ul li, .node-type-two-column .sidebar-second .related-links ol li {
      line-height: normal; }

.node-type-two-column-alt- .sidebar-content ul, .node-type-two-column-alt- .sidebar-content ol, .node-type-two-column .sidebar-content ul, .node-type-two-column .sidebar-content ol {
  margin-left: 30px;
  color: #6f6f6f; }

.node-type-two-column-alt- .sidebar-content a, .node-type-two-column .sidebar-content a {
  color: #c00; }

.node-type-two-column-alt- .sidebar-content .stats-container .njit-flex-row .njit-flex-col, .node-type-two-column .sidebar-content .stats-container .njit-flex-row .njit-flex-col {
  min-width: initial;
  min-height: 250px !important;
  height: 250px !important; }
  .node-type-two-column-alt- .sidebar-content .stats-container .njit-flex-row .njit-flex-col .text-only-callout--4-col h4, .node-type-two-column .sidebar-content .stats-container .njit-flex-row .njit-flex-col .text-only-callout--4-col h4 {
    font-size: 20px; }

.node-type-two-column-alt- .sidebar-content .container-main, .node-type-two-column .sidebar-content .container-main {
  width: initial; }

/* For testimonial section */
.testimonial-container .njit-flex-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between; }
  .testimonial-container .njit-flex-row .njit-flex-col {
    -ms-flex: 1;
        flex: 1; }

.testimonial-container .njit-flex-row {
  margin-left: -4px;
  margin-right: -4px; }
  .testimonial-container .njit-flex-row .njit-flex-col {
    margin-left: 4px !important;
    margin-right: 4px !important; }

.testimonial-container .njit-flex-row .njit-flex-col {
  min-width: 245px; }

.testimonial-container .njit-flex-row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }

.testimonial-container .njit-flex-row {
  -ms-flex-align: stretch;
      align-items: stretch; }

.testimonial-container .njit-flex-row .njit-flex-col {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.testimonial-container .njit-flex-row {
  -ms-flex-direction: row;
      flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden; }

@media screen and (max-width: 560px) {
  .testimonial-container .njit-flex-row {
    margin-left: -20px;
    margin-right: -20px; }
    .testimonial-container .njit-flex-row .njit-flex-col {
      margin-left: 4px !important;
      margin-right: 4px !important; }
      .testimonial-container .njit-flex-row .njit-flex-col:first-child {
        margin-left: 20px !important; }
      .testimonial-container .njit-flex-row .njit-flex-col:last-child {
        padding-right: 20px !important; }
  .testimonial-container .njit-flex-col:last-child {
    min-width: 265px; } }
  @media screen and (max-width: 560px) and (min-width: 560px) {
    .testimonial-container .njit-flex-col:last-child {
      min-width: 245px; } }

@media screen and (min-width: 560px) {
  .testimonial-container .njit-flex-row {
    margin-left: -20px;
    margin-right: -20px; }
    .testimonial-container .njit-flex-row .njit-flex-col {
      margin-left: 20px !important;
      margin-right: 20px !important; }
  .testimonial-container .njit-flex-row .njit-flex-col {
    min-width: 245px; }
  .testimonial-container .njit-flex-row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .testimonial-container .njit-flex-row {
    -ms-flex-align: stretch;
        align-items: stretch; }
  .testimonial-container .njit-flex-row .njit-flex-col {
    -ms-flex-item-align: start;
        align-self: flex-start; }
  .testimonial-container .njit-flex-row {
    -ms-flex-direction: row;
        flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden; } }

/* For learn about NJIT section */
.learn-about-container .njit-flex-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between; }
  .learn-about-container .njit-flex-row .njit-flex-col {
    -ms-flex: 1;
        flex: 1; }

.learn-about-container .njit-flex-row {
  margin-left: -8px;
  margin-right: -8px; }
  .learn-about-container .njit-flex-row .njit-flex-col {
    margin-left: 8px !important;
    margin-right: 8px !important; }

.learn-about-container .njit-flex-row .njit-flex-col {
  min-width: calc(50% - 16px); }

.learn-about-container .njit-flex-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.learn-about-container .njit-flex-row {
  -ms-flex-align: stretch;
      align-items: stretch; }

.learn-about-container .njit-flex-row .njit-flex-col {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.learn-about-container .njit-flex-row {
  -ms-flex-direction: row;
      flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden; }

@media screen and (min-width: 560px) {
  .learn-about-container .njit-flex-row {
    margin-left: -20px;
    margin-right: -20px; }
    .learn-about-container .njit-flex-row .njit-flex-col {
      margin-left: 20px !important;
      margin-right: 20px !important; }
  .learn-about-container .njit-flex-row .njit-flex-col {
    min-width: 150px; }
  .learn-about-container .njit-flex-row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .learn-about-container .njit-flex-row {
    -ms-flex-align: stretch;
        align-items: stretch; }
  .learn-about-container .njit-flex-row .njit-flex-col {
    -ms-flex-item-align: start;
        align-self: flex-start; }
  .learn-about-container .njit-flex-row {
    -ms-flex-direction: row;
        flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden; } }

.learn-about-container a.button {
  background: transparent;
  border: 0;
  border-style: solid;
  border-width: 4px;
  border-radius: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  width: 100%;
  min-height: 130px;
  height: 130px;
  font-size: 24px;
  display: table;
  width: 100%; }
  .learn-about-container a.button.primary {
    border-image-slice: 1;
    color: #c00;
    border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
    .learn-about-container a.button.primary:hover {
      background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
      color: #fff; }
    .learn-about-container a.button.primary:disabled {
      opacity: 0.35;
      cursor: not-allowed; }
      .learn-about-container a.button.primary:disabled:hover {
        opacity: 0.35;
        background-image: inherit;
        color: #cc0000; }
  .learn-about-container a.button.secondary {
    border-color: #e6e6e6;
    color: #6f6f6f; }
    .learn-about-container a.button.secondary:hover {
      border-color: #6f6f6f; }
    .learn-about-container a.button.secondary:disabled {
      border-color: #e6e6e6;
      color: #6f6f6f;
      cursor: not-allowed; }
      .learn-about-container a.button.secondary:disabled:hover {
        border-color: #e6e6e6;
        color: #6f6f6f; }
  .learn-about-container a.button span {
    display: table-cell;
    vertical-align: middle; }

.learn-about-container .njit-flex-row {
  margin-left: -8px;
  margin-right: -8px; }
  @media screen and (min-width: 560px) {
    .learn-about-container .njit-flex-row {
      margin-left: -20px;
      margin-right: -20px; } }
  .learn-about-container .njit-flex-row .njit-flex-col {
    margin-bottom: 16px; }
    @media screen and (min-width: 560px) {
      .learn-about-container .njit-flex-row .njit-flex-col {
        margin-bottom: 0; } }

/* For illustrated callout section */
.illustrated-callout-container-full-width {
  background: #f5f5f5; }
  @media screen and (min-width: 560px) {
    .illustrated-callout-container-full-width {
      margin-bottom: 0;
      margin-top: 60px;
      max-width: 100%; } }
  .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
        align-content: space-between; }
    .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row .njit-flex-col {
      -ms-flex: 1;
          flex: 1; }
  .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
    -ms-flex-align: stretch;
        align-items: stretch; }
  .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row .njit-flex-col {
    -ms-flex-item-align: end;
        align-self: flex-end; }
  .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
    -ms-flex-direction: column;
        flex-direction: column; }
  @media screen and (min-width: 560px) {
    .illustrated-callout-container-full-width .illustrated-callout-container {
      max-width: 1440px; }
      .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
      .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
        -ms-flex-align: stretch;
            align-items: stretch; }
      .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row .njit-flex-col {
        -ms-flex-item-align: end;
            align-self: flex-end; }
      .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
        -ms-flex-direction: row;
            flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden; } }
  @media screen and (min-width: 992px) {
    .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }
  .illustrated-callout-container-full-width .illustrated-callout-container {
    margin-bottom: 0;
    padding: 48px 0 48px 0; }
    .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row .njit-flex-col {
      width: 100%;
      margin-bottom: 48px; }
      .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row .njit-flex-col:last-child {
        margin-bottom: 0; }
      @media screen and (min-width: 560px) {
        .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row .njit-flex-col {
          margin-bottom: 48px; } }
      @media screen and (min-width: 992px) {
        .illustrated-callout-container-full-width .illustrated-callout-container .njit-flex-row .njit-flex-col {
          margin-bottom: 0; } }
    @media screen and (min-width: 560px) {
      .illustrated-callout-container-full-width .illustrated-callout-container {
        padding: 0 0 0px 0;
        position: relative;
        top: -120px; } }

/* For apply NJIT container */
.apply-njit-container h3.title {
  margin: 0 0 16px 0 !important; }

.apply-njit-container h4.subtitle {
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  letter-spacing: -0.5px;
  color: #767676;
  margin: 0 0 24px 0 !important; }

.apply-njit-container .tabbed-content {
  padding-bottom: 0;
  margin-bottom: 64px; }
  @media screen and (min-width: 560px) {
    .apply-njit-container .tabbed-content {
      margin-bottom: 0px; } }

.apply-njit-container .find-your-admissions-counselor {
  margin-bottom: 64px; }
  @media screen and (min-width: 560px) {
    .apply-njit-container .find-your-admissions-counselor {
      margin-bottom: 80px; } }

/* For application container */
.application-container .tabbed-content {
  padding-bottom: 0;
  margin-bottom: 64px; }
  @media screen and (min-width: 560px) {
    .application-container .tabbed-content {
      margin-bottom: 0px; } }

/* For local navigation */
.local-navigation .menu > li > a {
  max-width: 100%; }

@media screen and (min-width: 992px) {
  .two-column-layout {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px); }
    .two-column-layout::after {
      clear: both;
      content: "";
      display: block; } }

@media screen and (min-width: 992px) {
  .two-column-layout .left-rail {
    width: calc(25% - 25px);
    float: left;
    margin-left: 20px; } }

@media screen and (min-width: 992px) {
  .two-column-layout .right-rail {
    width: calc(75% - 35px);
    float: left;
    margin-left: 20px; } }

@media screen and (min-width: 560px) {
  .container-inline .njit-flex-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
        align-content: space-between; }
    .container-inline .njit-flex-row .njit-flex-col {
      -ms-flex: 1;
          flex: 1; }
  .container-inline .njit-flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .container-inline .njit-flex-row {
    -ms-flex-align: stretch;
        align-items: stretch; }
  .container-inline .njit-flex-row {
    margin-left: -10px;
    margin-right: -10px; }
    .container-inline .njit-flex-row .njit-flex-col {
      margin-left: 10px !important;
      margin-right: 10px !important; } }

.container-inline .njit-flex-col {
  margin-bottom: 15px; }
  @media screen and (min-width: 560px) {
    .container-inline .njit-flex-col {
      margin: 0; } }

/*# sourceMappingURL=maps/page-shared.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.page-department .hero-container {
  margin-bottom: 44px; }
  .page-department .hero-container .text-block {
    padding-bottom: 40px; }
    .page-department .hero-container .text-block h5.subtitle {
      margin-top: 9px;
      margin-bottom: 9px; }
    .page-department .hero-container .text-block h3.title {
      padding: 0;
      margin: 0 0 26px 0; }
  @media screen and (min-width: 560px) {
    .page-department .hero-container {
      margin-bottom: 48px; } }

.page-department .content-container {
  margin-bottom: 24px; }
  @media screen and (min-width: 560px) {
    .page-department .content-container {
      margin-bottom: 200px; } }
  .page-department .content-container .sidebar-content p {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #6f6f6f;
    margin-bottom: 24px; }
  .page-department .content-container .sidebar-content .mb-0 {
    margin-bottom: 0; }
  .page-department .content-container .sidebar-content h5.paragraph-title {
    margin-top: 24px;
    margin-bottom: 16px; }
    @media screen and (min-width: 560px) {
      .page-department .content-container .sidebar-content h5.paragraph-title {
        margin-top: 36px;
        margin-bottom: 16px; } }
  .page-department .content-container .sidebar-content .tabbed-content {
    padding-bottom: 0; }
    .page-department .content-container .sidebar-content .tabbed-content .tab-content {
      padding-top: 27px; }
      .page-department .content-container .sidebar-content .tabbed-content .tab-content h5:first-child {
        margin-top: 0; }
  .page-department .content-container .sidebar-second h5.title {
    margin-bottom: 14px; }
    @media screen and (min-width: 560px) {
      .page-department .content-container .sidebar-second h5.title {
        margin-bottom: 16px; } }

/*# sourceMappingURL=maps/page-department.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.page-home {
  margin-top: 46px; }
  @media screen and (min-width: 992px) {
    .page-home {
      margin-top: 40px; } }
  .page-home h3.title {
    font-size: 22px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.09;
    letter-spacing: -0.4px;
    text-align: left;
    color: #242637;
    margin: 0 0 24px 0;
    min-height: 24px; }
    @media screen and (min-width: 560px) {
      .page-home h3.title {
        font-size: 32px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.25;
        letter-spacing: -0.4px;
        text-align: left;
        color: #242637;
        margin: 0 0 40px 0; } }
  .page-home .hero-container {
    margin-bottom: 48px; }
    @media screen and (min-width: 560px) {
      .page-home .hero-container {
        margin-bottom: 80px; } }
  .page-home .stats-container {
    margin-bottom: 64px; }
    @media screen and (min-width: 560px) {
      .page-home .stats-container {
        margin-bottom: 105px; } }
  @media screen and (min-width: 560px) {
    .page-home .testimonial-container h3.title {
      margin-bottom: 20px; } }
  .page-home .testimonial-container .njit-flex-col:first-child {
    display: none; }
    @media screen and (min-width: 560px) {
      .page-home .testimonial-container .njit-flex-col:first-child {
        display: block; } }
  .page-home .testimonial-container .njit-flex-col:nth-child(2) {
    margin-left: 20px !important; }
    @media screen and (min-width: 560px) {
      .page-home .testimonial-container .njit-flex-col:nth-child(2) {
        margin-left: 0px; } }
  .page-home .learn-about-container {
    margin-bottom: 48px; }
    @media screen and (min-width: 560px) {
      .page-home .learn-about-container {
        margin-bottom: 120px; } }
    .page-home .learn-about-container h3.title {
      display: none; }
      @media screen and (min-width: 560px) {
        .page-home .learn-about-container h3.title {
          display: block;
          margin-bottom: 50px; } }
  .page-home .overviews-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media screen and (min-width: 560px) {
      .page-home .overviews-container {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        margin-bottom: 200px; } }
    .page-home .overviews-container > * {
      margin-bottom: 64px; }
      .page-home .overviews-container > *:last-child {
        margin-bottom: 0; }
      @media screen and (min-width: 560px) {
        .page-home .overviews-container > * {
          margin-bottom: 0; }
          .page-home .overviews-container > *:first-child {
            margin-right: 40px; } }
  .page-home .social-media-container {
    margin-bottom: 64px; }
    @media screen and (min-width: 560px) {
      .page-home .social-media-container {
        margin-bottom: 111px; } }
    .page-home .social-media-container .social-media-overview .widget {
      margin-bottom: 0; }
    .page-home .social-media-container .social-media-overview .description {
      max-width: 345px; }

/*# sourceMappingURL=maps/page-home.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.page-admissions {
  margin-top: 0px; }
  @media screen and (min-width: 992px) {
    .page-admissions {
      margin-top: 0px; } }
  .page-admissions h3.title {
    font-size: 22px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.09;
    letter-spacing: -0.4px;
    text-align: left;
    color: #242637;
    margin: 0 0 24px 0;
    min-height: 24px; }
    @media screen and (min-width: 560px) {
      .page-admissions h3.title {
        font-size: 32px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.25;
        letter-spacing: -0.4px;
        text-align: left;
        color: #242637;
        margin: 0 0 24px 0; } }
  .page-admissions .hero-container {
    margin-bottom: 64px; }
    @media screen and (min-width: 560px) {
      .page-admissions .hero-container {
        margin-bottom: 32px; } }
  .page-admissions .promos-container {
    margin-bottom: 49px; }
    @media screen and (min-width: 560px) {
      .page-admissions .promos-container {
        margin-bottom: 105px; } }
    .page-admissions .promos-container h3.title {
      margin: 24px 0; }
      @media screen and (min-width: 560px) {
        .page-admissions .promos-container h3.title {
          margin: 0 0 24px 0; } }
  .page-admissions .stats-container {
    margin-bottom: 49px; }
    @media screen and (min-width: 560px) {
      .page-admissions .stats-container {
        margin-bottom: 105px; } }
  @media screen and (min-width: 560px) {
    .page-admissions .testimonial-container h3.title {
      margin-bottom: 20px; } }
  .page-admissions .testimonial-container .njit-flex-col:first-child {
    display: none; }
    @media screen and (min-width: 560px) {
      .page-admissions .testimonial-container .njit-flex-col:first-child {
        display: block; } }
  .page-admissions .testimonial-container .njit-flex-col:nth-child(2) {
    margin-left: 20px !important; }
    @media screen and (min-width: 560px) {
      .page-admissions .testimonial-container .njit-flex-col:nth-child(2) {
        margin-left: 0px; } }
  .page-admissions .apply-njit-container .check-application-status .submit-button {
    margin-bottom: 0; }
  .page-admissions .application-container {
    margin-bottom: 64px; }
    @media screen and (min-width: 560px) {
      .page-admissions .application-container {
        margin-bottom: 200px; } }

/*# sourceMappingURL=maps/page-admissions.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.page-apply .hero-container {
  margin-bottom: 44px; }
  .page-apply .hero-container .text-block {
    padding-bottom: 40px; }
    .page-apply .hero-container .text-block h5.subtitle {
      margin-top: 9px;
      margin-bottom: 9px; }
    .page-apply .hero-container .text-block h3.title {
      padding: 0;
      margin: 0 0 26px 0; }
  @media screen and (min-width: 560px) {
    .page-apply .hero-container {
      margin-bottom: 48px; } }

.page-apply .local-navigation [data-collapsible-toggle] {
  display: block !important; }
  @media screen and (min-width: 560px) {
    .page-apply .local-navigation [data-collapsible-toggle] {
      display: block !important; } }
  @media screen and (min-width: 992px) {
    .page-apply .local-navigation [data-collapsible-toggle] {
      display: none !important; } }

.page-apply .content-container {
  margin-bottom: 24px; }
  @media screen and (min-width: 560px) {
    .page-apply .content-container {
      margin-bottom: 200px; } }
  .page-apply .content-container .sidebar-content p {
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #6f6f6f;
    margin-bottom: 24px; }
  .page-apply .content-container .sidebar-content .mb-0 {
    margin-bottom: 0; }
  .page-apply .content-container .sidebar-content h5.paragraph-title {
    margin-top: 24px;
    margin-bottom: 16px; }
    @media screen and (min-width: 560px) {
      .page-apply .content-container .sidebar-content h5.paragraph-title {
        margin-top: 36px;
        margin-bottom: 16px; } }
  .page-apply .content-container .sidebar-content .tabs-space {
    margin-bottom: 48px; }
    @media screen and (min-width: 560px) {
      .page-apply .content-container .sidebar-content .tabs-space {
        margin-bottom: 90px; } }
  .page-apply .content-container .sidebar-content .tabbed-content {
    padding-bottom: 0; }
    .page-apply .content-container .sidebar-content .tabbed-content h3.title {
      font-size: 22px;
      font-weight: bold;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.09;
      letter-spacing: -0.4px;
      text-align: left;
      color: #242637;
      margin: 0 0 24px 0;
      min-height: 24px; }
      @media screen and (min-width: 560px) {
        .page-apply .content-container .sidebar-content .tabbed-content h3.title {
          font-size: 32px;
          font-weight: bold;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.25;
          letter-spacing: -0.4px;
          text-align: left;
          color: #242637;
          margin: 0 0 20px 0; } }
    .page-apply .content-container .sidebar-content .tabbed-content .tab-content {
      padding-top: 27px; }
      .page-apply .content-container .sidebar-content .tabbed-content .tab-content h5:first-child {
        margin-top: 0; }
      .page-apply .content-container .sidebar-content .tabbed-content .tab-content p:last-child {
        margin-bottom: 0; }
  .page-apply .content-container .sidebar-second h5.title {
    margin-bottom: 14px; }
    @media screen and (min-width: 560px) {
      .page-apply .content-container .sidebar-second h5.title {
        margin-bottom: 16px; } }

@media screen and (max-width: 991px) {
  .page-apply .content-container .layout-sidebar-first .sidebar-first {
    width: 100%;
    max-width: 100%; }
  .page-apply .content-container .layout-sidebar-first .sidebar-content {
    padding: 27px 0 0 0 !important; } }

/*# sourceMappingURL=maps/page-apply.css.map */

.lhn-back-to-parent, a.lhn-back-to-parent {
  padding: 12px;
  margin-left: 8px;
  color: #999;
  border-bottom: solid 3px #ccc;
  font-weight: bold;
  display: none;
  line-height: 1.25; }

.content-container .layout-sidebar-first .sidebar-content, .content-container .layout-sidebar-first .sidebar-first {
  box-sizing: border-box; }

/* Any drupal specific overrides */
.the-content-col ol, .the-content-col ul {
  margin: 40px;
  margin-left: 40px; }

.njit-content-well {
  padding-top: 60px; }

.node-type-two-column-alt- .hero-text-only {
  margin-bottom: 46px; }

.local-navigation .menu > li .menu--submenu li {
  list-style: none; }

.local-navigation .menu.menu--submenu .active > a {
  background-color: transparent; }

ul.checklist {
  list-style-type: none; }

ul.checklist li:before {
  content: "\2713\0020"; }

.homepage-image-gallery, .homepage-testimonials, .homepage-stats-row {
  display: none; }

.njit-flex-col.sidebar-content .text-paragraph ul {
  margin-bottom: 20px;
  margin-left: 20px;
  color: #6f6f6f; }

@media screen and (min-width: 768px) {
  .text-only-callout--homepage h4 {
    font-size: 32px; } }

.homepage-image-gallery {
  display: none; }

.show-brick-row {
  display: block; }

.gallery-item-tagged {
  display: none; }

/* Added by Aslam */
a {
  color: #cc0000; }

.text-only-callout a {
  color: #fff !important; }

.container-main .sidebar-content img {
  width: 100%;
  height: auto; }

/* Academic Fixes */
.csla .social-row {
  margin-bottom: 20px; }

.csla .social-row a {
  text-align: center;
  width: 25%; }

.node-type-one-column-homepage-.management .equal-cols-container img {
  width: 100%; }

.page-news .news-landing .autorship {
  text-transform: uppercase;
  color: #6f6f6f; }

.page-news .news-landing .image-caption {
  display: none; }

/* Legacy Admin Theme Fixes */
.sidebar-content .node-njit-page ul, .sidebar-content .node-njit-page ol {
  margin-left: 30px; }

.text-only-callout--3-col * {
  color: white;
  font-size: 16px; }

.text-only-callout--3-col .subheadline {
  border-bottom: 1px solid white;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
  font-family: Poppins,sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 10px; }

.text-only-callout--3-col .ctext a {
  position: relative;
  padding: 0px;
  border: none;
  color: #6ab3fc; }

.text-only-callout--3-col .ctext a::after {
  content: none; }

.related-links a {
  display: list-item;
  list-style-position: inside;
  list-style-type: none; }

.rtecenter {
  text-align: center !important; }

table {
  width: 100%;
  border-collapse: collapse; }
  table thead tr th {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #242637;
    border-bottom: 2px solid #242637; }
    table thead tr th:first-child {
      padding-left: 0; }
    table thead tr th:last-child {
      padding-right: 0; }
    table thead tr th.code {
      width: 116px; }
    table thead tr th.title {
      width: auto; }
    table thead tr th.credits {
      width: 116px; }
    table thead tr th.more {
      width: 109px; }
  table tbody tr td {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #6f6f6f;
    border-bottom: 1px solid #b8b8b8; }
    table tbody tr td:first-child {
      padding-left: 0; }
    table tbody tr td:last-child {
      padding-right: 0; }
  table tbody tr.opened td {
    border-bottom: none; }
  table tbody tr.more-info-row.opened {
    display: table-row; }
    table tbody tr.more-info-row.opened td {
      border-bottom: 1px solid #b8b8b8;
      padding-bottom: 24px; }
    table tbody tr.more-info-row.opened:last-child td {
      border-bottom: none; }
  table tbody tr:last-child td,
  table tbody tr:nth-last-child(1) td {
    border-bottom: none; }

/* please utilize sass below! */
/* Increase width of container to fit Campus Directory */
nav.user-navigation > ul li.expandable ul {
  min-width: 155px; }

/* fix for google search scroll bars /krane */
.gsc-tabsArea > div {
  height: 30px;
  overflow: hidden !important; }

/* Text Paragraph Style */
/* INDENT THIS BELOW, this is TOO HARD TO READ! */
/* */
.text-paragraph {
  /*max-width: 815px; */
  width: 100%; }
  .text-paragraph .text-title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 16px; }
  .text-paragraph p {
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.5; }
  .text-paragraph .text {
    /* max-width: 530px; */
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px; }
  .text-paragraph .external-link:after {
    font-family: 'icomoon';
    content: "\f08e";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 16px;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-left: 4px; }
  .text-paragraph .links {
    padding-left: 30px; }
    .text-paragraph .links li {
      margin-bottom: 16px;
      line-height: 1.25;
      padding-left: 5px; }
    .text-paragraph .links a {
      color: #c00; }
      .text-paragraph .links a:hover {
        text-decoration: underline;
        color: #ec223a; }

@media screen and (min-width: 560px) {
  .text-paragraph .text {
    margin-right: 40px;
    margin-bottom: 0; }
  .text-paragraph .links li {
    padding-right: 30px; }
  .text-paragraph {
    -ms-flex-direction: row;
    flex-direction: row; } }

/* for custom main menu */
.mega-nav .menu-block-list.first, .mega-nav .menu-block-edit, .mega-nav .block-configure {
  display: none; }

.mega-nav ul.menu li {
  display: inline-block;
  position: relative; }

.mega-nav ul.menu li a, .mega-nav ul.menu li.active a {
  color: #fff;
  background-color: transparent;
  font-weight: normal;
  cursor: pointer; }

.mega-nav ul.menu li ul.menu--submenu {
  display: none !important;
  position: absolute;
  left: 0;
  min-width: 200px;
  top: 44px;
  border: none;
  background-color: red;
  z-index: 1000000;
  background-color: red;
  margin: 0 !important;
  padding: 0 !important;
  background-image: linear-gradient(to left, #d11717, #e00e1f 35%, #dd152d 51%, #750d42); }

.mega-nav ul.menu li:hover ul.menu--submenu {
  display: block !important; }
  .mega-nav ul.menu li:hover ul.menu--submenu ul.menu--submenu {
    display: none !important; }

.mega-nav ul.menu li:hover a, .mega-nav ul.menu li.active a.active {
  border-bottom: 4px solid #6ab3fc;
  color: #fff;
  padding-bottom: 8px; }

.mega-nav ul.menu li ul.menu--submenu li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff; }

.mega-nav ul.menu li ul.menu--submenu li a {
  color: #fff;
  padding: 0 !important;
  padding: 10px !important;
  border-bottom: none !important; }

.mega-nav ul.menu li ul.menu--submenu li ul {
  display: none !important; }

@media screen and (min-width: 992px) {
  .lhn-back-to-parent, a.lhn-back-to-parent {
    display: block; }
  .mega-nav .local-navigation .active-with-children > *:not(.active) {
    display: inline-block !important; }
  .local-navigation {
    max-width: initial !important; }
  .local-navigation [data-collapsible-content] {
    overflow: visible !important; } }

/*# sourceMappingURL=maps/drupal-theme.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.profile-overlay {
  max-width: 1100px;
  padding: 24px 16px;
  position: relative;
  background: #fff; }
  .profile-overlay a,
  .profile-overlay a:link,
  .profile-overlay a:visited {
    color: #cc0000; }
  .profile-overlay a:hover {
    color: #ec223a; }
  .profile-overlay i.fa {
    width: 24px;
    height: 24px;
    overflow: hidden;
    font-size: 24px;
    color: #B7B7B7;
    margin-right: 8px;
    vertical-align: middle;
    text-align: center;
    position: relative;
    top: -2px;
    display: inline-block; }
  .profile-overlay .grey-bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 277px;
    background: #f5f5f5; }
  .profile-overlay .hero-bg {
    width: auto;
    height: 270px;
    margin: -24px -16px 0 -16px;
    position: relative; }
    .profile-overlay .hero-bg img {
      width: 100%;
      height: 270px; }
      .profile-overlay .hero-bg img.mobile {
        display: block; }
      .profile-overlay .hero-bg img.desktop {
        display: none; }
    .profile-overlay .hero-bg:after {
      content: ' ';
      width: auto;
      height: 30px;
      display: block;
      position: absolute;
      bottom: 0;
      left: 16px;
      right: 16px;
      background: #fff; }
  @media screen and (min-width: 560px) {
    .profile-overlay .hero-bg {
      width: auto;
      height: 450px;
      position: relative;
      left: 0;
      right: 0;
      top: 0;
      overflow: hidden;
      margin: -64px -95px -30px -95px; }
      .profile-overlay .hero-bg img {
        width: auto;
        height: 450px; }
        .profile-overlay .hero-bg img.mobile {
          display: none; }
        .profile-overlay .hero-bg img.desktop {
          display: block; }
      .profile-overlay .hero-bg:after {
        content: ' ';
        width: 760px;
        height: 94px;
        display: block;
        position: absolute;
        bottom: 0;
        left: auto;
        right: 0;
        background: #fff; } }
  .profile-overlay .summary {
    position: relative;
    z-index: 1;
    margin-bottom: 24px; }
    .profile-overlay .summary .img {
      padding: 32px 49px 0 49px;
      margin-bottom: 24px;
      background: linear-gradient(to bottom right, #c5c5c5, white); }
      .profile-overlay .summary .img img {
        width: 245px;
        height: 245px;
        margin-left: auto;
        margin-right: auto; }
        @media screen and (max-width: 355px) {
          .profile-overlay .summary .img img {
            width: 100%;
            height: auto; } }
    .profile-overlay .summary .info .name {
      font-size: 32px;
      font-weight: bold;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.13;
      letter-spacing: -0.4px;
      text-align: center;
      color: #242637;
      margin-bottom: 4px; }
    .profile-overlay .summary .info .email {
      font-size: 16px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: left;
      color: #cc0000; }
    .profile-overlay .summary .info .position {
      font-size: 16px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: center;
      color: #242637;
      margin-bottom: 24px; }
    .profile-overlay .summary .info .email {
      margin-bottom: 8px; }
    .profile-overlay .summary .info .contact > div {
      width: 50%;
      float: left;
      min-height: 44px;
      margin-bottom: 12px; }
      .profile-overlay .summary .info .contact > div .number {
        font-size: 16px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: #6f6f6f; }
      .profile-overlay .summary .info .contact > div .desc {
        font-size: 12px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.33;
        letter-spacing: normal;
        text-align: left;
        color: #6f6f6f;
        margin-top: 4px;
        padding-left: 37px;
        opacity: 0.5; }
      .profile-overlay .summary .info .contact > div .opacity-50 {
        opacity: 0.5; }
      .profile-overlay .summary .info .contact > div i, .profile-overlay .summary .info .contact > div span {
        display: inline-block; }
    .profile-overlay .summary .info .contact .phone1 {
      width: 183px;
      display: table-cell;
      float: none; }
    .profile-overlay .summary .info .contact .phone2 {
      width: auto;
      display: table-cell;
      float: none; }
      .profile-overlay .summary .info .contact .phone2 .desc {
        padding-left: 0; }
    .profile-overlay .summary .info .contact .address {
      display: block;
      width: 100%;
      float: none;
      min-height: 0;
      margin-bottom: 0;
      margin-top: 12px; }
  .profile-overlay .details {
    position: relative;
    z-index: 1; }
    .profile-overlay .details .tabbed-content {
      width: 100%;
      float: none;
      margin: 0;
      padding: 0; }
      .profile-overlay .details .tabbed-content .tabbed-nav {
        margin-bottom: 16px; }
        .profile-overlay .details .tabbed-content .tabbed-nav .wide-load a:last-child {
          padding-right: 0 !important; }
      .profile-overlay .details .tabbed-content .tab-content {
        padding: 0; }
      .profile-overlay .details .tabbed-content .items .item {
        display: block;
        margin-bottom: 24px; }
        .profile-overlay .details .tabbed-content .items .item:last-child {
          margin-bottom: 0; }
        .profile-overlay .details .tabbed-content .items .item .label {
          display: block;
          font-size: 16px;
          font-weight: bold;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.5;
          letter-spacing: -0.4px;
          text-align: left;
          color: #242637;
          margin-bottom: 8px; }
        .profile-overlay .details .tabbed-content .items .item .desc {
          font-size: 16px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.5;
          letter-spacing: normal;
          text-align: left;
          color: #6f6f6f; }
        .profile-overlay .details .tabbed-content .items .item .experience.separator {
          margin-bottom: 35px; }
        .profile-overlay .details .tabbed-content .items .item .website {
          font-size: 16px;
          font-weight: normal;
          font-style: normal;
          font-stretch: normal;
          line-height: 1.5;
          letter-spacing: normal;
          text-align: left;
          color: #cc0000; }
          .profile-overlay .details .tabbed-content .items .item .website:hover {
            color: #ec223a; }
  @media screen and (min-width: 768px) {
    .profile-overlay {
      padding: 64px 95px; }
      .profile-overlay .grey-bg {
        height: 285px; }
      .profile-overlay .summary {
        display: table;
        width: 100%;
        border-collapse: collapse; }
        .profile-overlay .summary .img {
          width: 245px;
          display: table-cell;
          vertical-align: top;
          padding: 0; }
        .profile-overlay .summary .info {
          width: auto;
          display: table-cell;
          vertical-align: top;
          padding-left: 40px; }
          .profile-overlay .summary .info .name {
            font-size: 32px;
            font-weight: bold;
            font-style: normal;
            font-stretch: normal;
            line-height: 1.13;
            letter-spacing: -0.4px;
            text-align: left;
            color: #242637;
            margin-bottom: 4px; }
          .profile-overlay .summary .info .position {
            font-size: 16px;
            font-weight: normal;
            font-style: normal;
            font-stretch: normal;
            line-height: 1.5;
            letter-spacing: normal;
            text-align: left;
            color: #242637;
            margin-bottom: 36px; }
          .profile-overlay .summary .info .email {
            margin-bottom: 24px; }
          .profile-overlay .summary .info .contact {
            display: table;
            width: 100%; }
            .profile-overlay .summary .info .contact > div {
              float: none;
              margin-bottom: 0; }
            .profile-overlay .summary .info .contact .phone1 {
              display: table-cell;
              width: 175px;
              max-width: 175px;
              padding-right: 20px; }
            .profile-overlay .summary .info .contact .phone2 {
              display: table-cell;
              width: 161px;
              max-width: 161px;
              padding-right: 40px; }
            .profile-overlay .summary .info .contact .address {
              display: table-cell;
              width: auto; }
      .profile-overlay .details {
        padding-left: 285px; }
        .profile-overlay .details .tabbed-content .tabbed-nav .wide-load {
          width: auto !important; }
        .profile-overlay .details .tabbed-content .items .item {
          display: table;
          width: 100%;
          border-collapse: collapse;
          margin-bottom: 36px; }
          .profile-overlay .details .tabbed-content .items .item .label {
            display: table-cell;
            vertical-align: top;
            width: 133px;
            padding-right: 40px;
            font-size: 16px;
            font-weight: bold;
            font-style: normal;
            font-stretch: normal;
            line-height: 1.5;
            letter-spacing: -0.4px;
            text-align: left;
            color: #242637; }
          .profile-overlay .details .tabbed-content .items .item .desc {
            display: table-cell;
            vertical-align: top;
            width: auto;
            font-size: 16px;
            font-weight: normal;
            font-style: normal;
            font-stretch: normal;
            line-height: 1.5;
            letter-spacing: normal;
            text-align: left;
            color: #6f6f6f; } }

#profile_overlay_option2 .profile-overlay .hero-bg .img {
  height: 270px;
  overflow: hidden; }
  @media screen and (min-width: 560px) {
    #profile_overlay_option2 .profile-overlay .hero-bg .img {
      height: 450px; } }

#profile_overlay_option2 .profile-overlay .hero-bg img.mobile {
  width: 100%;
  height: auto;
  min-height: 270px; }

#profile_overlay_option2 .profile-overlay .summary .info {
  padding-left: 0;
  background: #fff; }
  @media screen and (min-width: 560px) {
    #profile_overlay_option2 .profile-overlay .summary .info {
      padding-left: 285px;
      background: none; } }
  #profile_overlay_option2 .profile-overlay .summary .info .name {
    padding: 0 18px 0 14px;
    background: #fff; }
    @media screen and (min-width: 560px) {
      #profile_overlay_option2 .profile-overlay .summary .info .name {
        padding: 0; } }
  #profile_overlay_option2 .profile-overlay .summary .info .position {
    padding: 0 18px 0 14px; }
    @media screen and (min-width: 560px) {
      #profile_overlay_option2 .profile-overlay .summary .info .position {
        padding: 0; } }

/*# sourceMappingURL=maps/profile-overlay.css.map */

@charset "UTF-8";
.degree-finder .subtitle, .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .link a {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: normal; }

.degree-finder .button, .degree-finder a.button, .degree-finder #degree-finder-type .form-element button.active, .degree-finder #degree-finder-main #degree-finder-filters .form-element > div > label, .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .title, #degree-finder-compare-selected-bar .controls button, #degree-finder-compare-selected-bar .controls a {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700; }

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.is-honors-banner {
  font-size: 20px;
  padding: 20px;
  background-color: #efefef;
  margin: 20px; }

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-line-scale,
.la-line-scale > div {
  position: relative;
  box-sizing: border-box; }

.la-line-scale {
  display: block;
  font-size: 0;
  color: #fff; }

.la-line-scale.la-dark {
  color: #333; }

.la-line-scale > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor; }

.la-line-scale {
  width: 40px;
  height: 32px; }

.la-line-scale > div {
  width: 4px;
  height: 32px;
  margin: 2px;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  -webkit-animation: line-scale 1.2s infinite ease;
  animation: line-scale 1.2s infinite ease; }

.la-line-scale > div:nth-child(1) {
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s; }

.la-line-scale > div:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.la-line-scale > div:nth-child(3) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s; }

.la-line-scale > div:nth-child(4) {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s; }

.la-line-scale > div:nth-child(5) {
  -webkit-animation-delay: -.8s;
  animation-delay: -.8s; }

.la-line-scale.la-sm {
  width: 20px;
  height: 16px; }

.la-line-scale.la-sm > div {
  width: 2px;
  height: 16px;
  margin: 1px;
  margin-top: 0;
  margin-bottom: 0; }

.la-line-scale.la-2x {
  width: 80px;
  height: 64px; }

.la-line-scale.la-2x > div {
  width: 8px;
  height: 64px;
  margin: 4px;
  margin-top: 0;
  margin-bottom: 0; }

.la-line-scale.la-3x {
  width: 120px;
  height: 96px; }

.la-line-scale.la-3x > div {
  width: 12px;
  height: 96px;
  margin: 6px;
  margin-top: 0;
  margin-bottom: 0; }

/*
 * Animation
 */
@-webkit-keyframes line-scale {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

@keyframes line-scale {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
    transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

@-webkit-keyframes fadeIn {
  0% {
    height: 0%;
    opacity: 0; }
  1% {
    height: 100%;
    opacity: 0; }
  100% {
    height: 100%;
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    height: 0%;
    opacity: 0; }
  1% {
    height: 100%;
    opacity: 0; }
  100% {
    height: 100%;
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  0% {
    height: 100%;
    opacity: 1; }
  99% {
    height: 100%;
    opacity: 0; }
  100% {
    height: 0%;
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    height: 100%;
    opacity: 1; }
  99% {
    height: 100%;
    opacity: 0; }
  100% {
    height: 0%;
    opacity: 0; } }

.degree-finder {
  min-height: 500px;
  position: relative; }
  .degree-finder .button, .degree-finder a.button {
    background: transparent;
    border: 0;
    border-style: solid;
    border-width: 4px;
    border-radius: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    display: block;
    padding: 16px;
    padding: 5px 10px !important;
    margin-bottom: 10px; }
    .degree-finder .button.primary, .degree-finder a.button.primary {
      border-image-slice: 1;
      color: #c00;
      border-image-source: linear-gradient(242deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41); }
      .degree-finder .button.primary:hover, .degree-finder a.button.primary:hover {
        background-image: linear-gradient(248deg, #ca2b20, #c00 32%, #c21949 72%, #6c0b41);
        color: #fff; }
      .degree-finder .button.primary:disabled, .degree-finder a.button.primary:disabled {
        opacity: 0.35;
        cursor: not-allowed; }
        .degree-finder .button.primary:disabled:hover, .degree-finder a.button.primary:disabled:hover {
          opacity: 0.35;
          background-image: inherit;
          color: #cc0000; }
    .degree-finder .button.secondary, .degree-finder a.button.secondary {
      border-color: #e6e6e6;
      color: #6f6f6f; }
      .degree-finder .button.secondary:hover, .degree-finder a.button.secondary:hover {
        border-color: #6f6f6f; }
      .degree-finder .button.secondary:disabled, .degree-finder a.button.secondary:disabled {
        border-color: #e6e6e6;
        color: #6f6f6f;
        cursor: not-allowed; }
        .degree-finder .button.secondary:disabled:hover, .degree-finder a.button.secondary:disabled:hover {
          border-color: #e6e6e6;
          color: #6f6f6f; }
    .degree-finder .button:hover, .degree-finder a.button:hover {
      color: #fff !important; }
  .degree-finder .field-filter-checkbox.filtered {
    background-color: #fff;
    cursor: pointer; }
  .degree-finder .field-filter-checkbox.notFiltered {
    background-color: #efefef;
    cursor: pointer; }
  .degree-finder .field-filter-checkbox.filtered.show-more {
    background-color: #efefef;
    cursor: pointer;
    font-size: 12px;
    padding: 10px !important;
    text-align: right; }
    .degree-finder .field-filter-checkbox.filtered.show-more .icono:after {
      font-family: 'icomoon';
      content: "\f078";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 11px;
      display: inline-block;
      width: 20px;
      color: #666; }
    .degree-finder .field-filter-checkbox.filtered.show-more .icono-not:after {
      font-family: 'icomoon';
      content: "\f00d";
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      font-size: 11px;
      display: inline-block;
      width: 20px;
      color: #666; }
  .degree-finder label {
    font-weight: normal; }
  .degree-finder .no-results-message {
    padding: 20px;
    background-color: #efefef;
    text-align: center; }
    .degree-finder .no-results-message p {
      margin: 0; }
  .degree-finder .clear-all-filters {
    display: block;
    cursor: pointer; }
    .degree-finder .clear-all-filters:hover {
      text-decoration: underline; }
  .degree-finder .df-loading-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    z-index: 3;
    overflow: none; }
    .degree-finder .df-loading-screen .la-line-scale {
      position: relative;
      left: 50%;
      top: 25%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      .degree-finder .df-loading-screen .la-line-scale div {
        background-color: #666; }
    .degree-finder .df-loading-screen.busy {
      -webkit-opacity: 1;
      -moz-opacity: 1;
      opacity: 1;
      height: 100%;
      -webkit-animation: fadeIn 0.5s ease-out;
      animation: fadeIn 0.5s ease-out; }
    .degree-finder .df-loading-screen.done {
      -webkit-opacity: 0;
      -moz-opacity: 0;
      opacity: 0;
      height: 0%;
      -webkit-animation: fadeOut 0.5s ease-out;
      animation: fadeOut 0.5s ease-out; }
  .degree-finder .subtitle {
    font-size: 24px;
    line-height: 1.33;
    color: #6f6f6f;
    margin-bottom: 1em;
    max-width: 815px; }
    .degree-finder .subtitle a {
      font-size: 24px;
      line-height: 1.33; }
  .degree-finder #degree-finder-sorts-and-ipp {
    padding: 16px 0 24px 0;
    text-align: right; }
    .degree-finder #degree-finder-sorts-and-ipp label {
      display: inline-block; }
    .degree-finder #degree-finder-sorts-and-ipp .w3-select .select-selected {
      display: inline-block; }
  .degree-finder .pagination {
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    display: -ms-flexbox;
    display: flex;
    margin: 80px 0 120px 0; }
    .degree-finder .pagination::after {
      clear: both;
      content: "";
      display: table; }
    .degree-finder .pagination li {
      padding: 8px 17px;
      float: left;
      margin: 0 10px; }
      .degree-finder .pagination li.active {
        background-color: #f5f5f5; }
      .degree-finder .pagination li:first-child, .degree-finder .pagination li:last-child {
        display: none; }
  .degree-finder #degree-finder-interest-list .form-element button {
    color: #000;
    outline: none; }
    .degree-finder #degree-finder-interest-list .form-element button.active {
      background-color: #6ab3fc;
      color: #fff;
      border: none; }
  .degree-finder #degree-finder-type {
    border-bottom: 4px solid #f5f5f5; }
    .degree-finder #degree-finder-type .form-element {
      margin-bottom: -4px; }
      .degree-finder #degree-finder-type .form-element button {
        border: none;
        color: #6f6f6f;
        background: transparent;
        outline: none;
        font-size: 16px; }
        .degree-finder #degree-finder-type .form-element button.active {
          color: #000;
          border-bottom: 4px solid #c00;
          outline: none; }
  .degree-finder #degree-finder-main {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px); }
    .degree-finder #degree-finder-main::after {
      clear: both;
      content: "";
      display: block; }
    .degree-finder #degree-finder-main #degree-finder-filters {
      width: calc(25% - 25px);
      float: left;
      margin-left: 20px; }
      .degree-finder #degree-finder-main #degree-finder-filters .form-element {
        margin-bottom: 20px; }
        .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset {
          border: none;
          margin: 12px 0;
          padding: 0; }
          .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div {
            padding-left: 35px;
            line-height: normal;
            padding-bottom: 10px;
            position: relative;
            padding-top: 10px;
            border-bottom: solid 1px #efefef; }
            .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type='checkbox'] {
              visibility: hidden;
              position: absolute; }
              .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type='checkbox'] + label {
                -webkit-user-select: none;
                   -moz-user-select: none;
                    -ms-user-select: none;
                        user-select: none;
                display: -ms-inline-flexbox;
                display: inline-flex; }
              .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type='checkbox'] + label:before {
                content: ' ';
                width: 24px;
                height: 24px;
                font-size: 15px;
                border: solid 1px #d9d9d9;
                margin-right: 5px;
                padding: 3px;
                white-space: pre;
                line-height: 1;
                transition: border 0.2s; }
              .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type='checkbox']:checked + label:before {
                font-family: 'icomoon';
                content: "\f00c";
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
                font-size: 15px;
                /* Better Font Rendering =========== */
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale; }
              .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type='checkbox'] + label:hover:before {
                border: solid 1px #232636; }
              .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type='checkbox']:checked + label:before {
                border: solid 1px #232636; }
            .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type=checkbox] + label:before {
              position: absolute;
              left: 5px;
              top: 10px;
              margin-right: 12px; }
        .degree-finder #degree-finder-main #degree-finder-filters .form-element .tooltip {
          position: relative;
          cursor: pointer; }
          .degree-finder #degree-finder-main #degree-finder-filters .form-element .tooltip .tooltip-text {
            font-family: 'Poppins', sans-serif;
            background-color: white;
            display: none;
            min-width: 200px;
            position: absolute;
            z-index: 10;
            padding: 5px;
            border-radius: 4px;
            border: black 1px solid; }
        .degree-finder #degree-finder-main #degree-finder-filters .form-element .tooltip:hover .tooltip-text {
          display: block; }
        .degree-finder #degree-finder-main #degree-finder-filters .form-element .tooltip {
          position: relative;
          cursor: pointer; }
          .degree-finder #degree-finder-main #degree-finder-filters .form-element .tooltip .tooltip-text {
            background-color: white;
            display: none;
            position: absolute;
            z-index: 10;
            padding: 5px;
            border-radius: 4px;
            border: black 1px solid; }
        .degree-finder #degree-finder-main #degree-finder-filters .form-element .tooltip:hover .tooltip-text {
          display: block; }
        .degree-finder #degree-finder-main #degree-finder-filters .form-element select {
          width: calc(100% - 45px); }
      .degree-finder #degree-finder-main #degree-finder-filters .search-field {
        position: relative; }
        .degree-finder #degree-finder-main #degree-finder-filters .search-field:before {
          font-family: 'icomoon';
          content: "\f001";
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          font-size: 24px;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
        .degree-finder #degree-finder-main #degree-finder-filters .search-field:before {
          position: absolute;
          color: rgba(36, 38, 55, 0.5);
          bottom: 16px;
          left: 13px; }
        .degree-finder #degree-finder-main #degree-finder-filters .search-field input {
          width: 100%;
          padding: 12px 12px 12px 43px;
          outline: none;
          line-height: 1.5; }
    .degree-finder #degree-finder-main #degree-finder-results {
      width: calc(75% - 35px);
      float: left;
      margin-left: 20px; }
      .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item {
        position: relative;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
        padding: 0px;
        list-style: none;
        height: 325px;
        margin-bottom: 20px;
        width: calc(33.33333% - 26.66667px);
        float: left;
        margin-left: 20px; }
        .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox {
          position: absolute;
          z-index: 2;
          width: 100%;
          left: 0;
          padding: 10px;
          font-size: 12px;
          color: #fff;
          background-color: rgba(0, 0, 0, 0.6); }
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type='checkbox'] {
            visibility: hidden;
            position: absolute; }
            .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type='checkbox'] + label {
              -webkit-user-select: none;
                 -moz-user-select: none;
                  -ms-user-select: none;
                      user-select: none;
              display: -ms-inline-flexbox;
              display: inline-flex; }
            .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type='checkbox'] + label:before {
              content: ' ';
              width: 24px;
              height: 24px;
              font-size: 15px;
              border: solid 1px #d9d9d9;
              margin-right: 5px;
              padding: 3px;
              white-space: pre;
              line-height: 1;
              transition: border 0.2s; }
            .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type='checkbox']:checked + label:before {
              font-family: 'icomoon';
              content: "\f00c";
              speak: none;
              font-style: normal;
              font-weight: normal;
              font-variant: normal;
              text-transform: none;
              line-height: 1;
              font-size: 15px;
              /* Better Font Rendering =========== */
              -webkit-font-smoothing: antialiased;
              -moz-osx-font-smoothing: grayscale; }
            .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type='checkbox'] + label:hover:before {
              border: solid 1px #232636; }
            .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type='checkbox']:checked + label:before {
              border: solid 1px #232636; }
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type=checkbox]:checked + label:hover:before,
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input[type=checkbox]:checked + label:before {
            border-color: #fff; }
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox .tooltip {
            display: none; }
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox:hover {
            cursor: pointer;
            background-color: rgba(236, 50, 42, 0.8); }
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox.checked {
            background-color: rgba(204, 0, 0, 0.8); }
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox input, .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .compare-checkbox label {
            pointer-events: none; }
        .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .image {
          width: calc(100% + 20px);
          margin-left: -20px;
          margin-right: -20px;
          height: 163px;
          background-size: cover; }
        .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .title {
          margin: 16px;
          line-height: 1.25; }
        .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .link {
          position: absolute;
          bottom: 5px;
          margin: auto;
          margin-bottom: 0;
          left: 0;
          right: 0;
          width: 70%; }
          .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .link a {
            font-size: 12px;
            font-weight: bold;
            color: #c00; }

.fs-tooltip {
  height: 500px; }

#degree-finder-compare-selected-bar {
  color: #fff;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 200;
  bottom: 0;
  left: 0; }
  #degree-finder-compare-selected-bar::after {
    clear: both;
    content: "";
    display: table; }
  #degree-finder-compare-selected-bar .inner-wrapper {
    min-height: 84px;
    position: relative;
    padding: 16px 270px 16px 0; }
  #degree-finder-compare-selected-bar a {
    color: white; }
  #degree-finder-compare-selected-bar .controls {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0; }
    #degree-finder-compare-selected-bar .controls button {
      background: transparent;
      border: none;
      outline: none;
      margin-right: 24px;
      text-transform: uppercase;
      color: #fff;
      font-size: 16px; }
      #degree-finder-compare-selected-bar .controls button:hover {
        cursor: pointer; }
    #degree-finder-compare-selected-bar .controls a {
      color: #fff;
      text-transform: uppercase;
      padding: 8px 12px;
      display: inline-block;
      border: 4px solid #fff; }
  #degree-finder-compare-selected-bar ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    display: -ms-flexbox;
    display: flex; }
    #degree-finder-compare-selected-bar ul > li {
      overflow: hidden;
      position: relative;
      padding: 12px 48px 12px 12px;
      background-color: #c00;
      color: #fff;
      font-size: 16px;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
      margin-right: 40px; }
      #degree-finder-compare-selected-bar ul > li:last-child {
        margin: 0; }
      #degree-finder-compare-selected-bar ul > li button {
        position: absolute;
        height: 100%;
        right: 0;
        width: 40px;
        top: 0;
        cursor: pointer;
        background-color: transparent;
        border: none;
        font-size: 0;
        color: #fff; }
        #degree-finder-compare-selected-bar ul > li button:before {
          font-family: 'icomoon';
          content: "\f00d";
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          font-size: 24px;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }
        #degree-finder-compare-selected-bar ul > li button:before {
          position: absolute;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

#degree-finder-compare-selected .compare-image {
  margin-top: 10px;
  border: solid 1px #ccc;
  width: 100%;
  background-size: cover;
  position: relative; }
  #degree-finder-compare-selected .compare-image:after {
    content: "";
    display: block;
    padding-bottom: 100%; }
  #degree-finder-compare-selected .compare-image img {
    width: 100% !important;
    height: auto !important; }

#degree-finder-compare-selected .large-text {
  font-size: 30px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px; }

#degree-finder-compare-selected .compare-summary {
  margin-bottom: 10px; }

#degree-finder-compare-selected .compare-summary, #degree-finder-compare-selected .compare-salary {
  margin-top: 20px; }
  #degree-finder-compare-selected .compare-summary .label, #degree-finder-compare-selected .compare-salary .label {
    font-weight: bold; }
  #degree-finder-compare-selected .compare-summary .value, #degree-finder-compare-selected .compare-salary .value {
    font-size: 30px;
    font-weight: bold; }
  #degree-finder-compare-selected .compare-summary .mid-salary, #degree-finder-compare-selected .compare-summary .starting-salary, #degree-finder-compare-selected .compare-salary .mid-salary, #degree-finder-compare-selected .compare-salary .starting-salary {
    border-top: solid 1px #ccc;
    padding-top: 15px;
    padding-bottom: 15px; }

#degree-finder-compare-selected .compare-group {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 0px;
  border-top: solid 1px #ccc; }

#degree-finder-compare-selected .view-details-btn {
  margin-bottom: 10px; }

#degree-finder-compare-selected .summary-content, #degree-finder-compare-selected .text-color {
  color: #6f6f6f; }

#degree-finder-compare-selected .degree-finder-compare-selected-inner > ul {
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0; }
  #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li {
    position: relative;
    background-color: #f5f5f5;
    padding: 20px 20px 84px 20px;
    margin-right: 20px;
    -ms-flex: 1 0 33%;
        flex: 1 0 33%;
    border: solid 1px #ccc; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li h4 {
      margin: 0;
      display: block;
      margin-top: 10px;
      margin-right: 0px;
      position: relative;
      margin-bottom: 20px; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li .button-remove {
      position: absolute;
      top: 0px;
      right: 0px;
      font-size: 0;
      color: #fff;
      background-color: #c21949;
      border: none;
      cursor: pointer;
      height: 25px;
      width: 25px;
      line-height: initial;
      display: block;
      padding: 0px; }
      #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li .button-remove:after {
        font-family: 'icomoon';
        content: "\f00d";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 21px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li:hover .button-remove {
      display: block; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li .view-details, #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li .learn-more {
      border: none;
      background-repeat: no-repeat;
      background-image: linear-gradient(to right, #750c42 0%, #e00e1e 100%), linear-gradient(to right, #750c42 0%, #e00e1e 100%);
      border-left: 4px solid #750c42;
      border-right: 4px solid #e00e1e;
      background-position: 0 0, 0 100%;
      background-size: 100% 4px;
      width: 100%;
      color: #c21949;
      background-color: transparent;
      text-transform: uppercase;
      padding: 10px 14px;
      line-height: 1.5;
      font-weight: bold;
      text-align: center; }
      #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li .view-details:hover, #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li .learn-more:hover {
        cursor: pointer;
        background-color: transparent; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li button.learn-more {
      position: absolute;
      bottom: 24px;
      left: 20px;
      width: calc(100% - 40px); }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul > li:last-child {
      margin-right: 0; }
  #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul .summary-title {
    margin-top: 24px; }
  #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul .field-content {
    padding-bottom: 10px; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul .field-content ul {
      list-style: none;
      padding-left: 16px; }
      #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul .field-content ul li {
        color: #6f6f6f;
        font-size: 16px;
        margin-left: 10px;
        margin-bottom: 0px;
        position: relative; }
        #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul .field-content ul li:before {
          content: "\2022";
          color: #c21949;
          font-size: 30px;
          position: absolute;
          left: -20px;
          margin-right: 10px; }
        #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul .field-content ul li:last-child {
          margin-bottom: 0; }
  #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul li.contain-search-tool {
    background-color: #f5f5f5;
    border: 1px solid #ccc; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul li.contain-search-tool label {
      display: block;
      text-transform: capitalize;
      position: relative; }
      #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul li.contain-search-tool label:before {
        font-family: 'icomoon';
        content: "\f078";
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        font-size: 12px;
        /* Better Font Rendering =========== */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
      #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul li.contain-search-tool label:before {
        position: absolute;
        right: 20px;
        bottom: -30px; }
    #degree-finder-compare-selected .degree-finder-compare-selected-inner > ul li.contain-search-tool select {
      width: 100%;
      padding: 12px;
      background-color: #fff;
      border: 1px solid #000;
      border-radius: 0;
      -webkit-appearance: none;
      height: 48px;
      margin-bottom: 24px;
      line-height: 1.5;
      outline: none; }

[v-cloak] {
  display: none; }

.mobile-filter-trigger {
  float: left;
  cursor: pointer;
  background-color: #efefef;
  border-radius: 5px;
  padding: 0px 10px;
  display: none; }
  .mobile-filter-trigger.on {
    padding-bottom: 50px;
    margin-bottom: -40px; }

#degree-finder-filters select {
  border: solid 1px #ccc;
  border-radius: 3px;
  box-shadow: inset 0px 0px 10px 1px #FEFEFE;
  background-color: #fff;
  color: grey;
  padding: 10px;
  border-radius: 0;
  -webkit-appearance: none; }

/* General selectors and styles designed to make the site look good on DESKTOP screens go here. But they affect all devices, and must be overridden by media queries targeting INCREASINGLY SMALLER screens */
@media (max-width: 979px) {
  /* Selectors and styles affecting screens UP TO 979px (Desktop) */ }

@media (max-width: 767px) {
  .mobile-filter-trigger {
    display: block; }
  /* Selectors and styles affecting screens UP TO 767px (Tablet) */
  .degree-finder #degree-finder-main #degree-finder-filters {
    width: 100%;
    position: absolute;
    background-color: #efefef;
    padding: 20px;
    z-index: 5;
    padding-bottom: 20px;
    top: 85px;
    display: none; }
    .degree-finder #degree-finder-main #degree-finder-filters .form-element {
      margin-bottom: 20px; }
  .degree-finder #degree-finder-main #degree-finder-filters .form-element fieldset > div input[type='checkbox'] + label:before {
    content: ' ';
    width: 24px;
    height: 24px;
    font-size: 15px;
    border: solid 1px #333;
    margin-right: 5px;
    padding: 3px;
    white-space: pre;
    line-height: 1;
    transition: border 0.2s; }
  .degree-finder .field-filter-checkbox.filtered {
    background-color: transparent;
    cursor: pointer; }
  .showFilterNav {
    display: block !important; }
  .degree-finder #degree-finder-main #degree-finder-results {
    width: 96%; } }

@media (max-width: 480px) {
  /* Selectors and styles affecting screens UP TO 480px (Phone) */
  .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item .title {
    font-size: 12px !important; }
  .degree-finder #degree-finder-main #degree-finder-results ul.degree-finder-results li.degree-finder-result-item {
    width: 45% !important;
    margin-left: 10px;
    height: 300px; } }

/*# sourceMappingURL=maps/degree-finder.css.map */

/**
 * Usages

.animation-slide-in-up{
  @include njit-animation(0, 0.5s, animation-slide-in-up, ease);
}

.animation-slide-in-down{
  @include njit-animation(0, 0.5s, animation-slide-in-down, ease);
}

.animation-slide-in-right{
  @include njit-animation(0, 0.5s, animation-slide-in-right, ease);
}

.animation-slide-in-left{
  @include njit-animation(0, 0.5s, animation-slide-in-left, ease);
}

.animation-slide-out-up{
  @include njit-animation(0, 0.5s, animation-slide-out-up, ease);
}

.animation-slide-out-down{
  @include njit-animation(0, 0.5s, animation-slide-out-down, ease);
}

.animation-slide-out-right{
  @include njit-animation(0, 0.5s, animation-slide-out-right, ease);
}

.animation-slide-out-left{
  @include njit-animation(0, 0.5s, animation-slide-out-left, ease);
}
*/
@-webkit-keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@keyframes animation-slide-out-up {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); } }

@-webkit-keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@keyframes animation-slide-out-down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); } }

@-webkit-keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes animation-slide-out-left {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@-webkit-keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes animation-slide-out-right {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  100% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@-webkit-keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-up {
  0% {
    -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-down {
  0% {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@-webkit-keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

@keyframes animation-slide-in-right {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); } }

.primary-table {
  max-width: 815px;
  font-family: Poppins; }
  .primary-table .mobile {
    display: block; }
  .primary-table .desktop {
    display: none; }
  @media screen and (min-width: 560px) {
    .primary-table .mobile {
      display: none; }
    .primary-table .desktop {
      display: block; } }
  .primary-table .text-right {
    text-align: right !important; }
  .primary-table a,
  .primary-table a:link,
  .primary-table a:visited {
    color: #cc0000; }
  .primary-table a:hover {
    color: #ec223a; }
  .primary-table .more-info-row {
    display: none; }
    .primary-table .more-info-row.opened {
      display: block; }
    .primary-table .more-info-row .more-info-details {
      padding: 16px;
      background: #f5f5f5; }
      .primary-table .more-info-row .more-info-details .title {
        font-size: 16px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: -0.4px;
        text-align: left;
        color: #242637;
        margin-bottom: 8px; }
      .primary-table .more-info-row .more-info-details .details {
        font-size: 16px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: #6f6f6f; }
  .primary-table button.more-info-button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #cc0000;
    cursor: pointer;
    outline: 0; }
    .primary-table button.more-info-button span {
      display: inline-block;
      width: 74px; }
    .primary-table button.more-info-button .fa {
      display: inline-block;
      margin-left: 4px; }
      .primary-table button.more-info-button .fa:before {
        font-size: 11px; }
    .primary-table button.more-info-button:hover {
      color: #ec223a; }
    .primary-table button.more-info-button.opened .fa-plus {
      display: none; }
    .primary-table button.more-info-button.opened .fa-minus {
      display: inline-block; }
    .primary-table button.more-info-button.closed .fa-plus {
      display: inline-block; }
    .primary-table button.more-info-button.closed .fa-minus {
      display: none; }
  .primary-table .mobile .items .item {
    border-top: 1px solid #d9d9d9; }
    .primary-table .mobile .items .item .table {
      display: table;
      width: 100%; }
      .primary-table .mobile .items .item .table .th {
        display: table-cell;
        vertical-align: top;
        width: 125px;
        padding-right: 32px;
        padding-bottom: 12px;
        font-size: 16px;
        font-weight: bold;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: #242637; }
      .primary-table .mobile .items .item .table .td {
        display: table-cell;
        vertical-align: top;
        width: auto;
        padding-bottom: 12px;
        font-size: 16px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: #6f6f6f; }
      .primary-table .mobile .items .item .table:first-child .th, .primary-table .mobile .items .item .table:first-child .td {
        padding-top: 12px; }
      .primary-table .mobile .items .item .table:last-child .th, .primary-table .mobile .items .item .table:last-child .td {
        padding-bottom: 0; }
    .primary-table .mobile .items .item .more-info-details {
      margin: 12px 0 24px 0; }
  .primary-table .desktop table {
    width: 100%;
    border-collapse: collapse; }
    .primary-table .desktop table thead tr th {
      padding: 12px 20px;
      font-size: 16px;
      font-weight: bold;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: left;
      color: #242637;
      border-bottom: 2px solid #242637; }
      .primary-table .desktop table thead tr th:first-child {
        padding-left: 0; }
      .primary-table .desktop table thead tr th:last-child {
        padding-right: 0; }
      .primary-table .desktop table thead tr th.code {
        width: 116px; }
      .primary-table .desktop table thead tr th.title {
        width: auto; }
      .primary-table .desktop table thead tr th.credits {
        width: 116px; }
      .primary-table .desktop table thead tr th.more {
        width: 109px; }
    .primary-table .desktop table tbody tr td {
      padding: 12px 20px;
      font-size: 16px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: left;
      color: #6f6f6f;
      border-bottom: 1px solid #b8b8b8; }
      .primary-table .desktop table tbody tr td:first-child {
        padding-left: 0; }
      .primary-table .desktop table tbody tr td:last-child {
        padding-right: 0; }
    .primary-table .desktop table tbody tr.opened td {
      border-bottom: none; }
    .primary-table .desktop table tbody tr.more-info-row.opened {
      display: table-row; }
      .primary-table .desktop table tbody tr.more-info-row.opened td {
        border-bottom: 1px solid #b8b8b8;
        padding-bottom: 24px; }
      .primary-table .desktop table tbody tr.more-info-row.opened:last-child td {
        border-bottom: none; }
    .primary-table .desktop table tbody tr:last-child td,
    .primary-table .desktop table tbody tr:nth-last-child(2) td {
      border-bottom: none; }

/*# sourceMappingURL=maps/primary-table.css.map */

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-grid-pulse {
  position: relative;
  box-sizing: border-box;
  display: block;
  font-size: 0;
  color: #fff;
  line-height: 1em;
  margin: auto;
  width: 36px;
  height: 36px; }
  .la-ball-grid-pulse > div {
    position: relative;
    box-sizing: border-box; }
  .la-ball-grid-pulse.la-dark {
    color: #333; }
  .la-ball-grid-pulse > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
    width: 8px;
    height: 8px;
    margin: 2px;
    border-radius: 100%;
    -webkit-animation-name: ball-grid-pulse;
    animation-name: ball-grid-pulse;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite; }
    .la-ball-grid-pulse > div:nth-child(1) {
      -webkit-animation-duration: .65s;
      animation-duration: .65s;
      -webkit-animation-delay: .03s;
      animation-delay: .03s; }
    .la-ball-grid-pulse > div:nth-child(2) {
      -webkit-animation-duration: 1.02s;
      animation-duration: 1.02s;
      -webkit-animation-delay: .09s;
      animation-delay: .09s; }
    .la-ball-grid-pulse > div:nth-child(3) {
      -webkit-animation-duration: 1.06s;
      animation-duration: 1.06s;
      -webkit-animation-delay: -.69s;
      animation-delay: -.69s; }
    .la-ball-grid-pulse > div:nth-child(4) {
      -webkit-animation-duration: 1.5s;
      animation-duration: 1.5s;
      -webkit-animation-delay: -.41s;
      animation-delay: -.41s; }
    .la-ball-grid-pulse > div:nth-child(5) {
      -webkit-animation-duration: 1.6s;
      animation-duration: 1.6s;
      -webkit-animation-delay: .04s;
      animation-delay: .04s; }
    .la-ball-grid-pulse > div:nth-child(6) {
      -webkit-animation-duration: .84s;
      animation-duration: .84s;
      -webkit-animation-delay: .07s;
      animation-delay: .07s; }
    .la-ball-grid-pulse > div:nth-child(7) {
      -webkit-animation-duration: .68s;
      animation-duration: .68s;
      -webkit-animation-delay: -.66s;
      animation-delay: -.66s; }
    .la-ball-grid-pulse > div:nth-child(8) {
      -webkit-animation-duration: .93s;
      animation-duration: .93s;
      -webkit-animation-delay: -.76s;
      animation-delay: -.76s; }
    .la-ball-grid-pulse > div:nth-child(9) {
      -webkit-animation-duration: 1.24s;
      animation-duration: 1.24s;
      -webkit-animation-delay: -.76s;
      animation-delay: -.76s; }
  .la-ball-grid-pulse.la-sm {
    width: 18px;
    height: 18px; }
    .la-ball-grid-pulse.la-sm > div {
      width: 4px;
      height: 4px;
      margin: 1px; }
  .la-ball-grid-pulse.la-2x {
    width: 72px;
    height: 72px; }
    .la-ball-grid-pulse.la-2x > div {
      width: 16px;
      height: 16px;
      margin: 4px; }
  .la-ball-grid-pulse.la-3x {
    width: 108px;
    height: 108px; }
    .la-ball-grid-pulse.la-3x > div {
      width: 24px;
      height: 24px;
      margin: 6px; }

/*
 * Animation
 */
@-webkit-keyframes ball-grid-pulse {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    opacity: .35;
    -webkit-transform: scale(0.45);
    transform: scale(0.45); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes ball-grid-pulse {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    opacity: .35;
    -webkit-transform: scale(0.45);
    transform: scale(0.45); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

/*# sourceMappingURL=maps/loader.css.map */

@charset "UTF-8";
.bootstrapped {
  /*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ }
  .bootstrapped html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }
  .bootstrapped body {
    margin: 0; }
  .bootstrapped article,
  .bootstrapped aside,
  .bootstrapped details,
  .bootstrapped figcaption,
  .bootstrapped figure,
  .bootstrapped footer,
  .bootstrapped header,
  .bootstrapped hgroup,
  .bootstrapped main,
  .bootstrapped menu,
  .bootstrapped nav,
  .bootstrapped section,
  .bootstrapped summary {
    display: block; }
  .bootstrapped audio,
  .bootstrapped canvas,
  .bootstrapped progress,
  .bootstrapped video {
    display: inline-block;
    vertical-align: baseline; }
  .bootstrapped audio:not([controls]) {
    display: none;
    height: 0; }
  .bootstrapped [hidden],
  .bootstrapped template {
    display: none; }
  .bootstrapped a {
    background-color: transparent; }
  .bootstrapped a:active,
  .bootstrapped a:hover {
    outline: 0; }
  .bootstrapped abbr[title] {
    border-bottom: 1px dotted; }
  .bootstrapped b,
  .bootstrapped strong {
    font-weight: bold; }
  .bootstrapped dfn {
    font-style: italic; }
  .bootstrapped h1 {
    font-size: 2em;
    margin: 0.67em 0; }
  .bootstrapped mark {
    background: #ff0;
    color: #000; }
  .bootstrapped small {
    font-size: 80%; }
  .bootstrapped sub,
  .bootstrapped sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline; }
  .bootstrapped sup {
    top: -0.5em; }
  .bootstrapped sub {
    bottom: -0.25em; }
  .bootstrapped img {
    border: 0; }
  .bootstrapped svg:not(:root) {
    overflow: hidden; }
  .bootstrapped figure {
    margin: 1em 40px; }
  .bootstrapped hr {
    box-sizing: content-box;
    height: 0; }
  .bootstrapped pre {
    overflow: auto; }
  .bootstrapped code,
  .bootstrapped kbd,
  .bootstrapped pre,
  .bootstrapped samp {
    font-family: monospace, monospace;
    font-size: 1em; }
  .bootstrapped button,
  .bootstrapped input,
  .bootstrapped optgroup,
  .bootstrapped select,
  .bootstrapped textarea {
    color: inherit;
    font: inherit;
    margin: 0; }
  .bootstrapped button {
    overflow: visible; }
  .bootstrapped button,
  .bootstrapped select {
    text-transform: none; }
  .bootstrapped button,
  .bootstrapped html input[type="button"],
  .bootstrapped input[type="reset"],
  .bootstrapped input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer; }
  .bootstrapped button[disabled],
  .bootstrapped html input[disabled] {
    cursor: default; }
  .bootstrapped button::-moz-focus-inner,
  .bootstrapped input::-moz-focus-inner {
    border: 0;
    padding: 0; }
  .bootstrapped input {
    line-height: normal; }
  .bootstrapped input[type="checkbox"],
  .bootstrapped input[type="radio"] {
    box-sizing: border-box;
    padding: 0; }
  .bootstrapped input[type="number"]::-webkit-inner-spin-button,
  .bootstrapped input[type="number"]::-webkit-outer-spin-button {
    height: auto; }
  .bootstrapped input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box; }
  .bootstrapped input[type="search"]::-webkit-search-cancel-button,
  .bootstrapped input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  .bootstrapped fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em; }
  .bootstrapped legend {
    border: 0;
    padding: 0; }
  .bootstrapped textarea {
    overflow: auto; }
  .bootstrapped optgroup {
    font-weight: bold; }
  .bootstrapped table {
    border-collapse: collapse;
    border-spacing: 0; }
  .bootstrapped td,
  .bootstrapped th {
    padding: 0; }
  @media print {
    .bootstrapped *,
    .bootstrapped *:before,
    .bootstrapped *:after {
      background: transparent !important;
      color: #000 !important;
      box-shadow: none !important;
      text-shadow: none !important; }
    .bootstrapped a,
    .bootstrapped a:visited {
      text-decoration: underline; }
    .bootstrapped a[href]:after {
      content: " (" attr(href) ")"; }
    .bootstrapped abbr[title]:after {
      content: " (" attr(title) ")"; }
    .bootstrapped a[href^="#"]:after,
    .bootstrapped a[href^="javascript:"]:after {
      content: ""; }
    .bootstrapped pre,
    .bootstrapped blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    .bootstrapped thead {
      display: table-header-group; }
    .bootstrapped tr,
    .bootstrapped img {
      page-break-inside: avoid; }
    .bootstrapped img {
      max-width: 100% !important; }
    .bootstrapped p,
    .bootstrapped h2,
    .bootstrapped h3 {
      orphans: 3;
      widows: 3; }
    .bootstrapped h2,
    .bootstrapped h3 {
      page-break-after: avoid; }
    .bootstrapped .navbar {
      display: none; }
    .bootstrapped .btn > .caret,
    .bootstrapped .dropup > .btn > .caret {
      border-top-color: #000 !important; }
    .bootstrapped .label {
      border: 1px solid #000; }
    .bootstrapped .table {
      border-collapse: collapse !important; }
      .bootstrapped .table td,
      .bootstrapped .table th {
        background-color: #fff !important; }
    .bootstrapped .table-bordered th,
    .bootstrapped .table-bordered td {
      border: 1px solid #ddd !important; } }

@font-face {
  font-family: 'Glyphicons Halflings';
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot");
  src: url("../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg"); }
  .bootstrapped .glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .bootstrapped .glyphicon-asterisk:before {
    content: "\002a"; }
  .bootstrapped .glyphicon-plus:before {
    content: "\002b"; }
  .bootstrapped .glyphicon-euro:before,
  .bootstrapped .glyphicon-eur:before {
    content: "\20ac"; }
  .bootstrapped .glyphicon-minus:before {
    content: "\2212"; }
  .bootstrapped .glyphicon-cloud:before {
    content: "\2601"; }
  .bootstrapped .glyphicon-envelope:before {
    content: "\2709"; }
  .bootstrapped .glyphicon-pencil:before {
    content: "\270f"; }
  .bootstrapped .glyphicon-glass:before {
    content: "\e001"; }
  .bootstrapped .glyphicon-music:before {
    content: "\e002"; }
  .bootstrapped .glyphicon-search:before {
    content: "\e003"; }
  .bootstrapped .glyphicon-heart:before {
    content: "\e005"; }
  .bootstrapped .glyphicon-star:before {
    content: "\e006"; }
  .bootstrapped .glyphicon-star-empty:before {
    content: "\e007"; }
  .bootstrapped .glyphicon-user:before {
    content: "\e008"; }
  .bootstrapped .glyphicon-film:before {
    content: "\e009"; }
  .bootstrapped .glyphicon-th-large:before {
    content: "\e010"; }
  .bootstrapped .glyphicon-th:before {
    content: "\e011"; }
  .bootstrapped .glyphicon-th-list:before {
    content: "\e012"; }
  .bootstrapped .glyphicon-ok:before {
    content: "\e013"; }
  .bootstrapped .glyphicon-remove:before {
    content: "\e014"; }
  .bootstrapped .glyphicon-zoom-in:before {
    content: "\e015"; }
  .bootstrapped .glyphicon-zoom-out:before {
    content: "\e016"; }
  .bootstrapped .glyphicon-off:before {
    content: "\e017"; }
  .bootstrapped .glyphicon-signal:before {
    content: "\e018"; }
  .bootstrapped .glyphicon-cog:before {
    content: "\e019"; }
  .bootstrapped .glyphicon-trash:before {
    content: "\e020"; }
  .bootstrapped .glyphicon-home:before {
    content: "\e021"; }
  .bootstrapped .glyphicon-file:before {
    content: "\e022"; }
  .bootstrapped .glyphicon-time:before {
    content: "\e023"; }
  .bootstrapped .glyphicon-road:before {
    content: "\e024"; }
  .bootstrapped .glyphicon-download-alt:before {
    content: "\e025"; }
  .bootstrapped .glyphicon-download:before {
    content: "\e026"; }
  .bootstrapped .glyphicon-upload:before {
    content: "\e027"; }
  .bootstrapped .glyphicon-inbox:before {
    content: "\e028"; }
  .bootstrapped .glyphicon-play-circle:before {
    content: "\e029"; }
  .bootstrapped .glyphicon-repeat:before {
    content: "\e030"; }
  .bootstrapped .glyphicon-refresh:before {
    content: "\e031"; }
  .bootstrapped .glyphicon-list-alt:before {
    content: "\e032"; }
  .bootstrapped .glyphicon-lock:before {
    content: "\e033"; }
  .bootstrapped .glyphicon-flag:before {
    content: "\e034"; }
  .bootstrapped .glyphicon-headphones:before {
    content: "\e035"; }
  .bootstrapped .glyphicon-volume-off:before {
    content: "\e036"; }
  .bootstrapped .glyphicon-volume-down:before {
    content: "\e037"; }
  .bootstrapped .glyphicon-volume-up:before {
    content: "\e038"; }
  .bootstrapped .glyphicon-qrcode:before {
    content: "\e039"; }
  .bootstrapped .glyphicon-barcode:before {
    content: "\e040"; }
  .bootstrapped .glyphicon-tag:before {
    content: "\e041"; }
  .bootstrapped .glyphicon-tags:before {
    content: "\e042"; }
  .bootstrapped .glyphicon-book:before {
    content: "\e043"; }
  .bootstrapped .glyphicon-bookmark:before {
    content: "\e044"; }
  .bootstrapped .glyphicon-print:before {
    content: "\e045"; }
  .bootstrapped .glyphicon-camera:before {
    content: "\e046"; }
  .bootstrapped .glyphicon-font:before {
    content: "\e047"; }
  .bootstrapped .glyphicon-bold:before {
    content: "\e048"; }
  .bootstrapped .glyphicon-italic:before {
    content: "\e049"; }
  .bootstrapped .glyphicon-text-height:before {
    content: "\e050"; }
  .bootstrapped .glyphicon-text-width:before {
    content: "\e051"; }
  .bootstrapped .glyphicon-align-left:before {
    content: "\e052"; }
  .bootstrapped .glyphicon-align-center:before {
    content: "\e053"; }
  .bootstrapped .glyphicon-align-right:before {
    content: "\e054"; }
  .bootstrapped .glyphicon-align-justify:before {
    content: "\e055"; }
  .bootstrapped .glyphicon-list:before {
    content: "\e056"; }
  .bootstrapped .glyphicon-indent-left:before {
    content: "\e057"; }
  .bootstrapped .glyphicon-indent-right:before {
    content: "\e058"; }
  .bootstrapped .glyphicon-facetime-video:before {
    content: "\e059"; }
  .bootstrapped .glyphicon-picture:before {
    content: "\e060"; }
  .bootstrapped .glyphicon-map-marker:before {
    content: "\e062"; }
  .bootstrapped .glyphicon-adjust:before {
    content: "\e063"; }
  .bootstrapped .glyphicon-tint:before {
    content: "\e064"; }
  .bootstrapped .glyphicon-edit:before {
    content: "\e065"; }
  .bootstrapped .glyphicon-share:before {
    content: "\e066"; }
  .bootstrapped .glyphicon-check:before {
    content: "\e067"; }
  .bootstrapped .glyphicon-move:before {
    content: "\e068"; }
  .bootstrapped .glyphicon-step-backward:before {
    content: "\e069"; }
  .bootstrapped .glyphicon-fast-backward:before {
    content: "\e070"; }
  .bootstrapped .glyphicon-backward:before {
    content: "\e071"; }
  .bootstrapped .glyphicon-play:before {
    content: "\e072"; }
  .bootstrapped .glyphicon-pause:before {
    content: "\e073"; }
  .bootstrapped .glyphicon-stop:before {
    content: "\e074"; }
  .bootstrapped .glyphicon-forward:before {
    content: "\e075"; }
  .bootstrapped .glyphicon-fast-forward:before {
    content: "\e076"; }
  .bootstrapped .glyphicon-step-forward:before {
    content: "\e077"; }
  .bootstrapped .glyphicon-eject:before {
    content: "\e078"; }
  .bootstrapped .glyphicon-chevron-left:before {
    content: "\e079"; }
  .bootstrapped .glyphicon-chevron-right:before {
    content: "\e080"; }
  .bootstrapped .glyphicon-plus-sign:before {
    content: "\e081"; }
  .bootstrapped .glyphicon-minus-sign:before {
    content: "\e082"; }
  .bootstrapped .glyphicon-remove-sign:before {
    content: "\e083"; }
  .bootstrapped .glyphicon-ok-sign:before {
    content: "\e084"; }
  .bootstrapped .glyphicon-question-sign:before {
    content: "\e085"; }
  .bootstrapped .glyphicon-info-sign:before {
    content: "\e086"; }
  .bootstrapped .glyphicon-screenshot:before {
    content: "\e087"; }
  .bootstrapped .glyphicon-remove-circle:before {
    content: "\e088"; }
  .bootstrapped .glyphicon-ok-circle:before {
    content: "\e089"; }
  .bootstrapped .glyphicon-ban-circle:before {
    content: "\e090"; }
  .bootstrapped .glyphicon-arrow-left:before {
    content: "\e091"; }
  .bootstrapped .glyphicon-arrow-right:before {
    content: "\e092"; }
  .bootstrapped .glyphicon-arrow-up:before {
    content: "\e093"; }
  .bootstrapped .glyphicon-arrow-down:before {
    content: "\e094"; }
  .bootstrapped .glyphicon-share-alt:before {
    content: "\e095"; }
  .bootstrapped .glyphicon-resize-full:before {
    content: "\e096"; }
  .bootstrapped .glyphicon-resize-small:before {
    content: "\e097"; }
  .bootstrapped .glyphicon-exclamation-sign:before {
    content: "\e101"; }
  .bootstrapped .glyphicon-gift:before {
    content: "\e102"; }
  .bootstrapped .glyphicon-leaf:before {
    content: "\e103"; }
  .bootstrapped .glyphicon-fire:before {
    content: "\e104"; }
  .bootstrapped .glyphicon-eye-open:before {
    content: "\e105"; }
  .bootstrapped .glyphicon-eye-close:before {
    content: "\e106"; }
  .bootstrapped .glyphicon-warning-sign:before {
    content: "\e107"; }
  .bootstrapped .glyphicon-plane:before {
    content: "\e108"; }
  .bootstrapped .glyphicon-calendar:before {
    content: "\e109"; }
  .bootstrapped .glyphicon-random:before {
    content: "\e110"; }
  .bootstrapped .glyphicon-comment:before {
    content: "\e111"; }
  .bootstrapped .glyphicon-magnet:before {
    content: "\e112"; }
  .bootstrapped .glyphicon-chevron-up:before {
    content: "\e113"; }
  .bootstrapped .glyphicon-chevron-down:before {
    content: "\e114"; }
  .bootstrapped .glyphicon-retweet:before {
    content: "\e115"; }
  .bootstrapped .glyphicon-shopping-cart:before {
    content: "\e116"; }
  .bootstrapped .glyphicon-folder-close:before {
    content: "\e117"; }
  .bootstrapped .glyphicon-folder-open:before {
    content: "\e118"; }
  .bootstrapped .glyphicon-resize-vertical:before {
    content: "\e119"; }
  .bootstrapped .glyphicon-resize-horizontal:before {
    content: "\e120"; }
  .bootstrapped .glyphicon-hdd:before {
    content: "\e121"; }
  .bootstrapped .glyphicon-bullhorn:before {
    content: "\e122"; }
  .bootstrapped .glyphicon-bell:before {
    content: "\e123"; }
  .bootstrapped .glyphicon-certificate:before {
    content: "\e124"; }
  .bootstrapped .glyphicon-thumbs-up:before {
    content: "\e125"; }
  .bootstrapped .glyphicon-thumbs-down:before {
    content: "\e126"; }
  .bootstrapped .glyphicon-hand-right:before {
    content: "\e127"; }
  .bootstrapped .glyphicon-hand-left:before {
    content: "\e128"; }
  .bootstrapped .glyphicon-hand-up:before {
    content: "\e129"; }
  .bootstrapped .glyphicon-hand-down:before {
    content: "\e130"; }
  .bootstrapped .glyphicon-circle-arrow-right:before {
    content: "\e131"; }
  .bootstrapped .glyphicon-circle-arrow-left:before {
    content: "\e132"; }
  .bootstrapped .glyphicon-circle-arrow-up:before {
    content: "\e133"; }
  .bootstrapped .glyphicon-circle-arrow-down:before {
    content: "\e134"; }
  .bootstrapped .glyphicon-globe:before {
    content: "\e135"; }
  .bootstrapped .glyphicon-wrench:before {
    content: "\e136"; }
  .bootstrapped .glyphicon-tasks:before {
    content: "\e137"; }
  .bootstrapped .glyphicon-filter:before {
    content: "\e138"; }
  .bootstrapped .glyphicon-briefcase:before {
    content: "\e139"; }
  .bootstrapped .glyphicon-fullscreen:before {
    content: "\e140"; }
  .bootstrapped .glyphicon-dashboard:before {
    content: "\e141"; }
  .bootstrapped .glyphicon-paperclip:before {
    content: "\e142"; }
  .bootstrapped .glyphicon-heart-empty:before {
    content: "\e143"; }
  .bootstrapped .glyphicon-link:before {
    content: "\e144"; }
  .bootstrapped .glyphicon-phone:before {
    content: "\e145"; }
  .bootstrapped .glyphicon-pushpin:before {
    content: "\e146"; }
  .bootstrapped .glyphicon-usd:before {
    content: "\e148"; }
  .bootstrapped .glyphicon-gbp:before {
    content: "\e149"; }
  .bootstrapped .glyphicon-sort:before {
    content: "\e150"; }
  .bootstrapped .glyphicon-sort-by-alphabet:before {
    content: "\e151"; }
  .bootstrapped .glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"; }
  .bootstrapped .glyphicon-sort-by-order:before {
    content: "\e153"; }
  .bootstrapped .glyphicon-sort-by-order-alt:before {
    content: "\e154"; }
  .bootstrapped .glyphicon-sort-by-attributes:before {
    content: "\e155"; }
  .bootstrapped .glyphicon-sort-by-attributes-alt:before {
    content: "\e156"; }
  .bootstrapped .glyphicon-unchecked:before {
    content: "\e157"; }
  .bootstrapped .glyphicon-expand:before {
    content: "\e158"; }
  .bootstrapped .glyphicon-collapse-down:before {
    content: "\e159"; }
  .bootstrapped .glyphicon-collapse-up:before {
    content: "\e160"; }
  .bootstrapped .glyphicon-log-in:before {
    content: "\e161"; }
  .bootstrapped .glyphicon-flash:before {
    content: "\e162"; }
  .bootstrapped .glyphicon-log-out:before {
    content: "\e163"; }
  .bootstrapped .glyphicon-new-window:before {
    content: "\e164"; }
  .bootstrapped .glyphicon-record:before {
    content: "\e165"; }
  .bootstrapped .glyphicon-save:before {
    content: "\e166"; }
  .bootstrapped .glyphicon-open:before {
    content: "\e167"; }
  .bootstrapped .glyphicon-saved:before {
    content: "\e168"; }
  .bootstrapped .glyphicon-import:before {
    content: "\e169"; }
  .bootstrapped .glyphicon-export:before {
    content: "\e170"; }
  .bootstrapped .glyphicon-send:before {
    content: "\e171"; }
  .bootstrapped .glyphicon-floppy-disk:before {
    content: "\e172"; }
  .bootstrapped .glyphicon-floppy-saved:before {
    content: "\e173"; }
  .bootstrapped .glyphicon-floppy-remove:before {
    content: "\e174"; }
  .bootstrapped .glyphicon-floppy-save:before {
    content: "\e175"; }
  .bootstrapped .glyphicon-floppy-open:before {
    content: "\e176"; }
  .bootstrapped .glyphicon-credit-card:before {
    content: "\e177"; }
  .bootstrapped .glyphicon-transfer:before {
    content: "\e178"; }
  .bootstrapped .glyphicon-cutlery:before {
    content: "\e179"; }
  .bootstrapped .glyphicon-header:before {
    content: "\e180"; }
  .bootstrapped .glyphicon-compressed:before {
    content: "\e181"; }
  .bootstrapped .glyphicon-earphone:before {
    content: "\e182"; }
  .bootstrapped .glyphicon-phone-alt:before {
    content: "\e183"; }
  .bootstrapped .glyphicon-tower:before {
    content: "\e184"; }
  .bootstrapped .glyphicon-stats:before {
    content: "\e185"; }
  .bootstrapped .glyphicon-sd-video:before {
    content: "\e186"; }
  .bootstrapped .glyphicon-hd-video:before {
    content: "\e187"; }
  .bootstrapped .glyphicon-subtitles:before {
    content: "\e188"; }
  .bootstrapped .glyphicon-sound-stereo:before {
    content: "\e189"; }
  .bootstrapped .glyphicon-sound-dolby:before {
    content: "\e190"; }
  .bootstrapped .glyphicon-sound-5-1:before {
    content: "\e191"; }
  .bootstrapped .glyphicon-sound-6-1:before {
    content: "\e192"; }
  .bootstrapped .glyphicon-sound-7-1:before {
    content: "\e193"; }
  .bootstrapped .glyphicon-copyright-mark:before {
    content: "\e194"; }
  .bootstrapped .glyphicon-registration-mark:before {
    content: "\e195"; }
  .bootstrapped .glyphicon-cloud-download:before {
    content: "\e197"; }
  .bootstrapped .glyphicon-cloud-upload:before {
    content: "\e198"; }
  .bootstrapped .glyphicon-tree-conifer:before {
    content: "\e199"; }
  .bootstrapped .glyphicon-tree-deciduous:before {
    content: "\e200"; }
  .bootstrapped .glyphicon-cd:before {
    content: "\e201"; }
  .bootstrapped .glyphicon-save-file:before {
    content: "\e202"; }
  .bootstrapped .glyphicon-open-file:before {
    content: "\e203"; }
  .bootstrapped .glyphicon-level-up:before {
    content: "\e204"; }
  .bootstrapped .glyphicon-copy:before {
    content: "\e205"; }
  .bootstrapped .glyphicon-paste:before {
    content: "\e206"; }
  .bootstrapped .glyphicon-alert:before {
    content: "\e209"; }
  .bootstrapped .glyphicon-equalizer:before {
    content: "\e210"; }
  .bootstrapped .glyphicon-king:before {
    content: "\e211"; }
  .bootstrapped .glyphicon-queen:before {
    content: "\e212"; }
  .bootstrapped .glyphicon-pawn:before {
    content: "\e213"; }
  .bootstrapped .glyphicon-bishop:before {
    content: "\e214"; }
  .bootstrapped .glyphicon-knight:before {
    content: "\e215"; }
  .bootstrapped .glyphicon-baby-formula:before {
    content: "\e216"; }
  .bootstrapped .glyphicon-tent:before {
    content: "\26fa"; }
  .bootstrapped .glyphicon-blackboard:before {
    content: "\e218"; }
  .bootstrapped .glyphicon-bed:before {
    content: "\e219"; }
  .bootstrapped .glyphicon-apple:before {
    content: "\f8ff"; }
  .bootstrapped .glyphicon-erase:before {
    content: "\e221"; }
  .bootstrapped .glyphicon-hourglass:before {
    content: "\231b"; }
  .bootstrapped .glyphicon-lamp:before {
    content: "\e223"; }
  .bootstrapped .glyphicon-duplicate:before {
    content: "\e224"; }
  .bootstrapped .glyphicon-piggy-bank:before {
    content: "\e225"; }
  .bootstrapped .glyphicon-scissors:before {
    content: "\e226"; }
  .bootstrapped .glyphicon-bitcoin:before {
    content: "\e227"; }
  .bootstrapped .glyphicon-btc:before {
    content: "\e227"; }
  .bootstrapped .glyphicon-xbt:before {
    content: "\e227"; }
  .bootstrapped .glyphicon-yen:before {
    content: "\00a5"; }
  .bootstrapped .glyphicon-jpy:before {
    content: "\00a5"; }
  .bootstrapped .glyphicon-ruble:before {
    content: "\20bd"; }
  .bootstrapped .glyphicon-rub:before {
    content: "\20bd"; }
  .bootstrapped .glyphicon-scale:before {
    content: "\e230"; }
  .bootstrapped .glyphicon-ice-lolly:before {
    content: "\e231"; }
  .bootstrapped .glyphicon-ice-lolly-tasted:before {
    content: "\e232"; }
  .bootstrapped .glyphicon-education:before {
    content: "\e233"; }
  .bootstrapped .glyphicon-option-horizontal:before {
    content: "\e234"; }
  .bootstrapped .glyphicon-option-vertical:before {
    content: "\e235"; }
  .bootstrapped .glyphicon-menu-hamburger:before {
    content: "\e236"; }
  .bootstrapped .glyphicon-modal-window:before {
    content: "\e237"; }
  .bootstrapped .glyphicon-oil:before {
    content: "\e238"; }
  .bootstrapped .glyphicon-grain:before {
    content: "\e239"; }
  .bootstrapped .glyphicon-sunglasses:before {
    content: "\e240"; }
  .bootstrapped .glyphicon-text-size:before {
    content: "\e241"; }
  .bootstrapped .glyphicon-text-color:before {
    content: "\e242"; }
  .bootstrapped .glyphicon-text-background:before {
    content: "\e243"; }
  .bootstrapped .glyphicon-object-align-top:before {
    content: "\e244"; }
  .bootstrapped .glyphicon-object-align-bottom:before {
    content: "\e245"; }
  .bootstrapped .glyphicon-object-align-horizontal:before {
    content: "\e246"; }
  .bootstrapped .glyphicon-object-align-left:before {
    content: "\e247"; }
  .bootstrapped .glyphicon-object-align-vertical:before {
    content: "\e248"; }
  .bootstrapped .glyphicon-object-align-right:before {
    content: "\e249"; }
  .bootstrapped .glyphicon-triangle-right:before {
    content: "\e250"; }
  .bootstrapped .glyphicon-triangle-left:before {
    content: "\e251"; }
  .bootstrapped .glyphicon-triangle-bottom:before {
    content: "\e252"; }
  .bootstrapped .glyphicon-triangle-top:before {
    content: "\e253"; }
  .bootstrapped .glyphicon-console:before {
    content: "\e254"; }
  .bootstrapped .glyphicon-superscript:before {
    content: "\e255"; }
  .bootstrapped .glyphicon-subscript:before {
    content: "\e256"; }
  .bootstrapped .glyphicon-menu-left:before {
    content: "\e257"; }
  .bootstrapped .glyphicon-menu-right:before {
    content: "\e258"; }
  .bootstrapped .glyphicon-menu-down:before {
    content: "\e259"; }
  .bootstrapped .glyphicon-menu-up:before {
    content: "\e260"; }
  .bootstrapped * {
    box-sizing: border-box; }
  .bootstrapped *:before,
  .bootstrapped *:after {
    box-sizing: border-box; }
  .bootstrapped html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent; }
  .bootstrapped body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    color: #333333;
    background-color: #fff; }
  .bootstrapped input,
  .bootstrapped button,
  .bootstrapped select,
  .bootstrapped textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit; }
  .bootstrapped a {
    color: #337ab7;
    text-decoration: none; }
    .bootstrapped a:hover, .bootstrapped a:focus {
      color: #23527c;
      text-decoration: underline; }
    .bootstrapped a:focus {
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
  .bootstrapped figure {
    margin: 0; }
  .bootstrapped img {
    vertical-align: middle; }
  .bootstrapped .img-responsive {
    display: block;
    max-width: 100%;
    height: auto; }
  .bootstrapped .img-rounded {
    border-radius: 6px; }
  .bootstrapped .img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto; }
  .bootstrapped .img-circle {
    border-radius: 50%; }
  .bootstrapped hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee; }
  .bootstrapped .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0; }
  .bootstrapped .sr-only-focusable:active, .bootstrapped .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto; }
  .bootstrapped [role="button"] {
    cursor: pointer; }
  .bootstrapped h1, .bootstrapped h2, .bootstrapped h3, .bootstrapped h4, .bootstrapped h5, .bootstrapped h6,
  .bootstrapped .h1, .bootstrapped .h2, .bootstrapped .h3, .bootstrapped .h4, .bootstrapped .h5, .bootstrapped .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit; }
    .bootstrapped h1 small,
    .bootstrapped h1 .small, .bootstrapped h2 small,
    .bootstrapped h2 .small, .bootstrapped h3 small,
    .bootstrapped h3 .small, .bootstrapped h4 small,
    .bootstrapped h4 .small, .bootstrapped h5 small,
    .bootstrapped h5 .small, .bootstrapped h6 small,
    .bootstrapped h6 .small,
    .bootstrapped .h1 small,
    .bootstrapped .h1 .small, .bootstrapped .h2 small,
    .bootstrapped .h2 .small, .bootstrapped .h3 small,
    .bootstrapped .h3 .small, .bootstrapped .h4 small,
    .bootstrapped .h4 .small, .bootstrapped .h5 small,
    .bootstrapped .h5 .small, .bootstrapped .h6 small,
    .bootstrapped .h6 .small {
      font-weight: normal;
      line-height: 1;
      color: #777777; }
  .bootstrapped h1, .bootstrapped .h1,
  .bootstrapped h2, .bootstrapped .h2,
  .bootstrapped h3, .bootstrapped .h3 {
    margin-top: 20px;
    margin-bottom: 10px; }
    .bootstrapped h1 small,
    .bootstrapped h1 .small, .bootstrapped .h1 small,
    .bootstrapped .h1 .small,
    .bootstrapped h2 small,
    .bootstrapped h2 .small, .bootstrapped .h2 small,
    .bootstrapped .h2 .small,
    .bootstrapped h3 small,
    .bootstrapped h3 .small, .bootstrapped .h3 small,
    .bootstrapped .h3 .small {
      font-size: 65%; }
  .bootstrapped h4, .bootstrapped .h4,
  .bootstrapped h5, .bootstrapped .h5,
  .bootstrapped h6, .bootstrapped .h6 {
    margin-top: 10px;
    margin-bottom: 10px; }
    .bootstrapped h4 small,
    .bootstrapped h4 .small, .bootstrapped .h4 small,
    .bootstrapped .h4 .small,
    .bootstrapped h5 small,
    .bootstrapped h5 .small, .bootstrapped .h5 small,
    .bootstrapped .h5 .small,
    .bootstrapped h6 small,
    .bootstrapped h6 .small, .bootstrapped .h6 small,
    .bootstrapped .h6 .small {
      font-size: 75%; }
  .bootstrapped h1, .bootstrapped .h1 {
    font-size: 36px; }
  .bootstrapped h2, .bootstrapped .h2 {
    font-size: 30px; }
  .bootstrapped h3, .bootstrapped .h3 {
    font-size: 24px; }
  .bootstrapped h4, .bootstrapped .h4 {
    font-size: 18px; }
  .bootstrapped h5, .bootstrapped .h5 {
    font-size: 14px; }
  .bootstrapped h6, .bootstrapped .h6 {
    font-size: 12px; }
  .bootstrapped p {
    margin: 0 0 10px; }
  .bootstrapped .lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4; }
    @media (min-width: 768px) {
      .bootstrapped .lead {
        font-size: 21px; } }
  .bootstrapped small,
  .bootstrapped .small {
    font-size: 85%; }
  .bootstrapped mark,
  .bootstrapped .mark {
    background-color: #fcf8e3;
    padding: .2em; }
  .bootstrapped .text-left {
    text-align: left; }
  .bootstrapped .text-right {
    text-align: right; }
  .bootstrapped .text-center {
    text-align: center; }
  .bootstrapped .text-justify {
    text-align: justify; }
  .bootstrapped .text-nowrap {
    white-space: nowrap; }
  .bootstrapped .text-lowercase {
    text-transform: lowercase; }
  .bootstrapped .text-uppercase, .bootstrapped .initialism {
    text-transform: uppercase; }
  .bootstrapped .text-capitalize {
    text-transform: capitalize; }
  .bootstrapped .text-muted {
    color: #777777; }
  .bootstrapped .text-primary {
    color: #337ab7; }
  .bootstrapped a.text-primary:hover,
  .bootstrapped a.text-primary:focus {
    color: #286090; }
  .bootstrapped .text-success {
    color: #3c763d; }
  .bootstrapped a.text-success:hover,
  .bootstrapped a.text-success:focus {
    color: #2b542c; }
  .bootstrapped .text-info {
    color: #31708f; }
  .bootstrapped a.text-info:hover,
  .bootstrapped a.text-info:focus {
    color: #245269; }
  .bootstrapped .text-warning {
    color: #8a6d3b; }
  .bootstrapped a.text-warning:hover,
  .bootstrapped a.text-warning:focus {
    color: #66512c; }
  .bootstrapped .text-danger {
    color: #a94442; }
  .bootstrapped a.text-danger:hover,
  .bootstrapped a.text-danger:focus {
    color: #843534; }
  .bootstrapped .bg-primary {
    color: #fff; }
  .bootstrapped .bg-primary {
    background-color: #337ab7; }
  .bootstrapped a.bg-primary:hover,
  .bootstrapped a.bg-primary:focus {
    background-color: #286090; }
  .bootstrapped .bg-success {
    background-color: #dff0d8; }
  .bootstrapped a.bg-success:hover,
  .bootstrapped a.bg-success:focus {
    background-color: #c1e2b3; }
  .bootstrapped .bg-info {
    background-color: #d9edf7; }
  .bootstrapped a.bg-info:hover,
  .bootstrapped a.bg-info:focus {
    background-color: #afd9ee; }
  .bootstrapped .bg-warning {
    background-color: #fcf8e3; }
  .bootstrapped a.bg-warning:hover,
  .bootstrapped a.bg-warning:focus {
    background-color: #f7ecb5; }
  .bootstrapped .bg-danger {
    background-color: #f2dede; }
  .bootstrapped a.bg-danger:hover,
  .bootstrapped a.bg-danger:focus {
    background-color: #e4b9b9; }
  .bootstrapped .page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eeeeee; }
  .bootstrapped ul,
  .bootstrapped ol {
    margin-top: 0;
    margin-bottom: 10px; }
    .bootstrapped ul ul,
    .bootstrapped ul ol,
    .bootstrapped ol ul,
    .bootstrapped ol ol {
      margin-bottom: 0; }
  .bootstrapped .list-unstyled {
    padding-left: 0;
    list-style: none; }
  .bootstrapped .list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px; }
    .bootstrapped .list-inline > li {
      display: inline-block;
      padding-left: 5px;
      padding-right: 5px; }
  .bootstrapped dl {
    margin-top: 0;
    margin-bottom: 20px; }
  .bootstrapped dt,
  .bootstrapped dd {
    line-height: 1.42857; }
  .bootstrapped dt {
    font-weight: bold; }
  .bootstrapped dd {
    margin-left: 0; }
  .bootstrapped .dl-horizontal dd:before, .bootstrapped .dl-horizontal dd:after {
    content: "\20";
    display: table; }
  .bootstrapped .dl-horizontal dd:after {
    clear: both; }
  @media (min-width: 768px) {
    .bootstrapped .dl-horizontal dt {
      float: left;
      width: 160px;
      clear: left;
      text-align: right;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .bootstrapped .dl-horizontal dd {
      margin-left: 180px; } }
  .bootstrapped abbr[title],
  .bootstrapped abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777777; }
  .bootstrapped .initialism {
    font-size: 90%; }
  .bootstrapped blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eeeeee; }
    .bootstrapped blockquote p:last-child,
    .bootstrapped blockquote ul:last-child,
    .bootstrapped blockquote ol:last-child {
      margin-bottom: 0; }
    .bootstrapped blockquote footer,
    .bootstrapped blockquote small,
    .bootstrapped blockquote .small {
      display: block;
      font-size: 80%;
      line-height: 1.42857;
      color: #777777; }
      .bootstrapped blockquote footer:before,
      .bootstrapped blockquote small:before,
      .bootstrapped blockquote .small:before {
        content: '\2014 \00A0'; }
  .bootstrapped .blockquote-reverse,
  .bootstrapped blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eeeeee;
    border-left: 0;
    text-align: right; }
    .bootstrapped .blockquote-reverse footer:before,
    .bootstrapped .blockquote-reverse small:before,
    .bootstrapped .blockquote-reverse .small:before,
    .bootstrapped blockquote.pull-right footer:before,
    .bootstrapped blockquote.pull-right small:before,
    .bootstrapped blockquote.pull-right .small:before {
      content: ''; }
    .bootstrapped .blockquote-reverse footer:after,
    .bootstrapped .blockquote-reverse small:after,
    .bootstrapped .blockquote-reverse .small:after,
    .bootstrapped blockquote.pull-right footer:after,
    .bootstrapped blockquote.pull-right small:after,
    .bootstrapped blockquote.pull-right .small:after {
      content: '\00A0 \2014'; }
  .bootstrapped address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857; }
  .bootstrapped code,
  .bootstrapped kbd,
  .bootstrapped pre,
  .bootstrapped samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
  .bootstrapped code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px; }
  .bootstrapped kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); }
    .bootstrapped kbd kbd {
      padding: 0;
      font-size: 100%;
      font-weight: bold;
      box-shadow: none; }
  .bootstrapped pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    color: #333333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px; }
    .bootstrapped pre code {
      padding: 0;
      font-size: inherit;
      color: inherit;
      white-space: pre-wrap;
      background-color: transparent;
      border-radius: 0; }
  .bootstrapped .pre-scrollable {
    max-height: 340px;
    overflow-y: scroll; }
  .bootstrapped .container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; }
    .bootstrapped .container:before, .bootstrapped .container:after {
      content: "\20";
      display: table; }
    .bootstrapped .container:after {
      clear: both; }
    @media (min-width: 768px) {
      .bootstrapped .container {
        width: 750px; } }
    @media (min-width: 992px) {
      .bootstrapped .container {
        width: 970px; } }
    @media (min-width: 1200px) {
      .bootstrapped .container {
        width: 1170px; } }
  .bootstrapped .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; }
    .bootstrapped .container-fluid:before, .bootstrapped .container-fluid:after {
      content: "\20";
      display: table; }
    .bootstrapped .container-fluid:after {
      clear: both; }
  .bootstrapped .row {
    margin-left: -15px;
    margin-right: -15px; }
    .bootstrapped .row:before, .bootstrapped .row:after {
      content: "\20";
      display: table; }
    .bootstrapped .row:after {
      clear: both; }
  .bootstrapped .col-xs-1, .bootstrapped .col-sm-1, .bootstrapped .col-md-1, .bootstrapped .col-lg-1, .bootstrapped .col-xs-2, .bootstrapped .col-sm-2, .bootstrapped .col-md-2, .bootstrapped .col-lg-2, .bootstrapped .col-xs-3, .bootstrapped .col-sm-3, .bootstrapped .col-md-3, .bootstrapped .col-lg-3, .bootstrapped .col-xs-4, .bootstrapped .col-sm-4, .bootstrapped .col-md-4, .bootstrapped .col-lg-4, .bootstrapped .col-xs-5, .bootstrapped .col-sm-5, .bootstrapped .col-md-5, .bootstrapped .col-lg-5, .bootstrapped .col-xs-6, .bootstrapped .col-sm-6, .bootstrapped .col-md-6, .bootstrapped .col-lg-6, .bootstrapped .col-xs-7, .bootstrapped .col-sm-7, .bootstrapped .col-md-7, .bootstrapped .col-lg-7, .bootstrapped .col-xs-8, .bootstrapped .col-sm-8, .bootstrapped .col-md-8, .bootstrapped .col-lg-8, .bootstrapped .col-xs-9, .bootstrapped .col-sm-9, .bootstrapped .col-md-9, .bootstrapped .col-lg-9, .bootstrapped .col-xs-10, .bootstrapped .col-sm-10, .bootstrapped .col-md-10, .bootstrapped .col-lg-10, .bootstrapped .col-xs-11, .bootstrapped .col-sm-11, .bootstrapped .col-md-11, .bootstrapped .col-lg-11, .bootstrapped .col-xs-12, .bootstrapped .col-sm-12, .bootstrapped .col-md-12, .bootstrapped .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px; }
  .bootstrapped .col-xs-1, .bootstrapped .col-xs-2, .bootstrapped .col-xs-3, .bootstrapped .col-xs-4, .bootstrapped .col-xs-5, .bootstrapped .col-xs-6, .bootstrapped .col-xs-7, .bootstrapped .col-xs-8, .bootstrapped .col-xs-9, .bootstrapped .col-xs-10, .bootstrapped .col-xs-11, .bootstrapped .col-xs-12 {
    float: left; }
  .bootstrapped .col-xs-1 {
    width: 8.33333%; }
  .bootstrapped .col-xs-2 {
    width: 16.66667%; }
  .bootstrapped .col-xs-3 {
    width: 25%; }
  .bootstrapped .col-xs-4 {
    width: 33.33333%; }
  .bootstrapped .col-xs-5 {
    width: 41.66667%; }
  .bootstrapped .col-xs-6 {
    width: 50%; }
  .bootstrapped .col-xs-7 {
    width: 58.33333%; }
  .bootstrapped .col-xs-8 {
    width: 66.66667%; }
  .bootstrapped .col-xs-9 {
    width: 75%; }
  .bootstrapped .col-xs-10 {
    width: 83.33333%; }
  .bootstrapped .col-xs-11 {
    width: 91.66667%; }
  .bootstrapped .col-xs-12 {
    width: 100%; }
  .bootstrapped .col-xs-pull-0 {
    right: auto; }
  .bootstrapped .col-xs-pull-1 {
    right: 8.33333%; }
  .bootstrapped .col-xs-pull-2 {
    right: 16.66667%; }
  .bootstrapped .col-xs-pull-3 {
    right: 25%; }
  .bootstrapped .col-xs-pull-4 {
    right: 33.33333%; }
  .bootstrapped .col-xs-pull-5 {
    right: 41.66667%; }
  .bootstrapped .col-xs-pull-6 {
    right: 50%; }
  .bootstrapped .col-xs-pull-7 {
    right: 58.33333%; }
  .bootstrapped .col-xs-pull-8 {
    right: 66.66667%; }
  .bootstrapped .col-xs-pull-9 {
    right: 75%; }
  .bootstrapped .col-xs-pull-10 {
    right: 83.33333%; }
  .bootstrapped .col-xs-pull-11 {
    right: 91.66667%; }
  .bootstrapped .col-xs-pull-12 {
    right: 100%; }
  .bootstrapped .col-xs-push-0 {
    left: auto; }
  .bootstrapped .col-xs-push-1 {
    left: 8.33333%; }
  .bootstrapped .col-xs-push-2 {
    left: 16.66667%; }
  .bootstrapped .col-xs-push-3 {
    left: 25%; }
  .bootstrapped .col-xs-push-4 {
    left: 33.33333%; }
  .bootstrapped .col-xs-push-5 {
    left: 41.66667%; }
  .bootstrapped .col-xs-push-6 {
    left: 50%; }
  .bootstrapped .col-xs-push-7 {
    left: 58.33333%; }
  .bootstrapped .col-xs-push-8 {
    left: 66.66667%; }
  .bootstrapped .col-xs-push-9 {
    left: 75%; }
  .bootstrapped .col-xs-push-10 {
    left: 83.33333%; }
  .bootstrapped .col-xs-push-11 {
    left: 91.66667%; }
  .bootstrapped .col-xs-push-12 {
    left: 100%; }
  .bootstrapped .col-xs-offset-0 {
    margin-left: 0%; }
  .bootstrapped .col-xs-offset-1 {
    margin-left: 8.33333%; }
  .bootstrapped .col-xs-offset-2 {
    margin-left: 16.66667%; }
  .bootstrapped .col-xs-offset-3 {
    margin-left: 25%; }
  .bootstrapped .col-xs-offset-4 {
    margin-left: 33.33333%; }
  .bootstrapped .col-xs-offset-5 {
    margin-left: 41.66667%; }
  .bootstrapped .col-xs-offset-6 {
    margin-left: 50%; }
  .bootstrapped .col-xs-offset-7 {
    margin-left: 58.33333%; }
  .bootstrapped .col-xs-offset-8 {
    margin-left: 66.66667%; }
  .bootstrapped .col-xs-offset-9 {
    margin-left: 75%; }
  .bootstrapped .col-xs-offset-10 {
    margin-left: 83.33333%; }
  .bootstrapped .col-xs-offset-11 {
    margin-left: 91.66667%; }
  .bootstrapped .col-xs-offset-12 {
    margin-left: 100%; }
  @media (min-width: 768px) {
    .bootstrapped .col-sm-1, .bootstrapped .col-sm-2, .bootstrapped .col-sm-3, .bootstrapped .col-sm-4, .bootstrapped .col-sm-5, .bootstrapped .col-sm-6, .bootstrapped .col-sm-7, .bootstrapped .col-sm-8, .bootstrapped .col-sm-9, .bootstrapped .col-sm-10, .bootstrapped .col-sm-11, .bootstrapped .col-sm-12 {
      float: left; }
    .bootstrapped .col-sm-1 {
      width: 8.33333%; }
    .bootstrapped .col-sm-2 {
      width: 16.66667%; }
    .bootstrapped .col-sm-3 {
      width: 25%; }
    .bootstrapped .col-sm-4 {
      width: 33.33333%; }
    .bootstrapped .col-sm-5 {
      width: 41.66667%; }
    .bootstrapped .col-sm-6 {
      width: 50%; }
    .bootstrapped .col-sm-7 {
      width: 58.33333%; }
    .bootstrapped .col-sm-8 {
      width: 66.66667%; }
    .bootstrapped .col-sm-9 {
      width: 75%; }
    .bootstrapped .col-sm-10 {
      width: 83.33333%; }
    .bootstrapped .col-sm-11 {
      width: 91.66667%; }
    .bootstrapped .col-sm-12 {
      width: 100%; }
    .bootstrapped .col-sm-pull-0 {
      right: auto; }
    .bootstrapped .col-sm-pull-1 {
      right: 8.33333%; }
    .bootstrapped .col-sm-pull-2 {
      right: 16.66667%; }
    .bootstrapped .col-sm-pull-3 {
      right: 25%; }
    .bootstrapped .col-sm-pull-4 {
      right: 33.33333%; }
    .bootstrapped .col-sm-pull-5 {
      right: 41.66667%; }
    .bootstrapped .col-sm-pull-6 {
      right: 50%; }
    .bootstrapped .col-sm-pull-7 {
      right: 58.33333%; }
    .bootstrapped .col-sm-pull-8 {
      right: 66.66667%; }
    .bootstrapped .col-sm-pull-9 {
      right: 75%; }
    .bootstrapped .col-sm-pull-10 {
      right: 83.33333%; }
    .bootstrapped .col-sm-pull-11 {
      right: 91.66667%; }
    .bootstrapped .col-sm-pull-12 {
      right: 100%; }
    .bootstrapped .col-sm-push-0 {
      left: auto; }
    .bootstrapped .col-sm-push-1 {
      left: 8.33333%; }
    .bootstrapped .col-sm-push-2 {
      left: 16.66667%; }
    .bootstrapped .col-sm-push-3 {
      left: 25%; }
    .bootstrapped .col-sm-push-4 {
      left: 33.33333%; }
    .bootstrapped .col-sm-push-5 {
      left: 41.66667%; }
    .bootstrapped .col-sm-push-6 {
      left: 50%; }
    .bootstrapped .col-sm-push-7 {
      left: 58.33333%; }
    .bootstrapped .col-sm-push-8 {
      left: 66.66667%; }
    .bootstrapped .col-sm-push-9 {
      left: 75%; }
    .bootstrapped .col-sm-push-10 {
      left: 83.33333%; }
    .bootstrapped .col-sm-push-11 {
      left: 91.66667%; }
    .bootstrapped .col-sm-push-12 {
      left: 100%; }
    .bootstrapped .col-sm-offset-0 {
      margin-left: 0%; }
    .bootstrapped .col-sm-offset-1 {
      margin-left: 8.33333%; }
    .bootstrapped .col-sm-offset-2 {
      margin-left: 16.66667%; }
    .bootstrapped .col-sm-offset-3 {
      margin-left: 25%; }
    .bootstrapped .col-sm-offset-4 {
      margin-left: 33.33333%; }
    .bootstrapped .col-sm-offset-5 {
      margin-left: 41.66667%; }
    .bootstrapped .col-sm-offset-6 {
      margin-left: 50%; }
    .bootstrapped .col-sm-offset-7 {
      margin-left: 58.33333%; }
    .bootstrapped .col-sm-offset-8 {
      margin-left: 66.66667%; }
    .bootstrapped .col-sm-offset-9 {
      margin-left: 75%; }
    .bootstrapped .col-sm-offset-10 {
      margin-left: 83.33333%; }
    .bootstrapped .col-sm-offset-11 {
      margin-left: 91.66667%; }
    .bootstrapped .col-sm-offset-12 {
      margin-left: 100%; } }
  @media (min-width: 992px) {
    .bootstrapped .col-md-1, .bootstrapped .col-md-2, .bootstrapped .col-md-3, .bootstrapped .col-md-4, .bootstrapped .col-md-5, .bootstrapped .col-md-6, .bootstrapped .col-md-7, .bootstrapped .col-md-8, .bootstrapped .col-md-9, .bootstrapped .col-md-10, .bootstrapped .col-md-11, .bootstrapped .col-md-12 {
      float: left; }
    .bootstrapped .col-md-1 {
      width: 8.33333%; }
    .bootstrapped .col-md-2 {
      width: 16.66667%; }
    .bootstrapped .col-md-3 {
      width: 25%; }
    .bootstrapped .col-md-4 {
      width: 33.33333%; }
    .bootstrapped .col-md-5 {
      width: 41.66667%; }
    .bootstrapped .col-md-6 {
      width: 50%; }
    .bootstrapped .col-md-7 {
      width: 58.33333%; }
    .bootstrapped .col-md-8 {
      width: 66.66667%; }
    .bootstrapped .col-md-9 {
      width: 75%; }
    .bootstrapped .col-md-10 {
      width: 83.33333%; }
    .bootstrapped .col-md-11 {
      width: 91.66667%; }
    .bootstrapped .col-md-12 {
      width: 100%; }
    .bootstrapped .col-md-pull-0 {
      right: auto; }
    .bootstrapped .col-md-pull-1 {
      right: 8.33333%; }
    .bootstrapped .col-md-pull-2 {
      right: 16.66667%; }
    .bootstrapped .col-md-pull-3 {
      right: 25%; }
    .bootstrapped .col-md-pull-4 {
      right: 33.33333%; }
    .bootstrapped .col-md-pull-5 {
      right: 41.66667%; }
    .bootstrapped .col-md-pull-6 {
      right: 50%; }
    .bootstrapped .col-md-pull-7 {
      right: 58.33333%; }
    .bootstrapped .col-md-pull-8 {
      right: 66.66667%; }
    .bootstrapped .col-md-pull-9 {
      right: 75%; }
    .bootstrapped .col-md-pull-10 {
      right: 83.33333%; }
    .bootstrapped .col-md-pull-11 {
      right: 91.66667%; }
    .bootstrapped .col-md-pull-12 {
      right: 100%; }
    .bootstrapped .col-md-push-0 {
      left: auto; }
    .bootstrapped .col-md-push-1 {
      left: 8.33333%; }
    .bootstrapped .col-md-push-2 {
      left: 16.66667%; }
    .bootstrapped .col-md-push-3 {
      left: 25%; }
    .bootstrapped .col-md-push-4 {
      left: 33.33333%; }
    .bootstrapped .col-md-push-5 {
      left: 41.66667%; }
    .bootstrapped .col-md-push-6 {
      left: 50%; }
    .bootstrapped .col-md-push-7 {
      left: 58.33333%; }
    .bootstrapped .col-md-push-8 {
      left: 66.66667%; }
    .bootstrapped .col-md-push-9 {
      left: 75%; }
    .bootstrapped .col-md-push-10 {
      left: 83.33333%; }
    .bootstrapped .col-md-push-11 {
      left: 91.66667%; }
    .bootstrapped .col-md-push-12 {
      left: 100%; }
    .bootstrapped .col-md-offset-0 {
      margin-left: 0%; }
    .bootstrapped .col-md-offset-1 {
      margin-left: 8.33333%; }
    .bootstrapped .col-md-offset-2 {
      margin-left: 16.66667%; }
    .bootstrapped .col-md-offset-3 {
      margin-left: 25%; }
    .bootstrapped .col-md-offset-4 {
      margin-left: 33.33333%; }
    .bootstrapped .col-md-offset-5 {
      margin-left: 41.66667%; }
    .bootstrapped .col-md-offset-6 {
      margin-left: 50%; }
    .bootstrapped .col-md-offset-7 {
      margin-left: 58.33333%; }
    .bootstrapped .col-md-offset-8 {
      margin-left: 66.66667%; }
    .bootstrapped .col-md-offset-9 {
      margin-left: 75%; }
    .bootstrapped .col-md-offset-10 {
      margin-left: 83.33333%; }
    .bootstrapped .col-md-offset-11 {
      margin-left: 91.66667%; }
    .bootstrapped .col-md-offset-12 {
      margin-left: 100%; } }
  @media (min-width: 1200px) {
    .bootstrapped .col-lg-1, .bootstrapped .col-lg-2, .bootstrapped .col-lg-3, .bootstrapped .col-lg-4, .bootstrapped .col-lg-5, .bootstrapped .col-lg-6, .bootstrapped .col-lg-7, .bootstrapped .col-lg-8, .bootstrapped .col-lg-9, .bootstrapped .col-lg-10, .bootstrapped .col-lg-11, .bootstrapped .col-lg-12 {
      float: left; }
    .bootstrapped .col-lg-1 {
      width: 8.33333%; }
    .bootstrapped .col-lg-2 {
      width: 16.66667%; }
    .bootstrapped .col-lg-3 {
      width: 25%; }
    .bootstrapped .col-lg-4 {
      width: 33.33333%; }
    .bootstrapped .col-lg-5 {
      width: 41.66667%; }
    .bootstrapped .col-lg-6 {
      width: 50%; }
    .bootstrapped .col-lg-7 {
      width: 58.33333%; }
    .bootstrapped .col-lg-8 {
      width: 66.66667%; }
    .bootstrapped .col-lg-9 {
      width: 75%; }
    .bootstrapped .col-lg-10 {
      width: 83.33333%; }
    .bootstrapped .col-lg-11 {
      width: 91.66667%; }
    .bootstrapped .col-lg-12 {
      width: 100%; }
    .bootstrapped .col-lg-pull-0 {
      right: auto; }
    .bootstrapped .col-lg-pull-1 {
      right: 8.33333%; }
    .bootstrapped .col-lg-pull-2 {
      right: 16.66667%; }
    .bootstrapped .col-lg-pull-3 {
      right: 25%; }
    .bootstrapped .col-lg-pull-4 {
      right: 33.33333%; }
    .bootstrapped .col-lg-pull-5 {
      right: 41.66667%; }
    .bootstrapped .col-lg-pull-6 {
      right: 50%; }
    .bootstrapped .col-lg-pull-7 {
      right: 58.33333%; }
    .bootstrapped .col-lg-pull-8 {
      right: 66.66667%; }
    .bootstrapped .col-lg-pull-9 {
      right: 75%; }
    .bootstrapped .col-lg-pull-10 {
      right: 83.33333%; }
    .bootstrapped .col-lg-pull-11 {
      right: 91.66667%; }
    .bootstrapped .col-lg-pull-12 {
      right: 100%; }
    .bootstrapped .col-lg-push-0 {
      left: auto; }
    .bootstrapped .col-lg-push-1 {
      left: 8.33333%; }
    .bootstrapped .col-lg-push-2 {
      left: 16.66667%; }
    .bootstrapped .col-lg-push-3 {
      left: 25%; }
    .bootstrapped .col-lg-push-4 {
      left: 33.33333%; }
    .bootstrapped .col-lg-push-5 {
      left: 41.66667%; }
    .bootstrapped .col-lg-push-6 {
      left: 50%; }
    .bootstrapped .col-lg-push-7 {
      left: 58.33333%; }
    .bootstrapped .col-lg-push-8 {
      left: 66.66667%; }
    .bootstrapped .col-lg-push-9 {
      left: 75%; }
    .bootstrapped .col-lg-push-10 {
      left: 83.33333%; }
    .bootstrapped .col-lg-push-11 {
      left: 91.66667%; }
    .bootstrapped .col-lg-push-12 {
      left: 100%; }
    .bootstrapped .col-lg-offset-0 {
      margin-left: 0%; }
    .bootstrapped .col-lg-offset-1 {
      margin-left: 8.33333%; }
    .bootstrapped .col-lg-offset-2 {
      margin-left: 16.66667%; }
    .bootstrapped .col-lg-offset-3 {
      margin-left: 25%; }
    .bootstrapped .col-lg-offset-4 {
      margin-left: 33.33333%; }
    .bootstrapped .col-lg-offset-5 {
      margin-left: 41.66667%; }
    .bootstrapped .col-lg-offset-6 {
      margin-left: 50%; }
    .bootstrapped .col-lg-offset-7 {
      margin-left: 58.33333%; }
    .bootstrapped .col-lg-offset-8 {
      margin-left: 66.66667%; }
    .bootstrapped .col-lg-offset-9 {
      margin-left: 75%; }
    .bootstrapped .col-lg-offset-10 {
      margin-left: 83.33333%; }
    .bootstrapped .col-lg-offset-11 {
      margin-left: 91.66667%; }
    .bootstrapped .col-lg-offset-12 {
      margin-left: 100%; } }
  .bootstrapped table {
    background-color: transparent; }
  .bootstrapped caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777777;
    text-align: left; }
  .bootstrapped th {
    text-align: left; }
  .bootstrapped .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px; }
    .bootstrapped .table > thead > tr > th,
    .bootstrapped .table > thead > tr > td,
    .bootstrapped .table > tbody > tr > th,
    .bootstrapped .table > tbody > tr > td,
    .bootstrapped .table > tfoot > tr > th,
    .bootstrapped .table > tfoot > tr > td {
      padding: 8px;
      line-height: 1.42857;
      vertical-align: top;
      border-top: 1px solid #ddd; }
    .bootstrapped .table > thead > tr > th {
      vertical-align: bottom;
      border-bottom: 2px solid #ddd; }
    .bootstrapped .table > caption + thead > tr:first-child > th,
    .bootstrapped .table > caption + thead > tr:first-child > td,
    .bootstrapped .table > colgroup + thead > tr:first-child > th,
    .bootstrapped .table > colgroup + thead > tr:first-child > td,
    .bootstrapped .table > thead:first-child > tr:first-child > th,
    .bootstrapped .table > thead:first-child > tr:first-child > td {
      border-top: 0; }
    .bootstrapped .table > tbody + tbody {
      border-top: 2px solid #ddd; }
    .bootstrapped .table .table {
      background-color: #fff; }
  .bootstrapped .table-condensed > thead > tr > th,
  .bootstrapped .table-condensed > thead > tr > td,
  .bootstrapped .table-condensed > tbody > tr > th,
  .bootstrapped .table-condensed > tbody > tr > td,
  .bootstrapped .table-condensed > tfoot > tr > th,
  .bootstrapped .table-condensed > tfoot > tr > td {
    padding: 5px; }
  .bootstrapped .table-bordered {
    border: 1px solid #ddd; }
    .bootstrapped .table-bordered > thead > tr > th,
    .bootstrapped .table-bordered > thead > tr > td,
    .bootstrapped .table-bordered > tbody > tr > th,
    .bootstrapped .table-bordered > tbody > tr > td,
    .bootstrapped .table-bordered > tfoot > tr > th,
    .bootstrapped .table-bordered > tfoot > tr > td {
      border: 1px solid #ddd; }
    .bootstrapped .table-bordered > thead > tr > th,
    .bootstrapped .table-bordered > thead > tr > td {
      border-bottom-width: 2px; }
  .bootstrapped .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9; }
  .bootstrapped .table-hover > tbody > tr:hover {
    background-color: #f5f5f5; }
  .bootstrapped table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column; }
  .bootstrapped table td[class*="col-"],
  .bootstrapped table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell; }
  .bootstrapped .table > thead > tr > td.active,
  .bootstrapped .table > thead > tr > th.active,
  .bootstrapped .table > thead > tr.active > td,
  .bootstrapped .table > thead > tr.active > th,
  .bootstrapped .table > tbody > tr > td.active,
  .bootstrapped .table > tbody > tr > th.active,
  .bootstrapped .table > tbody > tr.active > td,
  .bootstrapped .table > tbody > tr.active > th,
  .bootstrapped .table > tfoot > tr > td.active,
  .bootstrapped .table > tfoot > tr > th.active,
  .bootstrapped .table > tfoot > tr.active > td,
  .bootstrapped .table > tfoot > tr.active > th {
    background-color: #f5f5f5; }
  .bootstrapped .table-hover > tbody > tr > td.active:hover,
  .bootstrapped .table-hover > tbody > tr > th.active:hover,
  .bootstrapped .table-hover > tbody > tr.active:hover > td,
  .bootstrapped .table-hover > tbody > tr:hover > .active,
  .bootstrapped .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8; }
  .bootstrapped .table > thead > tr > td.success,
  .bootstrapped .table > thead > tr > th.success,
  .bootstrapped .table > thead > tr.success > td,
  .bootstrapped .table > thead > tr.success > th,
  .bootstrapped .table > tbody > tr > td.success,
  .bootstrapped .table > tbody > tr > th.success,
  .bootstrapped .table > tbody > tr.success > td,
  .bootstrapped .table > tbody > tr.success > th,
  .bootstrapped .table > tfoot > tr > td.success,
  .bootstrapped .table > tfoot > tr > th.success,
  .bootstrapped .table > tfoot > tr.success > td,
  .bootstrapped .table > tfoot > tr.success > th {
    background-color: #dff0d8; }
  .bootstrapped .table-hover > tbody > tr > td.success:hover,
  .bootstrapped .table-hover > tbody > tr > th.success:hover,
  .bootstrapped .table-hover > tbody > tr.success:hover > td,
  .bootstrapped .table-hover > tbody > tr:hover > .success,
  .bootstrapped .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6; }
  .bootstrapped .table > thead > tr > td.info,
  .bootstrapped .table > thead > tr > th.info,
  .bootstrapped .table > thead > tr.info > td,
  .bootstrapped .table > thead > tr.info > th,
  .bootstrapped .table > tbody > tr > td.info,
  .bootstrapped .table > tbody > tr > th.info,
  .bootstrapped .table > tbody > tr.info > td,
  .bootstrapped .table > tbody > tr.info > th,
  .bootstrapped .table > tfoot > tr > td.info,
  .bootstrapped .table > tfoot > tr > th.info,
  .bootstrapped .table > tfoot > tr.info > td,
  .bootstrapped .table > tfoot > tr.info > th {
    background-color: #d9edf7; }
  .bootstrapped .table-hover > tbody > tr > td.info:hover,
  .bootstrapped .table-hover > tbody > tr > th.info:hover,
  .bootstrapped .table-hover > tbody > tr.info:hover > td,
  .bootstrapped .table-hover > tbody > tr:hover > .info,
  .bootstrapped .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3; }
  .bootstrapped .table > thead > tr > td.warning,
  .bootstrapped .table > thead > tr > th.warning,
  .bootstrapped .table > thead > tr.warning > td,
  .bootstrapped .table > thead > tr.warning > th,
  .bootstrapped .table > tbody > tr > td.warning,
  .bootstrapped .table > tbody > tr > th.warning,
  .bootstrapped .table > tbody > tr.warning > td,
  .bootstrapped .table > tbody > tr.warning > th,
  .bootstrapped .table > tfoot > tr > td.warning,
  .bootstrapped .table > tfoot > tr > th.warning,
  .bootstrapped .table > tfoot > tr.warning > td,
  .bootstrapped .table > tfoot > tr.warning > th {
    background-color: #fcf8e3; }
  .bootstrapped .table-hover > tbody > tr > td.warning:hover,
  .bootstrapped .table-hover > tbody > tr > th.warning:hover,
  .bootstrapped .table-hover > tbody > tr.warning:hover > td,
  .bootstrapped .table-hover > tbody > tr:hover > .warning,
  .bootstrapped .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc; }
  .bootstrapped .table > thead > tr > td.danger,
  .bootstrapped .table > thead > tr > th.danger,
  .bootstrapped .table > thead > tr.danger > td,
  .bootstrapped .table > thead > tr.danger > th,
  .bootstrapped .table > tbody > tr > td.danger,
  .bootstrapped .table > tbody > tr > th.danger,
  .bootstrapped .table > tbody > tr.danger > td,
  .bootstrapped .table > tbody > tr.danger > th,
  .bootstrapped .table > tfoot > tr > td.danger,
  .bootstrapped .table > tfoot > tr > th.danger,
  .bootstrapped .table > tfoot > tr.danger > td,
  .bootstrapped .table > tfoot > tr.danger > th {
    background-color: #f2dede; }
  .bootstrapped .table-hover > tbody > tr > td.danger:hover,
  .bootstrapped .table-hover > tbody > tr > th.danger:hover,
  .bootstrapped .table-hover > tbody > tr.danger:hover > td,
  .bootstrapped .table-hover > tbody > tr:hover > .danger,
  .bootstrapped .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc; }
  .bootstrapped .table-responsive {
    overflow-x: auto;
    min-height: 0.01%; }
    @media screen and (max-width: 767px) {
      .bootstrapped .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd; }
        .bootstrapped .table-responsive > .table {
          margin-bottom: 0; }
          .bootstrapped .table-responsive > .table > thead > tr > th,
          .bootstrapped .table-responsive > .table > thead > tr > td,
          .bootstrapped .table-responsive > .table > tbody > tr > th,
          .bootstrapped .table-responsive > .table > tbody > tr > td,
          .bootstrapped .table-responsive > .table > tfoot > tr > th,
          .bootstrapped .table-responsive > .table > tfoot > tr > td {
            white-space: nowrap; }
        .bootstrapped .table-responsive > .table-bordered {
          border: 0; }
          .bootstrapped .table-responsive > .table-bordered > thead > tr > th:first-child,
          .bootstrapped .table-responsive > .table-bordered > thead > tr > td:first-child,
          .bootstrapped .table-responsive > .table-bordered > tbody > tr > th:first-child,
          .bootstrapped .table-responsive > .table-bordered > tbody > tr > td:first-child,
          .bootstrapped .table-responsive > .table-bordered > tfoot > tr > th:first-child,
          .bootstrapped .table-responsive > .table-bordered > tfoot > tr > td:first-child {
            border-left: 0; }
          .bootstrapped .table-responsive > .table-bordered > thead > tr > th:last-child,
          .bootstrapped .table-responsive > .table-bordered > thead > tr > td:last-child,
          .bootstrapped .table-responsive > .table-bordered > tbody > tr > th:last-child,
          .bootstrapped .table-responsive > .table-bordered > tbody > tr > td:last-child,
          .bootstrapped .table-responsive > .table-bordered > tfoot > tr > th:last-child,
          .bootstrapped .table-responsive > .table-bordered > tfoot > tr > td:last-child {
            border-right: 0; }
          .bootstrapped .table-responsive > .table-bordered > tbody > tr:last-child > th,
          .bootstrapped .table-responsive > .table-bordered > tbody > tr:last-child > td,
          .bootstrapped .table-responsive > .table-bordered > tfoot > tr:last-child > th,
          .bootstrapped .table-responsive > .table-bordered > tfoot > tr:last-child > td {
            border-bottom: 0; } }
  .bootstrapped fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0; }
  .bootstrapped legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5; }
  .bootstrapped label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold; }
  .bootstrapped input[type="search"] {
    box-sizing: border-box; }
  .bootstrapped input[type="radio"],
  .bootstrapped input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal; }
  .bootstrapped input[type="file"] {
    display: block; }
  .bootstrapped input[type="range"] {
    display: block;
    width: 100%; }
  .bootstrapped select[multiple],
  .bootstrapped select[size] {
    height: auto; }
  .bootstrapped input[type="file"]:focus,
  .bootstrapped input[type="radio"]:focus,
  .bootstrapped input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .bootstrapped output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555; }
  .bootstrapped .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; }
    .bootstrapped .form-control:focus {
      border-color: #66afe9;
      outline: 0;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
    .bootstrapped .form-control::-moz-placeholder {
      color: #999;
      opacity: 1; }
    .bootstrapped .form-control:-ms-input-placeholder {
      color: #999; }
    .bootstrapped .form-control::-webkit-input-placeholder {
      color: #999; }
    .bootstrapped .form-control::-ms-expand {
      border: 0;
      background-color: transparent; }
    .bootstrapped .form-control[disabled], .bootstrapped .form-control[readonly],
    fieldset[disabled] .bootstrapped .form-control {
      background-color: #eeeeee;
      opacity: 1; }
    .bootstrapped .form-control[disabled],
    fieldset[disabled] .bootstrapped .form-control {
      cursor: not-allowed; }
  .bootstrapped textarea.form-control {
    height: auto; }
  .bootstrapped input[type="search"] {
    -webkit-appearance: none; }
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
    .bootstrapped input[type="date"].form-control,
    .bootstrapped input[type="time"].form-control,
    .bootstrapped input[type="datetime-local"].form-control,
    .bootstrapped input[type="month"].form-control {
      line-height: 34px; }
    .bootstrapped input[type="date"].input-sm, .bootstrapped .input-group-sm > input[type="date"].form-control, .bootstrapped .input-group-sm > input[type="date"].input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > input[type="date"].btn,
    .input-group-sm .bootstrapped input[type="date"],
    .bootstrapped input[type="time"].input-sm, .bootstrapped .input-group-sm > input[type="time"].form-control, .bootstrapped .input-group-sm > input[type="time"].input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > input[type="time"].btn,
    .input-group-sm
    .bootstrapped input[type="time"],
    .bootstrapped input[type="datetime-local"].input-sm, .bootstrapped .input-group-sm > input[type="datetime-local"].form-control, .bootstrapped .input-group-sm > input[type="datetime-local"].input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
    .input-group-sm
    .bootstrapped input[type="datetime-local"],
    .bootstrapped input[type="month"].input-sm, .bootstrapped .input-group-sm > input[type="month"].form-control, .bootstrapped .input-group-sm > input[type="month"].input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > input[type="month"].btn,
    .input-group-sm
    .bootstrapped input[type="month"] {
      line-height: 30px; }
    .bootstrapped input[type="date"].input-lg, .bootstrapped .input-group-lg > input[type="date"].form-control, .bootstrapped .input-group-lg > input[type="date"].input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > input[type="date"].btn,
    .input-group-lg .bootstrapped input[type="date"],
    .bootstrapped input[type="time"].input-lg, .bootstrapped .input-group-lg > input[type="time"].form-control, .bootstrapped .input-group-lg > input[type="time"].input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > input[type="time"].btn,
    .input-group-lg
    .bootstrapped input[type="time"],
    .bootstrapped input[type="datetime-local"].input-lg, .bootstrapped .input-group-lg > input[type="datetime-local"].form-control, .bootstrapped .input-group-lg > input[type="datetime-local"].input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
    .input-group-lg
    .bootstrapped input[type="datetime-local"],
    .bootstrapped input[type="month"].input-lg, .bootstrapped .input-group-lg > input[type="month"].form-control, .bootstrapped .input-group-lg > input[type="month"].input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > input[type="month"].btn,
    .input-group-lg
    .bootstrapped input[type="month"] {
      line-height: 46px; } }
  .bootstrapped .form-group {
    margin-bottom: 15px; }
  .bootstrapped .radio,
  .bootstrapped .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px; }
    .bootstrapped .radio label,
    .bootstrapped .checkbox label {
      min-height: 20px;
      padding-left: 20px;
      margin-bottom: 0;
      font-weight: normal;
      cursor: pointer; }
  .bootstrapped .radio input[type="radio"],
  .bootstrapped .radio-inline input[type="radio"],
  .bootstrapped .checkbox input[type="checkbox"],
  .bootstrapped .checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9; }
  .bootstrapped .radio + .radio,
  .bootstrapped .checkbox + .checkbox {
    margin-top: -5px; }
  .bootstrapped .radio-inline,
  .bootstrapped .checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: normal;
    cursor: pointer; }
  .bootstrapped .radio-inline + .radio-inline,
  .bootstrapped .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px; }
  .bootstrapped input[type="radio"][disabled], .bootstrapped input[type="radio"].disabled,
  fieldset[disabled] .bootstrapped input[type="radio"],
  .bootstrapped input[type="checkbox"][disabled],
  .bootstrapped input[type="checkbox"].disabled,
  fieldset[disabled]
  .bootstrapped input[type="checkbox"] {
    cursor: not-allowed; }
  .bootstrapped .radio-inline.disabled,
  fieldset[disabled] .bootstrapped .radio-inline,
  .bootstrapped .checkbox-inline.disabled,
  fieldset[disabled]
  .bootstrapped .checkbox-inline {
    cursor: not-allowed; }
  .bootstrapped .radio.disabled label,
  fieldset[disabled] .bootstrapped .radio label,
  .bootstrapped .checkbox.disabled label,
  fieldset[disabled]
  .bootstrapped .checkbox label {
    cursor: not-allowed; }
  .bootstrapped .form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px; }
    .bootstrapped .form-control-static.input-lg, .bootstrapped .input-group-lg > .form-control-static.form-control, .bootstrapped .input-group-lg > .form-control-static.input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > .form-control-static.btn, .bootstrapped .form-control-static.input-sm, .bootstrapped .input-group-sm > .form-control-static.form-control, .bootstrapped .input-group-sm > .form-control-static.input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > .form-control-static.btn {
      padding-left: 0;
      padding-right: 0; }
  .bootstrapped .input-sm, .bootstrapped .input-group-sm > .form-control, .bootstrapped .input-group-sm > .input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  .bootstrapped select.input-sm, .bootstrapped .input-group-sm > select.form-control, .bootstrapped .input-group-sm > select.input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > select.btn {
    height: 30px;
    line-height: 30px; }
  .bootstrapped textarea.input-sm, .bootstrapped .input-group-sm > textarea.form-control, .bootstrapped .input-group-sm > textarea.input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > textarea.btn,
  .bootstrapped select[multiple].input-sm, .bootstrapped .input-group-sm > select[multiple].form-control, .bootstrapped .input-group-sm > select[multiple].input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > select[multiple].btn {
    height: auto; }
  .bootstrapped .form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  .bootstrapped .form-group-sm select.form-control {
    height: 30px;
    line-height: 30px; }
  .bootstrapped .form-group-sm textarea.form-control,
  .bootstrapped .form-group-sm select[multiple].form-control {
    height: auto; }
  .bootstrapped .form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5; }
  .bootstrapped .input-lg, .bootstrapped .input-group-lg > .form-control, .bootstrapped .input-group-lg > .input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px; }
  .bootstrapped select.input-lg, .bootstrapped .input-group-lg > select.form-control, .bootstrapped .input-group-lg > select.input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > select.btn {
    height: 46px;
    line-height: 46px; }
  .bootstrapped textarea.input-lg, .bootstrapped .input-group-lg > textarea.form-control, .bootstrapped .input-group-lg > textarea.input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > textarea.btn,
  .bootstrapped select[multiple].input-lg, .bootstrapped .input-group-lg > select[multiple].form-control, .bootstrapped .input-group-lg > select[multiple].input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > select[multiple].btn {
    height: auto; }
  .bootstrapped .form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px; }
  .bootstrapped .form-group-lg select.form-control {
    height: 46px;
    line-height: 46px; }
  .bootstrapped .form-group-lg textarea.form-control,
  .bootstrapped .form-group-lg select[multiple].form-control {
    height: auto; }
  .bootstrapped .form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.33333; }
  .bootstrapped .has-feedback {
    position: relative; }
    .bootstrapped .has-feedback .form-control {
      padding-right: 42.5px; }
  .bootstrapped .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none; }
  .bootstrapped .input-lg + .form-control-feedback, .bootstrapped .input-group-lg > .form-control + .form-control-feedback, .bootstrapped .input-group-lg > .input-group-addon + .form-control-feedback, .bootstrapped .input-group-lg > .input-group-btn > .btn + .form-control-feedback,
  .bootstrapped .input-group-lg + .form-control-feedback,
  .bootstrapped .form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px; }
  .bootstrapped .input-sm + .form-control-feedback, .bootstrapped .input-group-sm > .form-control + .form-control-feedback, .bootstrapped .input-group-sm > .input-group-addon + .form-control-feedback, .bootstrapped .input-group-sm > .input-group-btn > .btn + .form-control-feedback,
  .bootstrapped .input-group-sm + .form-control-feedback,
  .bootstrapped .form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px; }
  .bootstrapped .has-success .help-block,
  .bootstrapped .has-success .control-label,
  .bootstrapped .has-success .radio,
  .bootstrapped .has-success .checkbox,
  .bootstrapped .has-success .radio-inline,
  .bootstrapped .has-success .checkbox-inline,
  .bootstrapped .has-success.radio label,
  .bootstrapped .has-success.checkbox label,
  .bootstrapped .has-success.radio-inline label,
  .bootstrapped .has-success.checkbox-inline label {
    color: #3c763d; }
  .bootstrapped .has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
    .bootstrapped .has-success .form-control:focus {
      border-color: #2b542c;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
  .bootstrapped .has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8; }
  .bootstrapped .has-success .form-control-feedback {
    color: #3c763d; }
  .bootstrapped .has-warning .help-block,
  .bootstrapped .has-warning .control-label,
  .bootstrapped .has-warning .radio,
  .bootstrapped .has-warning .checkbox,
  .bootstrapped .has-warning .radio-inline,
  .bootstrapped .has-warning .checkbox-inline,
  .bootstrapped .has-warning.radio label,
  .bootstrapped .has-warning.checkbox label,
  .bootstrapped .has-warning.radio-inline label,
  .bootstrapped .has-warning.checkbox-inline label {
    color: #8a6d3b; }
  .bootstrapped .has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
    .bootstrapped .has-warning .form-control:focus {
      border-color: #66512c;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
  .bootstrapped .has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3; }
  .bootstrapped .has-warning .form-control-feedback {
    color: #8a6d3b; }
  .bootstrapped .has-error .help-block,
  .bootstrapped .has-error .control-label,
  .bootstrapped .has-error .radio,
  .bootstrapped .has-error .checkbox,
  .bootstrapped .has-error .radio-inline,
  .bootstrapped .has-error .checkbox-inline,
  .bootstrapped .has-error.radio label,
  .bootstrapped .has-error.checkbox label,
  .bootstrapped .has-error.radio-inline label,
  .bootstrapped .has-error.checkbox-inline label {
    color: #a94442; }
  .bootstrapped .has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
    .bootstrapped .has-error .form-control:focus {
      border-color: #843534;
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
  .bootstrapped .has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede; }
  .bootstrapped .has-error .form-control-feedback {
    color: #a94442; }
  .bootstrapped .has-feedback label ~ .form-control-feedback {
    top: 25px; }
  .bootstrapped .has-feedback label.sr-only ~ .form-control-feedback {
    top: 0; }
  .bootstrapped .help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373; }
  @media (min-width: 768px) {
    .bootstrapped .form-inline .form-group {
      display: inline-block;
      margin-bottom: 0;
      vertical-align: middle; }
    .bootstrapped .form-inline .form-control {
      display: inline-block;
      width: auto;
      vertical-align: middle; }
    .bootstrapped .form-inline .form-control-static {
      display: inline-block; }
    .bootstrapped .form-inline .input-group {
      display: inline-table;
      vertical-align: middle; }
      .bootstrapped .form-inline .input-group .input-group-addon,
      .bootstrapped .form-inline .input-group .input-group-btn,
      .bootstrapped .form-inline .input-group .form-control {
        width: auto; }
    .bootstrapped .form-inline .input-group > .form-control {
      width: 100%; }
    .bootstrapped .form-inline .control-label {
      margin-bottom: 0;
      vertical-align: middle; }
    .bootstrapped .form-inline .radio,
    .bootstrapped .form-inline .checkbox {
      display: inline-block;
      margin-top: 0;
      margin-bottom: 0;
      vertical-align: middle; }
      .bootstrapped .form-inline .radio label,
      .bootstrapped .form-inline .checkbox label {
        padding-left: 0; }
    .bootstrapped .form-inline .radio input[type="radio"],
    .bootstrapped .form-inline .checkbox input[type="checkbox"] {
      position: relative;
      margin-left: 0; }
    .bootstrapped .form-inline .has-feedback .form-control-feedback {
      top: 0; } }
  .bootstrapped .form-horizontal .radio,
  .bootstrapped .form-horizontal .checkbox,
  .bootstrapped .form-horizontal .radio-inline,
  .bootstrapped .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px; }
  .bootstrapped .form-horizontal .radio,
  .bootstrapped .form-horizontal .checkbox {
    min-height: 27px; }
  .bootstrapped .form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px; }
    .bootstrapped .form-horizontal .form-group:before, .bootstrapped .form-horizontal .form-group:after {
      content: "\20";
      display: table; }
    .bootstrapped .form-horizontal .form-group:after {
      clear: both; }
  @media (min-width: 768px) {
    .bootstrapped .form-horizontal .control-label {
      text-align: right;
      margin-bottom: 0;
      padding-top: 7px; } }
  .bootstrapped .form-horizontal .has-feedback .form-control-feedback {
    right: 15px; }
  @media (min-width: 768px) {
    .bootstrapped .form-horizontal .form-group-lg .control-label {
      padding-top: 11px;
      font-size: 18px; } }
  @media (min-width: 768px) {
    .bootstrapped .form-horizontal .form-group-sm .control-label {
      padding-top: 6px;
      font-size: 12px; } }
  .bootstrapped .btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .bootstrapped .btn:focus, .bootstrapped .btn.focus, .bootstrapped .btn:active:focus, .bootstrapped .btn:active.focus, .bootstrapped .btn.active:focus, .bootstrapped .btn.active.focus {
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px; }
    .bootstrapped .btn:hover, .bootstrapped .btn:focus, .bootstrapped .btn.focus {
      color: #333;
      text-decoration: none; }
    .bootstrapped .btn:active, .bootstrapped .btn.active {
      outline: 0;
      background-image: none;
      box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
    .bootstrapped .btn.disabled, .bootstrapped .btn[disabled],
    fieldset[disabled] .bootstrapped .btn {
      cursor: not-allowed;
      opacity: 0.65;
      filter: alpha(opacity=65);
      box-shadow: none; }
  .bootstrapped a.btn.disabled,
  fieldset[disabled] .bootstrapped a.btn {
    pointer-events: none; }
  .bootstrapped .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc; }
    .bootstrapped .btn-default:focus, .bootstrapped .btn-default.focus {
      color: #333;
      background-color: #e6e6e6;
      border-color: #8c8c8c; }
    .bootstrapped .btn-default:hover {
      color: #333;
      background-color: #e6e6e6;
      border-color: #adadad; }
    .bootstrapped .btn-default:active, .bootstrapped .btn-default.active,
    .open > .bootstrapped .btn-default.dropdown-toggle {
      color: #333;
      background-color: #e6e6e6;
      border-color: #adadad; }
      .bootstrapped .btn-default:active:hover, .bootstrapped .btn-default:active:focus, .bootstrapped .btn-default:active.focus, .bootstrapped .btn-default.active:hover, .bootstrapped .btn-default.active:focus, .bootstrapped .btn-default.active.focus,
      .open > .bootstrapped .btn-default.dropdown-toggle:hover,
      .open > .bootstrapped .btn-default.dropdown-toggle:focus,
      .open > .bootstrapped .btn-default.dropdown-toggle.focus {
        color: #333;
        background-color: #d4d4d4;
        border-color: #8c8c8c; }
    .bootstrapped .btn-default:active, .bootstrapped .btn-default.active,
    .open > .bootstrapped .btn-default.dropdown-toggle {
      background-image: none; }
    .bootstrapped .btn-default.disabled:hover, .bootstrapped .btn-default.disabled:focus, .bootstrapped .btn-default.disabled.focus, .bootstrapped .btn-default[disabled]:hover, .bootstrapped .btn-default[disabled]:focus, .bootstrapped .btn-default[disabled].focus,
    fieldset[disabled] .bootstrapped .btn-default:hover,
    fieldset[disabled] .bootstrapped .btn-default:focus,
    fieldset[disabled] .bootstrapped .btn-default.focus {
      background-color: #fff;
      border-color: #ccc; }
    .bootstrapped .btn-default .badge {
      color: #fff;
      background-color: #333; }
  .bootstrapped .btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4; }
    .bootstrapped .btn-primary:focus, .bootstrapped .btn-primary.focus {
      color: #fff;
      background-color: #286090;
      border-color: #122b40; }
    .bootstrapped .btn-primary:hover {
      color: #fff;
      background-color: #286090;
      border-color: #204d74; }
    .bootstrapped .btn-primary:active, .bootstrapped .btn-primary.active,
    .open > .bootstrapped .btn-primary.dropdown-toggle {
      color: #fff;
      background-color: #286090;
      border-color: #204d74; }
      .bootstrapped .btn-primary:active:hover, .bootstrapped .btn-primary:active:focus, .bootstrapped .btn-primary:active.focus, .bootstrapped .btn-primary.active:hover, .bootstrapped .btn-primary.active:focus, .bootstrapped .btn-primary.active.focus,
      .open > .bootstrapped .btn-primary.dropdown-toggle:hover,
      .open > .bootstrapped .btn-primary.dropdown-toggle:focus,
      .open > .bootstrapped .btn-primary.dropdown-toggle.focus {
        color: #fff;
        background-color: #204d74;
        border-color: #122b40; }
    .bootstrapped .btn-primary:active, .bootstrapped .btn-primary.active,
    .open > .bootstrapped .btn-primary.dropdown-toggle {
      background-image: none; }
    .bootstrapped .btn-primary.disabled:hover, .bootstrapped .btn-primary.disabled:focus, .bootstrapped .btn-primary.disabled.focus, .bootstrapped .btn-primary[disabled]:hover, .bootstrapped .btn-primary[disabled]:focus, .bootstrapped .btn-primary[disabled].focus,
    fieldset[disabled] .bootstrapped .btn-primary:hover,
    fieldset[disabled] .bootstrapped .btn-primary:focus,
    fieldset[disabled] .bootstrapped .btn-primary.focus {
      background-color: #337ab7;
      border-color: #2e6da4; }
    .bootstrapped .btn-primary .badge {
      color: #337ab7;
      background-color: #fff; }
  .bootstrapped .btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c; }
    .bootstrapped .btn-success:focus, .bootstrapped .btn-success.focus {
      color: #fff;
      background-color: #449d44;
      border-color: #255625; }
    .bootstrapped .btn-success:hover {
      color: #fff;
      background-color: #449d44;
      border-color: #398439; }
    .bootstrapped .btn-success:active, .bootstrapped .btn-success.active,
    .open > .bootstrapped .btn-success.dropdown-toggle {
      color: #fff;
      background-color: #449d44;
      border-color: #398439; }
      .bootstrapped .btn-success:active:hover, .bootstrapped .btn-success:active:focus, .bootstrapped .btn-success:active.focus, .bootstrapped .btn-success.active:hover, .bootstrapped .btn-success.active:focus, .bootstrapped .btn-success.active.focus,
      .open > .bootstrapped .btn-success.dropdown-toggle:hover,
      .open > .bootstrapped .btn-success.dropdown-toggle:focus,
      .open > .bootstrapped .btn-success.dropdown-toggle.focus {
        color: #fff;
        background-color: #398439;
        border-color: #255625; }
    .bootstrapped .btn-success:active, .bootstrapped .btn-success.active,
    .open > .bootstrapped .btn-success.dropdown-toggle {
      background-image: none; }
    .bootstrapped .btn-success.disabled:hover, .bootstrapped .btn-success.disabled:focus, .bootstrapped .btn-success.disabled.focus, .bootstrapped .btn-success[disabled]:hover, .bootstrapped .btn-success[disabled]:focus, .bootstrapped .btn-success[disabled].focus,
    fieldset[disabled] .bootstrapped .btn-success:hover,
    fieldset[disabled] .bootstrapped .btn-success:focus,
    fieldset[disabled] .bootstrapped .btn-success.focus {
      background-color: #5cb85c;
      border-color: #4cae4c; }
    .bootstrapped .btn-success .badge {
      color: #5cb85c;
      background-color: #fff; }
  .bootstrapped .btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da; }
    .bootstrapped .btn-info:focus, .bootstrapped .btn-info.focus {
      color: #fff;
      background-color: #31b0d5;
      border-color: #1b6d85; }
    .bootstrapped .btn-info:hover {
      color: #fff;
      background-color: #31b0d5;
      border-color: #269abc; }
    .bootstrapped .btn-info:active, .bootstrapped .btn-info.active,
    .open > .bootstrapped .btn-info.dropdown-toggle {
      color: #fff;
      background-color: #31b0d5;
      border-color: #269abc; }
      .bootstrapped .btn-info:active:hover, .bootstrapped .btn-info:active:focus, .bootstrapped .btn-info:active.focus, .bootstrapped .btn-info.active:hover, .bootstrapped .btn-info.active:focus, .bootstrapped .btn-info.active.focus,
      .open > .bootstrapped .btn-info.dropdown-toggle:hover,
      .open > .bootstrapped .btn-info.dropdown-toggle:focus,
      .open > .bootstrapped .btn-info.dropdown-toggle.focus {
        color: #fff;
        background-color: #269abc;
        border-color: #1b6d85; }
    .bootstrapped .btn-info:active, .bootstrapped .btn-info.active,
    .open > .bootstrapped .btn-info.dropdown-toggle {
      background-image: none; }
    .bootstrapped .btn-info.disabled:hover, .bootstrapped .btn-info.disabled:focus, .bootstrapped .btn-info.disabled.focus, .bootstrapped .btn-info[disabled]:hover, .bootstrapped .btn-info[disabled]:focus, .bootstrapped .btn-info[disabled].focus,
    fieldset[disabled] .bootstrapped .btn-info:hover,
    fieldset[disabled] .bootstrapped .btn-info:focus,
    fieldset[disabled] .bootstrapped .btn-info.focus {
      background-color: #5bc0de;
      border-color: #46b8da; }
    .bootstrapped .btn-info .badge {
      color: #5bc0de;
      background-color: #fff; }
  .bootstrapped .btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236; }
    .bootstrapped .btn-warning:focus, .bootstrapped .btn-warning.focus {
      color: #fff;
      background-color: #ec971f;
      border-color: #985f0d; }
    .bootstrapped .btn-warning:hover {
      color: #fff;
      background-color: #ec971f;
      border-color: #d58512; }
    .bootstrapped .btn-warning:active, .bootstrapped .btn-warning.active,
    .open > .bootstrapped .btn-warning.dropdown-toggle {
      color: #fff;
      background-color: #ec971f;
      border-color: #d58512; }
      .bootstrapped .btn-warning:active:hover, .bootstrapped .btn-warning:active:focus, .bootstrapped .btn-warning:active.focus, .bootstrapped .btn-warning.active:hover, .bootstrapped .btn-warning.active:focus, .bootstrapped .btn-warning.active.focus,
      .open > .bootstrapped .btn-warning.dropdown-toggle:hover,
      .open > .bootstrapped .btn-warning.dropdown-toggle:focus,
      .open > .bootstrapped .btn-warning.dropdown-toggle.focus {
        color: #fff;
        background-color: #d58512;
        border-color: #985f0d; }
    .bootstrapped .btn-warning:active, .bootstrapped .btn-warning.active,
    .open > .bootstrapped .btn-warning.dropdown-toggle {
      background-image: none; }
    .bootstrapped .btn-warning.disabled:hover, .bootstrapped .btn-warning.disabled:focus, .bootstrapped .btn-warning.disabled.focus, .bootstrapped .btn-warning[disabled]:hover, .bootstrapped .btn-warning[disabled]:focus, .bootstrapped .btn-warning[disabled].focus,
    fieldset[disabled] .bootstrapped .btn-warning:hover,
    fieldset[disabled] .bootstrapped .btn-warning:focus,
    fieldset[disabled] .bootstrapped .btn-warning.focus {
      background-color: #f0ad4e;
      border-color: #eea236; }
    .bootstrapped .btn-warning .badge {
      color: #f0ad4e;
      background-color: #fff; }
  .bootstrapped .btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a; }
    .bootstrapped .btn-danger:focus, .bootstrapped .btn-danger.focus {
      color: #fff;
      background-color: #c9302c;
      border-color: #761c19; }
    .bootstrapped .btn-danger:hover {
      color: #fff;
      background-color: #c9302c;
      border-color: #ac2925; }
    .bootstrapped .btn-danger:active, .bootstrapped .btn-danger.active,
    .open > .bootstrapped .btn-danger.dropdown-toggle {
      color: #fff;
      background-color: #c9302c;
      border-color: #ac2925; }
      .bootstrapped .btn-danger:active:hover, .bootstrapped .btn-danger:active:focus, .bootstrapped .btn-danger:active.focus, .bootstrapped .btn-danger.active:hover, .bootstrapped .btn-danger.active:focus, .bootstrapped .btn-danger.active.focus,
      .open > .bootstrapped .btn-danger.dropdown-toggle:hover,
      .open > .bootstrapped .btn-danger.dropdown-toggle:focus,
      .open > .bootstrapped .btn-danger.dropdown-toggle.focus {
        color: #fff;
        background-color: #ac2925;
        border-color: #761c19; }
    .bootstrapped .btn-danger:active, .bootstrapped .btn-danger.active,
    .open > .bootstrapped .btn-danger.dropdown-toggle {
      background-image: none; }
    .bootstrapped .btn-danger.disabled:hover, .bootstrapped .btn-danger.disabled:focus, .bootstrapped .btn-danger.disabled.focus, .bootstrapped .btn-danger[disabled]:hover, .bootstrapped .btn-danger[disabled]:focus, .bootstrapped .btn-danger[disabled].focus,
    fieldset[disabled] .bootstrapped .btn-danger:hover,
    fieldset[disabled] .bootstrapped .btn-danger:focus,
    fieldset[disabled] .bootstrapped .btn-danger.focus {
      background-color: #d9534f;
      border-color: #d43f3a; }
    .bootstrapped .btn-danger .badge {
      color: #d9534f;
      background-color: #fff; }
  .bootstrapped .btn-link {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0; }
    .bootstrapped .btn-link, .bootstrapped .btn-link:active, .bootstrapped .btn-link.active, .bootstrapped .btn-link[disabled],
    fieldset[disabled] .bootstrapped .btn-link {
      background-color: transparent;
      box-shadow: none; }
    .bootstrapped .btn-link, .bootstrapped .btn-link:hover, .bootstrapped .btn-link:focus, .bootstrapped .btn-link:active {
      border-color: transparent; }
    .bootstrapped .btn-link:hover, .bootstrapped .btn-link:focus {
      color: #23527c;
      text-decoration: underline;
      background-color: transparent; }
    .bootstrapped .btn-link[disabled]:hover, .bootstrapped .btn-link[disabled]:focus,
    fieldset[disabled] .bootstrapped .btn-link:hover,
    fieldset[disabled] .bootstrapped .btn-link:focus {
      color: #777777;
      text-decoration: none; }
  .bootstrapped .btn-lg, .bootstrapped .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px; }
  .bootstrapped .btn-sm, .bootstrapped .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  .bootstrapped .btn-xs, .bootstrapped .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px; }
  .bootstrapped .btn-block {
    display: block;
    width: 100%; }
  .bootstrapped .btn-block + .btn-block {
    margin-top: 5px; }
  .bootstrapped input[type="submit"].btn-block,
  .bootstrapped input[type="reset"].btn-block,
  .bootstrapped input[type="button"].btn-block {
    width: 100%; }
  .bootstrapped .fade {
    opacity: 0;
    transition: opacity 0.15s linear; }
    .bootstrapped .fade.in {
      opacity: 1; }
  .bootstrapped .collapse {
    display: none; }
    .bootstrapped .collapse.in {
      display: block; }
  .bootstrapped tr.collapse.in {
    display: table-row; }
  .bootstrapped tbody.collapse.in {
    display: table-row-group; }
  .bootstrapped .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease; }
  .bootstrapped .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent; }
  .bootstrapped .dropup,
  .bootstrapped .dropdown {
    position: relative; }
  .bootstrapped .dropdown-toggle:focus {
    outline: 0; }
  .bootstrapped .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box; }
    .bootstrapped .dropdown-menu.pull-right {
      right: 0;
      left: auto; }
    .bootstrapped .dropdown-menu .divider {
      height: 1px;
      margin: 9px 0;
      overflow: hidden;
      background-color: #e5e5e5; }
    .bootstrapped .dropdown-menu > li > a {
      display: block;
      padding: 3px 20px;
      clear: both;
      font-weight: normal;
      line-height: 1.42857;
      color: #333333;
      white-space: nowrap; }
  .bootstrapped .dropdown-menu > li > a:hover, .bootstrapped .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5; }
  .bootstrapped .dropdown-menu > .active > a, .bootstrapped .dropdown-menu > .active > a:hover, .bootstrapped .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7; }
  .bootstrapped .dropdown-menu > .disabled > a, .bootstrapped .dropdown-menu > .disabled > a:hover, .bootstrapped .dropdown-menu > .disabled > a:focus {
    color: #777777; }
  .bootstrapped .dropdown-menu > .disabled > a:hover, .bootstrapped .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed; }
  .bootstrapped .open > .dropdown-menu {
    display: block; }
  .bootstrapped .open > a {
    outline: 0; }
  .bootstrapped .dropdown-menu-right {
    left: auto;
    right: 0; }
  .bootstrapped .dropdown-menu-left {
    left: 0;
    right: auto; }
  .bootstrapped .dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857;
    color: #777777;
    white-space: nowrap; }
  .bootstrapped .dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990; }
  .bootstrapped .pull-right > .dropdown-menu {
    right: 0;
    left: auto; }
  .bootstrapped .dropup .caret,
  .bootstrapped .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: ""; }
  .bootstrapped .dropup .dropdown-menu,
  .bootstrapped .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px; }
  @media (min-width: 768px) {
    .bootstrapped .navbar-right .dropdown-menu {
      right: 0;
      left: auto; }
    .bootstrapped .navbar-right .dropdown-menu-left {
      left: 0;
      right: auto; } }
  .bootstrapped .btn-group,
  .bootstrapped .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle; }
    .bootstrapped .btn-group > .btn,
    .bootstrapped .btn-group-vertical > .btn {
      position: relative;
      float: left; }
      .bootstrapped .btn-group > .btn:hover, .bootstrapped .btn-group > .btn:focus, .bootstrapped .btn-group > .btn:active, .bootstrapped .btn-group > .btn.active,
      .bootstrapped .btn-group-vertical > .btn:hover,
      .bootstrapped .btn-group-vertical > .btn:focus,
      .bootstrapped .btn-group-vertical > .btn:active,
      .bootstrapped .btn-group-vertical > .btn.active {
        z-index: 2; }
  .bootstrapped .btn-group .btn + .btn,
  .bootstrapped .btn-group .btn + .btn-group,
  .bootstrapped .btn-group .btn-group + .btn,
  .bootstrapped .btn-group .btn-group + .btn-group {
    margin-left: -1px; }
  .bootstrapped .btn-toolbar {
    margin-left: -5px; }
    .bootstrapped .btn-toolbar:before, .bootstrapped .btn-toolbar:after {
      content: "\20";
      display: table; }
    .bootstrapped .btn-toolbar:after {
      clear: both; }
    .bootstrapped .btn-toolbar .btn,
    .bootstrapped .btn-toolbar .btn-group,
    .bootstrapped .btn-toolbar .input-group {
      float: left; }
    .bootstrapped .btn-toolbar > .btn,
    .bootstrapped .btn-toolbar > .btn-group,
    .bootstrapped .btn-toolbar > .input-group {
      margin-left: 5px; }
  .bootstrapped .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0; }
  .bootstrapped .btn-group > .btn:first-child {
    margin-left: 0; }
    .bootstrapped .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
      border-bottom-right-radius: 0;
      border-top-right-radius: 0; }
  .bootstrapped .btn-group > .btn:last-child:not(:first-child),
  .bootstrapped .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }
  .bootstrapped .btn-group > .btn-group {
    float: left; }
  .bootstrapped .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0; }
  .bootstrapped .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  .bootstrapped .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }
  .bootstrapped .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }
  .bootstrapped .btn-group .dropdown-toggle:active,
  .bootstrapped .btn-group.open .dropdown-toggle {
    outline: 0; }
  .bootstrapped .btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px; }
  .bootstrapped .btn-group > .btn-lg + .dropdown-toggle, .bootstrapped .btn-group-lg.btn-group > .btn + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px; }
  .bootstrapped .btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
    .bootstrapped .btn-group.open .dropdown-toggle.btn-link {
      box-shadow: none; }
  .bootstrapped .btn .caret {
    margin-left: 0; }
  .bootstrapped .btn-lg .caret, .bootstrapped .btn-group-lg > .btn .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0; }
  .bootstrapped .dropup .btn-lg .caret, .bootstrapped .dropup .btn-group-lg > .btn .caret {
    border-width: 0 5px 5px; }
  .bootstrapped .btn-group-vertical > .btn,
  .bootstrapped .btn-group-vertical > .btn-group,
  .bootstrapped .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%; }
  .bootstrapped .btn-group-vertical > .btn-group:before, .bootstrapped .btn-group-vertical > .btn-group:after {
    content: "\20";
    display: table; }
  .bootstrapped .btn-group-vertical > .btn-group:after {
    clear: both; }
  .bootstrapped .btn-group-vertical > .btn-group > .btn {
    float: none; }
  .bootstrapped .btn-group-vertical > .btn + .btn,
  .bootstrapped .btn-group-vertical > .btn + .btn-group,
  .bootstrapped .btn-group-vertical > .btn-group + .btn,
  .bootstrapped .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0; }
  .bootstrapped .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0; }
  .bootstrapped .btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrapped .btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
  .bootstrapped .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0; }
  .bootstrapped .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  .bootstrapped .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrapped .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  .bootstrapped .btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate; }
    .bootstrapped .btn-group-justified > .btn,
    .bootstrapped .btn-group-justified > .btn-group {
      float: none;
      display: table-cell;
      width: 1%; }
    .bootstrapped .btn-group-justified > .btn-group .btn {
      width: 100%; }
    .bootstrapped .btn-group-justified > .btn-group .dropdown-menu {
      left: auto; }
  .bootstrapped [data-toggle="buttons"] > .btn input[type="radio"],
  .bootstrapped [data-toggle="buttons"] > .btn input[type="checkbox"],
  .bootstrapped [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  .bootstrapped [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }
  .bootstrapped .input-group {
    position: relative;
    display: table;
    border-collapse: separate; }
    .bootstrapped .input-group[class*="col-"] {
      float: none;
      padding-left: 0;
      padding-right: 0; }
    .bootstrapped .input-group .form-control {
      position: relative;
      z-index: 2;
      float: left;
      width: 100%;
      margin-bottom: 0; }
      .bootstrapped .input-group .form-control:focus {
        z-index: 3; }
  .bootstrapped .input-group-addon,
  .bootstrapped .input-group-btn,
  .bootstrapped .input-group .form-control {
    display: table-cell; }
    .bootstrapped .input-group-addon:not(:first-child):not(:last-child),
    .bootstrapped .input-group-btn:not(:first-child):not(:last-child),
    .bootstrapped .input-group .form-control:not(:first-child):not(:last-child) {
      border-radius: 0; }
  .bootstrapped .input-group-addon,
  .bootstrapped .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle; }
  .bootstrapped .input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #555555;
    text-align: center;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    border-radius: 4px; }
    .bootstrapped .input-group-addon.input-sm, .bootstrapped .input-group-sm > .input-group-addon, .bootstrapped .input-group-sm > .input-group-btn > .input-group-addon.btn {
      padding: 5px 10px;
      font-size: 12px;
      border-radius: 3px; }
    .bootstrapped .input-group-addon.input-lg, .bootstrapped .input-group-lg > .input-group-addon, .bootstrapped .input-group-lg > .input-group-btn > .input-group-addon.btn {
      padding: 10px 16px;
      font-size: 18px;
      border-radius: 6px; }
    .bootstrapped .input-group-addon input[type="radio"],
    .bootstrapped .input-group-addon input[type="checkbox"] {
      margin-top: 0; }
  .bootstrapped .input-group .form-control:first-child,
  .bootstrapped .input-group-addon:first-child,
  .bootstrapped .input-group-btn:first-child > .btn,
  .bootstrapped .input-group-btn:first-child > .btn-group > .btn,
  .bootstrapped .input-group-btn:first-child > .dropdown-toggle,
  .bootstrapped .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  .bootstrapped .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0; }
  .bootstrapped .input-group-addon:first-child {
    border-right: 0; }
  .bootstrapped .input-group .form-control:last-child,
  .bootstrapped .input-group-addon:last-child,
  .bootstrapped .input-group-btn:last-child > .btn,
  .bootstrapped .input-group-btn:last-child > .btn-group > .btn,
  .bootstrapped .input-group-btn:last-child > .dropdown-toggle,
  .bootstrapped .input-group-btn:first-child > .btn:not(:first-child),
  .bootstrapped .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }
  .bootstrapped .input-group-addon:last-child {
    border-left: 0; }
  .bootstrapped .input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap; }
    .bootstrapped .input-group-btn > .btn {
      position: relative; }
      .bootstrapped .input-group-btn > .btn + .btn {
        margin-left: -1px; }
      .bootstrapped .input-group-btn > .btn:hover, .bootstrapped .input-group-btn > .btn:focus, .bootstrapped .input-group-btn > .btn:active {
        z-index: 2; }
    .bootstrapped .input-group-btn:first-child > .btn,
    .bootstrapped .input-group-btn:first-child > .btn-group {
      margin-right: -1px; }
    .bootstrapped .input-group-btn:last-child > .btn,
    .bootstrapped .input-group-btn:last-child > .btn-group {
      z-index: 2;
      margin-left: -1px; }
  .bootstrapped .nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none; }
    .bootstrapped .nav:before, .bootstrapped .nav:after {
      content: "\20";
      display: table; }
    .bootstrapped .nav:after {
      clear: both; }
    .bootstrapped .nav > li {
      position: relative;
      display: block; }
      .bootstrapped .nav > li > a {
        position: relative;
        display: block;
        padding: 10px 15px; }
        .bootstrapped .nav > li > a:hover, .bootstrapped .nav > li > a:focus {
          text-decoration: none;
          background-color: #eeeeee; }
      .bootstrapped .nav > li.disabled > a {
        color: #777777; }
        .bootstrapped .nav > li.disabled > a:hover, .bootstrapped .nav > li.disabled > a:focus {
          color: #777777;
          text-decoration: none;
          background-color: transparent;
          cursor: not-allowed; }
    .bootstrapped .nav .open > a, .bootstrapped .nav .open > a:hover, .bootstrapped .nav .open > a:focus {
      background-color: #eeeeee;
      border-color: #337ab7; }
    .bootstrapped .nav .nav-divider {
      height: 1px;
      margin: 9px 0;
      overflow: hidden;
      background-color: #e5e5e5; }
    .bootstrapped .nav > li > a > img {
      max-width: none; }
  .bootstrapped .nav-tabs {
    border-bottom: 1px solid #ddd; }
    .bootstrapped .nav-tabs > li {
      float: left;
      margin-bottom: -1px; }
      .bootstrapped .nav-tabs > li > a {
        margin-right: 2px;
        line-height: 1.42857;
        border: 1px solid transparent;
        border-radius: 4px 4px 0 0; }
        .bootstrapped .nav-tabs > li > a:hover {
          border-color: #eeeeee #eeeeee #ddd; }
      .bootstrapped .nav-tabs > li.active > a, .bootstrapped .nav-tabs > li.active > a:hover, .bootstrapped .nav-tabs > li.active > a:focus {
        color: #555555;
        background-color: #fff;
        border: 1px solid #ddd;
        border-bottom-color: transparent;
        cursor: default; }
  .bootstrapped .nav-pills > li {
    float: left; }
    .bootstrapped .nav-pills > li > a {
      border-radius: 4px; }
    .bootstrapped .nav-pills > li + li {
      margin-left: 2px; }
    .bootstrapped .nav-pills > li.active > a, .bootstrapped .nav-pills > li.active > a:hover, .bootstrapped .nav-pills > li.active > a:focus {
      color: #fff;
      background-color: #337ab7; }
  .bootstrapped .nav-stacked > li {
    float: none; }
    .bootstrapped .nav-stacked > li + li {
      margin-top: 2px;
      margin-left: 0; }
  .bootstrapped .nav-justified, .bootstrapped .nav-tabs.nav-justified {
    width: 100%; }
    .bootstrapped .nav-justified > li, .bootstrapped .nav-tabs.nav-justified > li {
      float: none; }
      .bootstrapped .nav-justified > li > a, .bootstrapped .nav-tabs.nav-justified > li > a {
        text-align: center;
        margin-bottom: 5px; }
    .bootstrapped .nav-justified > .dropdown .dropdown-menu {
      top: auto;
      left: auto; }
    @media (min-width: 768px) {
      .bootstrapped .nav-justified > li, .bootstrapped .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%; }
        .bootstrapped .nav-justified > li > a, .bootstrapped .nav-tabs.nav-justified > li > a {
          margin-bottom: 0; } }
  .bootstrapped .nav-tabs-justified, .bootstrapped .nav-tabs.nav-justified {
    border-bottom: 0; }
    .bootstrapped .nav-tabs-justified > li > a, .bootstrapped .nav-tabs.nav-justified > li > a {
      margin-right: 0;
      border-radius: 4px; }
    .bootstrapped .nav-tabs-justified > .active > a, .bootstrapped .nav-tabs.nav-justified > .active > a,
    .bootstrapped .nav-tabs-justified > .active > a:hover, .bootstrapped .nav-tabs.nav-justified > .active > a:hover,
    .bootstrapped .nav-tabs-justified > .active > a:focus, .bootstrapped .nav-tabs.nav-justified > .active > a:focus {
      border: 1px solid #ddd; }
    @media (min-width: 768px) {
      .bootstrapped .nav-tabs-justified > li > a, .bootstrapped .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0; }
      .bootstrapped .nav-tabs-justified > .active > a, .bootstrapped .nav-tabs.nav-justified > .active > a,
      .bootstrapped .nav-tabs-justified > .active > a:hover, .bootstrapped .nav-tabs.nav-justified > .active > a:hover,
      .bootstrapped .nav-tabs-justified > .active > a:focus, .bootstrapped .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff; } }
  .bootstrapped .tab-content > .tab-pane {
    display: none; }
  .bootstrapped .tab-content > .active {
    display: block; }
  .bootstrapped .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  .bootstrapped .navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent; }
    .bootstrapped .navbar:before, .bootstrapped .navbar:after {
      content: "\20";
      display: table; }
    .bootstrapped .navbar:after {
      clear: both; }
    @media (min-width: 768px) {
      .bootstrapped .navbar {
        border-radius: 4px; } }
  .bootstrapped .navbar-header:before, .bootstrapped .navbar-header:after {
    content: "\20";
    display: table; }
  .bootstrapped .navbar-header:after {
    clear: both; }
  @media (min-width: 768px) {
    .bootstrapped .navbar-header {
      float: left; } }
  .bootstrapped .navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch; }
    .bootstrapped .navbar-collapse:before, .bootstrapped .navbar-collapse:after {
      content: "\20";
      display: table; }
    .bootstrapped .navbar-collapse:after {
      clear: both; }
    .bootstrapped .navbar-collapse.in {
      overflow-y: auto; }
    @media (min-width: 768px) {
      .bootstrapped .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none; }
        .bootstrapped .navbar-collapse.collapse {
          display: block !important;
          height: auto !important;
          padding-bottom: 0;
          overflow: visible !important; }
        .bootstrapped .navbar-collapse.in {
          overflow-y: visible; }
        .navbar-fixed-top .bootstrapped .navbar-collapse,
        .navbar-static-top .bootstrapped .navbar-collapse,
        .navbar-fixed-bottom .bootstrapped .navbar-collapse {
          padding-left: 0;
          padding-right: 0; } }
  .bootstrapped .navbar-fixed-top .navbar-collapse,
  .bootstrapped .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px; }
    @media (max-device-width: 480px) and (orientation: landscape) {
      .bootstrapped .navbar-fixed-top .navbar-collapse,
      .bootstrapped .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px; } }
  .bootstrapped .container > .navbar-header,
  .bootstrapped .container > .navbar-collapse,
  .bootstrapped .container-fluid > .navbar-header,
  .bootstrapped .container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px; }
    @media (min-width: 768px) {
      .bootstrapped .container > .navbar-header,
      .bootstrapped .container > .navbar-collapse,
      .bootstrapped .container-fluid > .navbar-header,
      .bootstrapped .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0; } }
  .bootstrapped .navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px; }
    @media (min-width: 768px) {
      .bootstrapped .navbar-static-top {
        border-radius: 0; } }
  .bootstrapped .navbar-fixed-top,
  .bootstrapped .navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030; }
    @media (min-width: 768px) {
      .bootstrapped .navbar-fixed-top,
      .bootstrapped .navbar-fixed-bottom {
        border-radius: 0; } }
  .bootstrapped .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px; }
  .bootstrapped .navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0; }
  .bootstrapped .navbar-brand {
    float: left;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px; }
    .bootstrapped .navbar-brand:hover, .bootstrapped .navbar-brand:focus {
      text-decoration: none; }
    .bootstrapped .navbar-brand > img {
      display: block; }
    @media (min-width: 768px) {
      .navbar > .container .bootstrapped .navbar-brand,
      .navbar > .container-fluid .bootstrapped .navbar-brand {
        margin-left: -15px; } }
  .bootstrapped .navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px; }
    .bootstrapped .navbar-toggle:focus {
      outline: 0; }
    .bootstrapped .navbar-toggle .icon-bar {
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 1px; }
    .bootstrapped .navbar-toggle .icon-bar + .icon-bar {
      margin-top: 4px; }
    @media (min-width: 768px) {
      .bootstrapped .navbar-toggle {
        display: none; } }
  .bootstrapped .navbar-nav {
    margin: 7.5px -15px; }
    .bootstrapped .navbar-nav > li > a {
      padding-top: 10px;
      padding-bottom: 10px;
      line-height: 20px; }
    @media (max-width: 767px) {
      .bootstrapped .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none; }
        .bootstrapped .navbar-nav .open .dropdown-menu > li > a,
        .bootstrapped .navbar-nav .open .dropdown-menu .dropdown-header {
          padding: 5px 15px 5px 25px; }
        .bootstrapped .navbar-nav .open .dropdown-menu > li > a {
          line-height: 20px; }
          .bootstrapped .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrapped .navbar-nav .open .dropdown-menu > li > a:focus {
            background-image: none; } }
    @media (min-width: 768px) {
      .bootstrapped .navbar-nav {
        float: left;
        margin: 0; }
        .bootstrapped .navbar-nav > li {
          float: left; }
          .bootstrapped .navbar-nav > li > a {
            padding-top: 15px;
            padding-bottom: 15px; } }
  .bootstrapped .navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .bootstrapped .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle; }
      .bootstrapped .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle; }
      .bootstrapped .navbar-form .form-control-static {
        display: inline-block; }
      .bootstrapped .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle; }
        .bootstrapped .navbar-form .input-group .input-group-addon,
        .bootstrapped .navbar-form .input-group .input-group-btn,
        .bootstrapped .navbar-form .input-group .form-control {
          width: auto; }
      .bootstrapped .navbar-form .input-group > .form-control {
        width: 100%; }
      .bootstrapped .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle; }
      .bootstrapped .navbar-form .radio,
      .bootstrapped .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle; }
        .bootstrapped .navbar-form .radio label,
        .bootstrapped .navbar-form .checkbox label {
          padding-left: 0; }
      .bootstrapped .navbar-form .radio input[type="radio"],
      .bootstrapped .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0; }
      .bootstrapped .navbar-form .has-feedback .form-control-feedback {
        top: 0; } }
    @media (max-width: 767px) {
      .bootstrapped .navbar-form .form-group {
        margin-bottom: 5px; }
        .bootstrapped .navbar-form .form-group:last-child {
          margin-bottom: 0; } }
    @media (min-width: 768px) {
      .bootstrapped .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none; } }
  .bootstrapped .navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  .bootstrapped .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .bootstrapped .navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px; }
    .bootstrapped .navbar-btn.btn-sm, .bootstrapped .btn-group-sm > .navbar-btn.btn {
      margin-top: 10px;
      margin-bottom: 10px; }
    .bootstrapped .navbar-btn.btn-xs, .bootstrapped .btn-group-xs > .navbar-btn.btn {
      margin-top: 14px;
      margin-bottom: 14px; }
  .bootstrapped .navbar-text {
    margin-top: 15px;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .bootstrapped .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px; } }
  @media (min-width: 768px) {
    .bootstrapped .navbar-left {
      float: left !important; }
    .bootstrapped .navbar-right {
      float: right !important;
      margin-right: -15px; }
      .bootstrapped .navbar-right ~ .navbar-right {
        margin-right: 0; } }
  .bootstrapped .navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7; }
    .bootstrapped .navbar-default .navbar-brand {
      color: #777; }
      .bootstrapped .navbar-default .navbar-brand:hover, .bootstrapped .navbar-default .navbar-brand:focus {
        color: #5e5e5e;
        background-color: transparent; }
    .bootstrapped .navbar-default .navbar-text {
      color: #777; }
    .bootstrapped .navbar-default .navbar-nav > li > a {
      color: #777; }
      .bootstrapped .navbar-default .navbar-nav > li > a:hover, .bootstrapped .navbar-default .navbar-nav > li > a:focus {
        color: #333;
        background-color: transparent; }
    .bootstrapped .navbar-default .navbar-nav > .active > a, .bootstrapped .navbar-default .navbar-nav > .active > a:hover, .bootstrapped .navbar-default .navbar-nav > .active > a:focus {
      color: #555;
      background-color: #e7e7e7; }
    .bootstrapped .navbar-default .navbar-nav > .disabled > a, .bootstrapped .navbar-default .navbar-nav > .disabled > a:hover, .bootstrapped .navbar-default .navbar-nav > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; }
    .bootstrapped .navbar-default .navbar-toggle {
      border-color: #ddd; }
      .bootstrapped .navbar-default .navbar-toggle:hover, .bootstrapped .navbar-default .navbar-toggle:focus {
        background-color: #ddd; }
      .bootstrapped .navbar-default .navbar-toggle .icon-bar {
        background-color: #888; }
    .bootstrapped .navbar-default .navbar-collapse,
    .bootstrapped .navbar-default .navbar-form {
      border-color: #e7e7e7; }
    .bootstrapped .navbar-default .navbar-nav > .open > a, .bootstrapped .navbar-default .navbar-nav > .open > a:hover, .bootstrapped .navbar-default .navbar-nav > .open > a:focus {
      background-color: #e7e7e7;
      color: #555; }
    @media (max-width: 767px) {
      .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777; }
        .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
          color: #333;
          background-color: transparent; }
      .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7; }
      .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrapped .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent; } }
    .bootstrapped .navbar-default .navbar-link {
      color: #777; }
      .bootstrapped .navbar-default .navbar-link:hover {
        color: #333; }
    .bootstrapped .navbar-default .btn-link {
      color: #777; }
      .bootstrapped .navbar-default .btn-link:hover, .bootstrapped .navbar-default .btn-link:focus {
        color: #333; }
      .bootstrapped .navbar-default .btn-link[disabled]:hover, .bootstrapped .navbar-default .btn-link[disabled]:focus,
      fieldset[disabled] .bootstrapped .navbar-default .btn-link:hover,
      fieldset[disabled] .bootstrapped .navbar-default .btn-link:focus {
        color: #ccc; }
  .bootstrapped .navbar-inverse {
    background-color: #222;
    border-color: #090909; }
    .bootstrapped .navbar-inverse .navbar-brand {
      color: #9d9d9d; }
      .bootstrapped .navbar-inverse .navbar-brand:hover, .bootstrapped .navbar-inverse .navbar-brand:focus {
        color: #fff;
        background-color: transparent; }
    .bootstrapped .navbar-inverse .navbar-text {
      color: #9d9d9d; }
    .bootstrapped .navbar-inverse .navbar-nav > li > a {
      color: #9d9d9d; }
      .bootstrapped .navbar-inverse .navbar-nav > li > a:hover, .bootstrapped .navbar-inverse .navbar-nav > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .bootstrapped .navbar-inverse .navbar-nav > .active > a, .bootstrapped .navbar-inverse .navbar-nav > .active > a:hover, .bootstrapped .navbar-inverse .navbar-nav > .active > a:focus {
      color: #fff;
      background-color: #090909; }
    .bootstrapped .navbar-inverse .navbar-nav > .disabled > a, .bootstrapped .navbar-inverse .navbar-nav > .disabled > a:hover, .bootstrapped .navbar-inverse .navbar-nav > .disabled > a:focus {
      color: #444;
      background-color: transparent; }
    .bootstrapped .navbar-inverse .navbar-toggle {
      border-color: #333; }
      .bootstrapped .navbar-inverse .navbar-toggle:hover, .bootstrapped .navbar-inverse .navbar-toggle:focus {
        background-color: #333; }
      .bootstrapped .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fff; }
    .bootstrapped .navbar-inverse .navbar-collapse,
    .bootstrapped .navbar-inverse .navbar-form {
      border-color: #101010; }
    .bootstrapped .navbar-inverse .navbar-nav > .open > a, .bootstrapped .navbar-inverse .navbar-nav > .open > a:hover, .bootstrapped .navbar-inverse .navbar-nav > .open > a:focus {
      background-color: #090909;
      color: #fff; }
    @media (max-width: 767px) {
      .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #090909; }
      .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909; }
      .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d; }
        .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
          color: #fff;
          background-color: transparent; }
      .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #090909; }
      .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .bootstrapped .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent; } }
    .bootstrapped .navbar-inverse .navbar-link {
      color: #9d9d9d; }
      .bootstrapped .navbar-inverse .navbar-link:hover {
        color: #fff; }
    .bootstrapped .navbar-inverse .btn-link {
      color: #9d9d9d; }
      .bootstrapped .navbar-inverse .btn-link:hover, .bootstrapped .navbar-inverse .btn-link:focus {
        color: #fff; }
      .bootstrapped .navbar-inverse .btn-link[disabled]:hover, .bootstrapped .navbar-inverse .btn-link[disabled]:focus,
      fieldset[disabled] .bootstrapped .navbar-inverse .btn-link:hover,
      fieldset[disabled] .bootstrapped .navbar-inverse .btn-link:focus {
        color: #444; }
  .bootstrapped .breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px; }
    .bootstrapped .breadcrumb > li {
      display: inline-block; }
      .bootstrapped .breadcrumb > li + li:before {
        content: "/ ";
        padding: 0 5px;
        color: #ccc; }
    .bootstrapped .breadcrumb > .active {
      color: #777777; }
  .bootstrapped .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px; }
    .bootstrapped .pagination > li {
      display: inline; }
      .bootstrapped .pagination > li > a,
      .bootstrapped .pagination > li > span {
        position: relative;
        float: left;
        padding: 6px 12px;
        line-height: 1.42857;
        text-decoration: none;
        color: #337ab7;
        background-color: #fff;
        border: 1px solid #ddd;
        margin-left: -1px; }
      .bootstrapped .pagination > li:first-child > a,
      .bootstrapped .pagination > li:first-child > span {
        margin-left: 0;
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px; }
      .bootstrapped .pagination > li:last-child > a,
      .bootstrapped .pagination > li:last-child > span {
        border-bottom-right-radius: 4px;
        border-top-right-radius: 4px; }
    .bootstrapped .pagination > li > a:hover, .bootstrapped .pagination > li > a:focus,
    .bootstrapped .pagination > li > span:hover,
    .bootstrapped .pagination > li > span:focus {
      z-index: 2;
      color: #23527c;
      background-color: #eeeeee;
      border-color: #ddd; }
    .bootstrapped .pagination > .active > a, .bootstrapped .pagination > .active > a:hover, .bootstrapped .pagination > .active > a:focus,
    .bootstrapped .pagination > .active > span,
    .bootstrapped .pagination > .active > span:hover,
    .bootstrapped .pagination > .active > span:focus {
      z-index: 3;
      color: #fff;
      background-color: #337ab7;
      border-color: #337ab7;
      cursor: default; }
    .bootstrapped .pagination > .disabled > span,
    .bootstrapped .pagination > .disabled > span:hover,
    .bootstrapped .pagination > .disabled > span:focus,
    .bootstrapped .pagination > .disabled > a,
    .bootstrapped .pagination > .disabled > a:hover,
    .bootstrapped .pagination > .disabled > a:focus {
      color: #777777;
      background-color: #fff;
      border-color: #ddd;
      cursor: not-allowed; }
  .bootstrapped .pagination-lg > li > a,
  .bootstrapped .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333; }
  .bootstrapped .pagination-lg > li:first-child > a,
  .bootstrapped .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px; }
  .bootstrapped .pagination-lg > li:last-child > a,
  .bootstrapped .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px; }
  .bootstrapped .pagination-sm > li > a,
  .bootstrapped .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5; }
  .bootstrapped .pagination-sm > li:first-child > a,
  .bootstrapped .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px; }
  .bootstrapped .pagination-sm > li:last-child > a,
  .bootstrapped .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px; }
  .bootstrapped .pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center; }
    .bootstrapped .pager:before, .bootstrapped .pager:after {
      content: "\20";
      display: table; }
    .bootstrapped .pager:after {
      clear: both; }
    .bootstrapped .pager li {
      display: inline; }
      .bootstrapped .pager li > a,
      .bootstrapped .pager li > span {
        display: inline-block;
        padding: 5px 14px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 15px; }
      .bootstrapped .pager li > a:hover,
      .bootstrapped .pager li > a:focus {
        text-decoration: none;
        background-color: #eeeeee; }
    .bootstrapped .pager .next > a,
    .bootstrapped .pager .next > span {
      float: right; }
    .bootstrapped .pager .previous > a,
    .bootstrapped .pager .previous > span {
      float: left; }
    .bootstrapped .pager .disabled > a,
    .bootstrapped .pager .disabled > a:hover,
    .bootstrapped .pager .disabled > a:focus,
    .bootstrapped .pager .disabled > span {
      color: #777777;
      background-color: #fff;
      cursor: not-allowed; }
  .bootstrapped .label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em; }
    .bootstrapped .label:empty {
      display: none; }
    .btn .bootstrapped .label {
      position: relative;
      top: -1px; }
  .bootstrapped a.label:hover, .bootstrapped a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }
  .bootstrapped .label-default {
    background-color: #777777; }
    .bootstrapped .label-default[href]:hover, .bootstrapped .label-default[href]:focus {
      background-color: #5e5e5e; }
  .bootstrapped .label-primary {
    background-color: #337ab7; }
    .bootstrapped .label-primary[href]:hover, .bootstrapped .label-primary[href]:focus {
      background-color: #286090; }
  .bootstrapped .label-success {
    background-color: #5cb85c; }
    .bootstrapped .label-success[href]:hover, .bootstrapped .label-success[href]:focus {
      background-color: #449d44; }
  .bootstrapped .label-info {
    background-color: #5bc0de; }
    .bootstrapped .label-info[href]:hover, .bootstrapped .label-info[href]:focus {
      background-color: #31b0d5; }
  .bootstrapped .label-warning {
    background-color: #f0ad4e; }
    .bootstrapped .label-warning[href]:hover, .bootstrapped .label-warning[href]:focus {
      background-color: #ec971f; }
  .bootstrapped .label-danger {
    background-color: #d9534f; }
    .bootstrapped .label-danger[href]:hover, .bootstrapped .label-danger[href]:focus {
      background-color: #c9302c; }
  .bootstrapped .badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777777;
    border-radius: 10px; }
    .bootstrapped .badge:empty {
      display: none; }
    .btn .bootstrapped .badge {
      position: relative;
      top: -1px; }
    .btn-xs .bootstrapped .badge, .bootstrapped .btn-group-xs > .btn .bootstrapped .badge,
    .btn-group-xs > .btn .bootstrapped .badge {
      top: 0;
      padding: 1px 5px; }
    .list-group-item.active > .bootstrapped .badge,
    .nav-pills > .active > a > .bootstrapped .badge {
      color: #337ab7;
      background-color: #fff; }
    .list-group-item > .bootstrapped .badge {
      float: right; }
    .list-group-item > .bootstrapped .badge + .bootstrapped .badge {
      margin-right: 5px; }
    .nav-pills > li > a > .bootstrapped .badge {
      margin-left: 3px; }
  .bootstrapped a.badge:hover, .bootstrapped a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }
  .bootstrapped .jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eeeeee; }
    .bootstrapped .jumbotron h1,
    .bootstrapped .jumbotron .h1 {
      color: inherit; }
    .bootstrapped .jumbotron p {
      margin-bottom: 15px;
      font-size: 21px;
      font-weight: 200; }
    .bootstrapped .jumbotron > hr {
      border-top-color: #d5d5d5; }
    .container .bootstrapped .jumbotron,
    .container-fluid .bootstrapped .jumbotron {
      border-radius: 6px;
      padding-left: 15px;
      padding-right: 15px; }
    .bootstrapped .jumbotron .container {
      max-width: 100%; }
    @media screen and (min-width: 768px) {
      .bootstrapped .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px; }
        .container .bootstrapped .jumbotron,
        .container-fluid .bootstrapped .jumbotron {
          padding-left: 60px;
          padding-right: 60px; }
        .bootstrapped .jumbotron h1,
        .bootstrapped .jumbotron .h1 {
          font-size: 63px; } }
  .bootstrapped .thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border 0.2s ease-in-out; }
    .bootstrapped .thumbnail > img,
    .bootstrapped .thumbnail a > img {
      display: block;
      max-width: 100%;
      height: auto;
      margin-left: auto;
      margin-right: auto; }
    .bootstrapped .thumbnail .caption {
      padding: 9px;
      color: #333333; }
  .bootstrapped a.thumbnail:hover,
  .bootstrapped a.thumbnail:focus,
  .bootstrapped a.thumbnail.active {
    border-color: #337ab7; }
  .bootstrapped .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px; }
    .bootstrapped .alert h4 {
      margin-top: 0;
      color: inherit; }
    .bootstrapped .alert .alert-link {
      font-weight: bold; }
    .bootstrapped .alert > p,
    .bootstrapped .alert > ul {
      margin-bottom: 0; }
    .bootstrapped .alert > p + p {
      margin-top: 5px; }
  .bootstrapped .alert-dismissable,
  .bootstrapped .alert-dismissible {
    padding-right: 35px; }
    .bootstrapped .alert-dismissable .close,
    .bootstrapped .alert-dismissible .close {
      position: relative;
      top: -2px;
      right: -21px;
      color: inherit; }
  .bootstrapped .alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d; }
    .bootstrapped .alert-success hr {
      border-top-color: #c9e2b3; }
    .bootstrapped .alert-success .alert-link {
      color: #2b542c; }
  .bootstrapped .alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f; }
    .bootstrapped .alert-info hr {
      border-top-color: #a6e1ec; }
    .bootstrapped .alert-info .alert-link {
      color: #245269; }
  .bootstrapped .alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b; }
    .bootstrapped .alert-warning hr {
      border-top-color: #f7e1b5; }
    .bootstrapped .alert-warning .alert-link {
      color: #66512c; }
  .bootstrapped .alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442; }
    .bootstrapped .alert-danger hr {
      border-top-color: #e4b9c0; }
    .bootstrapped .alert-danger .alert-link {
      color: #843534; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0; }
  to {
    background-position: 0 0; } }
  .bootstrapped .progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  .bootstrapped .progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: width 0.6s ease; }
  .bootstrapped .progress-striped .progress-bar,
  .bootstrapped .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px; }
  .bootstrapped .progress.active .progress-bar,
  .bootstrapped .progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite; }
  .bootstrapped .progress-bar-success {
    background-color: #5cb85c; }
    .progress-striped .bootstrapped .progress-bar-success {
      background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  .bootstrapped .progress-bar-info {
    background-color: #5bc0de; }
    .progress-striped .bootstrapped .progress-bar-info {
      background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  .bootstrapped .progress-bar-warning {
    background-color: #f0ad4e; }
    .progress-striped .bootstrapped .progress-bar-warning {
      background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  .bootstrapped .progress-bar-danger {
    background-color: #d9534f; }
    .progress-striped .bootstrapped .progress-bar-danger {
      background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
  .bootstrapped .media {
    margin-top: 15px; }
    .bootstrapped .media:first-child {
      margin-top: 0; }
  .bootstrapped .media,
  .bootstrapped .media-body {
    zoom: 1;
    overflow: hidden; }
  .bootstrapped .media-body {
    width: 10000px; }
  .bootstrapped .media-object {
    display: block; }
    .bootstrapped .media-object.img-thumbnail {
      max-width: none; }
  .bootstrapped .media-right,
  .bootstrapped .media > .pull-right {
    padding-left: 10px; }
  .bootstrapped .media-left,
  .bootstrapped .media > .pull-left {
    padding-right: 10px; }
  .bootstrapped .media-left,
  .bootstrapped .media-right,
  .bootstrapped .media-body {
    display: table-cell;
    vertical-align: top; }
  .bootstrapped .media-middle {
    vertical-align: middle; }
  .bootstrapped .media-bottom {
    vertical-align: bottom; }
  .bootstrapped .media-heading {
    margin-top: 0;
    margin-bottom: 5px; }
  .bootstrapped .media-list {
    padding-left: 0;
    list-style: none; }
  .bootstrapped .list-group {
    margin-bottom: 20px;
    padding-left: 0; }
  .bootstrapped .list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd; }
    .bootstrapped .list-group-item:first-child {
      border-top-right-radius: 4px;
      border-top-left-radius: 4px; }
    .bootstrapped .list-group-item:last-child {
      margin-bottom: 0;
      border-bottom-right-radius: 4px;
      border-bottom-left-radius: 4px; }
  .bootstrapped a.list-group-item,
  .bootstrapped button.list-group-item {
    color: #555; }
    .bootstrapped a.list-group-item .list-group-item-heading,
    .bootstrapped button.list-group-item .list-group-item-heading {
      color: #333; }
    .bootstrapped a.list-group-item:hover, .bootstrapped a.list-group-item:focus,
    .bootstrapped button.list-group-item:hover,
    .bootstrapped button.list-group-item:focus {
      text-decoration: none;
      color: #555;
      background-color: #f5f5f5; }
  .bootstrapped button.list-group-item {
    width: 100%;
    text-align: left; }
  .bootstrapped .list-group-item.disabled, .bootstrapped .list-group-item.disabled:hover, .bootstrapped .list-group-item.disabled:focus {
    background-color: #eeeeee;
    color: #777777;
    cursor: not-allowed; }
    .bootstrapped .list-group-item.disabled .list-group-item-heading, .bootstrapped .list-group-item.disabled:hover .list-group-item-heading, .bootstrapped .list-group-item.disabled:focus .list-group-item-heading {
      color: inherit; }
    .bootstrapped .list-group-item.disabled .list-group-item-text, .bootstrapped .list-group-item.disabled:hover .list-group-item-text, .bootstrapped .list-group-item.disabled:focus .list-group-item-text {
      color: #777777; }
  .bootstrapped .list-group-item.active, .bootstrapped .list-group-item.active:hover, .bootstrapped .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7; }
    .bootstrapped .list-group-item.active .list-group-item-heading,
    .bootstrapped .list-group-item.active .list-group-item-heading > small,
    .bootstrapped .list-group-item.active .list-group-item-heading > .small, .bootstrapped .list-group-item.active:hover .list-group-item-heading,
    .bootstrapped .list-group-item.active:hover .list-group-item-heading > small,
    .bootstrapped .list-group-item.active:hover .list-group-item-heading > .small, .bootstrapped .list-group-item.active:focus .list-group-item-heading,
    .bootstrapped .list-group-item.active:focus .list-group-item-heading > small,
    .bootstrapped .list-group-item.active:focus .list-group-item-heading > .small {
      color: inherit; }
    .bootstrapped .list-group-item.active .list-group-item-text, .bootstrapped .list-group-item.active:hover .list-group-item-text, .bootstrapped .list-group-item.active:focus .list-group-item-text {
      color: #c7ddef; }
  .bootstrapped .list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8; }
  .bootstrapped a.list-group-item-success,
  .bootstrapped button.list-group-item-success {
    color: #3c763d; }
    .bootstrapped a.list-group-item-success .list-group-item-heading,
    .bootstrapped button.list-group-item-success .list-group-item-heading {
      color: inherit; }
    .bootstrapped a.list-group-item-success:hover, .bootstrapped a.list-group-item-success:focus,
    .bootstrapped button.list-group-item-success:hover,
    .bootstrapped button.list-group-item-success:focus {
      color: #3c763d;
      background-color: #d0e9c6; }
    .bootstrapped a.list-group-item-success.active, .bootstrapped a.list-group-item-success.active:hover, .bootstrapped a.list-group-item-success.active:focus,
    .bootstrapped button.list-group-item-success.active,
    .bootstrapped button.list-group-item-success.active:hover,
    .bootstrapped button.list-group-item-success.active:focus {
      color: #fff;
      background-color: #3c763d;
      border-color: #3c763d; }
  .bootstrapped .list-group-item-info {
    color: #31708f;
    background-color: #d9edf7; }
  .bootstrapped a.list-group-item-info,
  .bootstrapped button.list-group-item-info {
    color: #31708f; }
    .bootstrapped a.list-group-item-info .list-group-item-heading,
    .bootstrapped button.list-group-item-info .list-group-item-heading {
      color: inherit; }
    .bootstrapped a.list-group-item-info:hover, .bootstrapped a.list-group-item-info:focus,
    .bootstrapped button.list-group-item-info:hover,
    .bootstrapped button.list-group-item-info:focus {
      color: #31708f;
      background-color: #c4e3f3; }
    .bootstrapped a.list-group-item-info.active, .bootstrapped a.list-group-item-info.active:hover, .bootstrapped a.list-group-item-info.active:focus,
    .bootstrapped button.list-group-item-info.active,
    .bootstrapped button.list-group-item-info.active:hover,
    .bootstrapped button.list-group-item-info.active:focus {
      color: #fff;
      background-color: #31708f;
      border-color: #31708f; }
  .bootstrapped .list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3; }
  .bootstrapped a.list-group-item-warning,
  .bootstrapped button.list-group-item-warning {
    color: #8a6d3b; }
    .bootstrapped a.list-group-item-warning .list-group-item-heading,
    .bootstrapped button.list-group-item-warning .list-group-item-heading {
      color: inherit; }
    .bootstrapped a.list-group-item-warning:hover, .bootstrapped a.list-group-item-warning:focus,
    .bootstrapped button.list-group-item-warning:hover,
    .bootstrapped button.list-group-item-warning:focus {
      color: #8a6d3b;
      background-color: #faf2cc; }
    .bootstrapped a.list-group-item-warning.active, .bootstrapped a.list-group-item-warning.active:hover, .bootstrapped a.list-group-item-warning.active:focus,
    .bootstrapped button.list-group-item-warning.active,
    .bootstrapped button.list-group-item-warning.active:hover,
    .bootstrapped button.list-group-item-warning.active:focus {
      color: #fff;
      background-color: #8a6d3b;
      border-color: #8a6d3b; }
  .bootstrapped .list-group-item-danger {
    color: #a94442;
    background-color: #f2dede; }
  .bootstrapped a.list-group-item-danger,
  .bootstrapped button.list-group-item-danger {
    color: #a94442; }
    .bootstrapped a.list-group-item-danger .list-group-item-heading,
    .bootstrapped button.list-group-item-danger .list-group-item-heading {
      color: inherit; }
    .bootstrapped a.list-group-item-danger:hover, .bootstrapped a.list-group-item-danger:focus,
    .bootstrapped button.list-group-item-danger:hover,
    .bootstrapped button.list-group-item-danger:focus {
      color: #a94442;
      background-color: #ebcccc; }
    .bootstrapped a.list-group-item-danger.active, .bootstrapped a.list-group-item-danger.active:hover, .bootstrapped a.list-group-item-danger.active:focus,
    .bootstrapped button.list-group-item-danger.active,
    .bootstrapped button.list-group-item-danger.active:hover,
    .bootstrapped button.list-group-item-danger.active:focus {
      color: #fff;
      background-color: #a94442;
      border-color: #a94442; }
  .bootstrapped .list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px; }
  .bootstrapped .list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3; }
  .bootstrapped .panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
  .bootstrapped .panel-body {
    padding: 15px; }
    .bootstrapped .panel-body:before, .bootstrapped .panel-body:after {
      content: "\20";
      display: table; }
    .bootstrapped .panel-body:after {
      clear: both; }
  .bootstrapped .panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
    .bootstrapped .panel-heading > .dropdown .dropdown-toggle {
      color: inherit; }
  .bootstrapped .panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit; }
    .bootstrapped .panel-title > a,
    .bootstrapped .panel-title > small,
    .bootstrapped .panel-title > .small,
    .bootstrapped .panel-title > small > a,
    .bootstrapped .panel-title > .small > a {
      color: inherit; }
  .bootstrapped .panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }
  .bootstrapped .panel > .list-group,
  .bootstrapped .panel > .panel-collapse > .list-group {
    margin-bottom: 0; }
    .bootstrapped .panel > .list-group .list-group-item,
    .bootstrapped .panel > .panel-collapse > .list-group .list-group-item {
      border-width: 1px 0;
      border-radius: 0; }
    .bootstrapped .panel > .list-group:first-child .list-group-item:first-child,
    .bootstrapped .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
      border-top: 0;
      border-top-right-radius: 3px;
      border-top-left-radius: 3px; }
    .bootstrapped .panel > .list-group:last-child .list-group-item:last-child,
    .bootstrapped .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
      border-bottom: 0;
      border-bottom-right-radius: 3px;
      border-bottom-left-radius: 3px; }
  .bootstrapped .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0; }
  .bootstrapped .panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0; }
  .bootstrapped .list-group + .panel-footer {
    border-top-width: 0; }
  .bootstrapped .panel > .table,
  .bootstrapped .panel > .table-responsive > .table,
  .bootstrapped .panel > .panel-collapse > .table {
    margin-bottom: 0; }
    .bootstrapped .panel > .table caption,
    .bootstrapped .panel > .table-responsive > .table caption,
    .bootstrapped .panel > .panel-collapse > .table caption {
      padding-left: 15px;
      padding-right: 15px; }
  .bootstrapped .panel > .table:first-child,
  .bootstrapped .panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
    .bootstrapped .panel > .table:first-child > thead:first-child > tr:first-child,
    .bootstrapped .panel > .table:first-child > tbody:first-child > tr:first-child,
    .bootstrapped .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
    .bootstrapped .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
      .bootstrapped .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
      .bootstrapped .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
      .bootstrapped .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
      .bootstrapped .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
        border-top-left-radius: 3px; }
      .bootstrapped .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
      .bootstrapped .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
      .bootstrapped .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
      .bootstrapped .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
      .bootstrapped .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
        border-top-right-radius: 3px; }
  .bootstrapped .panel > .table:last-child,
  .bootstrapped .panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; }
    .bootstrapped .panel > .table:last-child > tbody:last-child > tr:last-child,
    .bootstrapped .panel > .table:last-child > tfoot:last-child > tr:last-child,
    .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
    .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px; }
      .bootstrapped .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
      .bootstrapped .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
      .bootstrapped .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
      .bootstrapped .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
        border-bottom-left-radius: 3px; }
      .bootstrapped .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
      .bootstrapped .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
      .bootstrapped .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
      .bootstrapped .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
      .bootstrapped .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
        border-bottom-right-radius: 3px; }
  .bootstrapped .panel > .panel-body + .table,
  .bootstrapped .panel > .panel-body + .table-responsive,
  .bootstrapped .panel > .table + .panel-body,
  .bootstrapped .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd; }
  .bootstrapped .panel > .table > tbody:first-child > tr:first-child th,
  .bootstrapped .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0; }
  .bootstrapped .panel > .table-bordered,
  .bootstrapped .panel > .table-responsive > .table-bordered {
    border: 0; }
    .bootstrapped .panel > .table-bordered > thead > tr > th:first-child,
    .bootstrapped .panel > .table-bordered > thead > tr > td:first-child,
    .bootstrapped .panel > .table-bordered > tbody > tr > th:first-child,
    .bootstrapped .panel > .table-bordered > tbody > tr > td:first-child,
    .bootstrapped .panel > .table-bordered > tfoot > tr > th:first-child,
    .bootstrapped .panel > .table-bordered > tfoot > tr > td:first-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
      border-left: 0; }
    .bootstrapped .panel > .table-bordered > thead > tr > th:last-child,
    .bootstrapped .panel > .table-bordered > thead > tr > td:last-child,
    .bootstrapped .panel > .table-bordered > tbody > tr > th:last-child,
    .bootstrapped .panel > .table-bordered > tbody > tr > td:last-child,
    .bootstrapped .panel > .table-bordered > tfoot > tr > th:last-child,
    .bootstrapped .panel > .table-bordered > tfoot > tr > td:last-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .bootstrapped .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
      border-right: 0; }
    .bootstrapped .panel > .table-bordered > thead > tr:first-child > td,
    .bootstrapped .panel > .table-bordered > thead > tr:first-child > th,
    .bootstrapped .panel > .table-bordered > tbody > tr:first-child > td,
    .bootstrapped .panel > .table-bordered > tbody > tr:first-child > th,
    .bootstrapped .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
    .bootstrapped .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
      border-bottom: 0; }
    .bootstrapped .panel > .table-bordered > tbody > tr:last-child > td,
    .bootstrapped .panel > .table-bordered > tbody > tr:last-child > th,
    .bootstrapped .panel > .table-bordered > tfoot > tr:last-child > td,
    .bootstrapped .panel > .table-bordered > tfoot > tr:last-child > th,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .bootstrapped .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .bootstrapped .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .bootstrapped .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
      border-bottom: 0; }
  .bootstrapped .panel > .table-responsive {
    border: 0;
    margin-bottom: 0; }
  .bootstrapped .panel-group {
    margin-bottom: 20px; }
    .bootstrapped .panel-group .panel {
      margin-bottom: 0;
      border-radius: 4px; }
      .bootstrapped .panel-group .panel + .panel {
        margin-top: 5px; }
    .bootstrapped .panel-group .panel-heading {
      border-bottom: 0; }
      .bootstrapped .panel-group .panel-heading + .panel-collapse > .panel-body,
      .bootstrapped .panel-group .panel-heading + .panel-collapse > .list-group {
        border-top: 1px solid #ddd; }
    .bootstrapped .panel-group .panel-footer {
      border-top: 0; }
      .bootstrapped .panel-group .panel-footer + .panel-collapse .panel-body {
        border-bottom: 1px solid #ddd; }
  .bootstrapped .panel-default {
    border-color: #ddd; }
    .bootstrapped .panel-default > .panel-heading {
      color: #333333;
      background-color: #f5f5f5;
      border-color: #ddd; }
      .bootstrapped .panel-default > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #ddd; }
      .bootstrapped .panel-default > .panel-heading .badge {
        color: #f5f5f5;
        background-color: #333333; }
    .bootstrapped .panel-default > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #ddd; }
  .bootstrapped .panel-primary {
    border-color: #337ab7; }
    .bootstrapped .panel-primary > .panel-heading {
      color: #fff;
      background-color: #337ab7;
      border-color: #337ab7; }
      .bootstrapped .panel-primary > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #337ab7; }
      .bootstrapped .panel-primary > .panel-heading .badge {
        color: #337ab7;
        background-color: #fff; }
    .bootstrapped .panel-primary > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #337ab7; }
  .bootstrapped .panel-success {
    border-color: #d6e9c6; }
    .bootstrapped .panel-success > .panel-heading {
      color: #3c763d;
      background-color: #dff0d8;
      border-color: #d6e9c6; }
      .bootstrapped .panel-success > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #d6e9c6; }
      .bootstrapped .panel-success > .panel-heading .badge {
        color: #dff0d8;
        background-color: #3c763d; }
    .bootstrapped .panel-success > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #d6e9c6; }
  .bootstrapped .panel-info {
    border-color: #bce8f1; }
    .bootstrapped .panel-info > .panel-heading {
      color: #31708f;
      background-color: #d9edf7;
      border-color: #bce8f1; }
      .bootstrapped .panel-info > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #bce8f1; }
      .bootstrapped .panel-info > .panel-heading .badge {
        color: #d9edf7;
        background-color: #31708f; }
    .bootstrapped .panel-info > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #bce8f1; }
  .bootstrapped .panel-warning {
    border-color: #faebcc; }
    .bootstrapped .panel-warning > .panel-heading {
      color: #8a6d3b;
      background-color: #fcf8e3;
      border-color: #faebcc; }
      .bootstrapped .panel-warning > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #faebcc; }
      .bootstrapped .panel-warning > .panel-heading .badge {
        color: #fcf8e3;
        background-color: #8a6d3b; }
    .bootstrapped .panel-warning > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #faebcc; }
  .bootstrapped .panel-danger {
    border-color: #ebccd1; }
    .bootstrapped .panel-danger > .panel-heading {
      color: #a94442;
      background-color: #f2dede;
      border-color: #ebccd1; }
      .bootstrapped .panel-danger > .panel-heading + .panel-collapse > .panel-body {
        border-top-color: #ebccd1; }
      .bootstrapped .panel-danger > .panel-heading .badge {
        color: #f2dede;
        background-color: #a94442; }
    .bootstrapped .panel-danger > .panel-footer + .panel-collapse > .panel-body {
      border-bottom-color: #ebccd1; }
  .bootstrapped .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden; }
    .bootstrapped .embed-responsive .embed-responsive-item,
    .bootstrapped .embed-responsive iframe,
    .bootstrapped .embed-responsive embed,
    .bootstrapped .embed-responsive object,
    .bootstrapped .embed-responsive video {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      border: 0; }
  .bootstrapped .embed-responsive-16by9 {
    padding-bottom: 56.25%; }
  .bootstrapped .embed-responsive-4by3 {
    padding-bottom: 75%; }
  .bootstrapped .well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
    .bootstrapped .well blockquote {
      border-color: #ddd;
      border-color: rgba(0, 0, 0, 0.15); }
  .bootstrapped .well-lg {
    padding: 24px;
    border-radius: 6px; }
  .bootstrapped .well-sm {
    padding: 9px;
    border-radius: 3px; }
  .bootstrapped .close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20); }
    .bootstrapped .close:hover, .bootstrapped .close:focus {
      color: #000;
      text-decoration: none;
      cursor: pointer;
      opacity: 0.5;
      filter: alpha(opacity=50); }
  .bootstrapped button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none; }
  .bootstrapped .modal-open {
    overflow: hidden; }
  .bootstrapped .modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0; }
    .bootstrapped .modal.fade .modal-dialog {
      -webkit-transform: translate(0, -25%);
      transform: translate(0, -25%);
      transition: -webkit-transform 0.3s ease-out;
      transition: transform 0.3s ease-out;
      transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; }
    .bootstrapped .modal.in .modal-dialog {
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0); }
  .bootstrapped .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }
  .bootstrapped .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px; }
  .bootstrapped .modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0; }
  .bootstrapped .modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000; }
    .bootstrapped .modal-backdrop.fade {
      opacity: 0;
      filter: alpha(opacity=0); }
    .bootstrapped .modal-backdrop.in {
      opacity: 0.5;
      filter: alpha(opacity=50); }
  .bootstrapped .modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5; }
    .bootstrapped .modal-header:before, .bootstrapped .modal-header:after {
      content: "\20";
      display: table; }
    .bootstrapped .modal-header:after {
      clear: both; }
  .bootstrapped .modal-header .close {
    margin-top: -2px; }
  .bootstrapped .modal-title {
    margin: 0;
    line-height: 1.42857; }
  .bootstrapped .modal-body {
    position: relative;
    padding: 15px; }
  .bootstrapped .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5; }
    .bootstrapped .modal-footer:before, .bootstrapped .modal-footer:after {
      content: "\20";
      display: table; }
    .bootstrapped .modal-footer:after {
      clear: both; }
    .bootstrapped .modal-footer .btn + .btn {
      margin-left: 5px;
      margin-bottom: 0; }
    .bootstrapped .modal-footer .btn-group .btn + .btn {
      margin-left: -1px; }
    .bootstrapped .modal-footer .btn-block + .btn-block {
      margin-left: 0; }
  .bootstrapped .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; }
  @media (min-width: 768px) {
    .bootstrapped .modal-dialog {
      width: 600px;
      margin: 30px auto; }
    .bootstrapped .modal-content {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
    .bootstrapped .modal-sm {
      width: 300px; } }
  @media (min-width: 992px) {
    .bootstrapped .modal-lg {
      width: 900px; } }
  .bootstrapped .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0); }
    .bootstrapped .tooltip.in {
      opacity: 0.9;
      filter: alpha(opacity=90); }
    .bootstrapped .tooltip.top {
      margin-top: -3px;
      padding: 5px 0; }
    .bootstrapped .tooltip.right {
      margin-left: 3px;
      padding: 0 5px; }
    .bootstrapped .tooltip.bottom {
      margin-top: 3px;
      padding: 5px 0; }
    .bootstrapped .tooltip.left {
      margin-left: -3px;
      padding: 0 5px; }
  .bootstrapped .tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px; }
  .bootstrapped .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  .bootstrapped .tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .bootstrapped .tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .bootstrapped .tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000; }
  .bootstrapped .tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000; }
  .bootstrapped .tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000; }
  .bootstrapped .tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .bootstrapped .tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .bootstrapped .tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000; }
  .bootstrapped .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
    .bootstrapped .popover.top {
      margin-top: -10px; }
    .bootstrapped .popover.right {
      margin-left: 10px; }
    .bootstrapped .popover.bottom {
      margin-top: 10px; }
    .bootstrapped .popover.left {
      margin-left: -10px; }
  .bootstrapped .popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0; }
  .bootstrapped .popover-content {
    padding: 9px 14px; }
  .bootstrapped .popover > .arrow, .bootstrapped .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  .bootstrapped .popover > .arrow {
    border-width: 11px; }
  .bootstrapped .popover > .arrow:after {
    border-width: 10px;
    content: ""; }
  .bootstrapped .popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px; }
    .bootstrapped .popover.top > .arrow:after {
      content: "\20";
      bottom: 1px;
      margin-left: -10px;
      border-bottom-width: 0;
      border-top-color: #fff; }
  .bootstrapped .popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25); }
    .bootstrapped .popover.right > .arrow:after {
      content: "\20";
      left: 1px;
      bottom: -10px;
      border-left-width: 0;
      border-right-color: #fff; }
  .bootstrapped .popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px; }
    .bootstrapped .popover.bottom > .arrow:after {
      content: "\20";
      top: 1px;
      margin-left: -10px;
      border-top-width: 0;
      border-bottom-color: #fff; }
  .bootstrapped .popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999999;
    border-left-color: rgba(0, 0, 0, 0.25); }
    .bootstrapped .popover.left > .arrow:after {
      content: "\20";
      right: 1px;
      border-right-width: 0;
      border-left-color: #fff;
      bottom: -10px; }
  .bootstrapped .carousel {
    position: relative; }
  .bootstrapped .carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%; }
    .bootstrapped .carousel-inner > .item {
      display: none;
      position: relative;
      transition: 0.6s ease-in-out left; }
      .bootstrapped .carousel-inner > .item > img,
      .bootstrapped .carousel-inner > .item > a > img {
        display: block;
        max-width: 100%;
        height: auto;
        line-height: 1; }
      @media all and (transform-3d), (-webkit-transform-3d) {
        .bootstrapped .carousel-inner > .item {
          transition: -webkit-transform 0.6s ease-in-out;
          transition: transform 0.6s ease-in-out;
          transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          -webkit-perspective: 1000px;
          perspective: 1000px; }
          .bootstrapped .carousel-inner > .item.next, .bootstrapped .carousel-inner > .item.active.right {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
            left: 0; }
          .bootstrapped .carousel-inner > .item.prev, .bootstrapped .carousel-inner > .item.active.left {
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
            left: 0; }
          .bootstrapped .carousel-inner > .item.next.left, .bootstrapped .carousel-inner > .item.prev.right, .bootstrapped .carousel-inner > .item.active {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
            left: 0; } }
    .bootstrapped .carousel-inner > .active,
    .bootstrapped .carousel-inner > .next,
    .bootstrapped .carousel-inner > .prev {
      display: block; }
    .bootstrapped .carousel-inner > .active {
      left: 0; }
    .bootstrapped .carousel-inner > .next,
    .bootstrapped .carousel-inner > .prev {
      position: absolute;
      top: 0;
      width: 100%; }
    .bootstrapped .carousel-inner > .next {
      left: 100%; }
    .bootstrapped .carousel-inner > .prev {
      left: -100%; }
    .bootstrapped .carousel-inner > .next.left,
    .bootstrapped .carousel-inner > .prev.right {
      left: 0; }
    .bootstrapped .carousel-inner > .active.left {
      left: -100%; }
    .bootstrapped .carousel-inner > .active.right {
      left: 100%; }
  .bootstrapped .carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: 0.5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: transparent; }
    .bootstrapped .carousel-control.left {
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
    .bootstrapped .carousel-control.right {
      left: auto;
      right: 0;
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
      background-repeat: repeat-x;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
    .bootstrapped .carousel-control:hover, .bootstrapped .carousel-control:focus {
      outline: 0;
      color: #fff;
      text-decoration: none;
      opacity: 0.9;
      filter: alpha(opacity=90); }
    .bootstrapped .carousel-control .icon-prev,
    .bootstrapped .carousel-control .icon-next,
    .bootstrapped .carousel-control .glyphicon-chevron-left,
    .bootstrapped .carousel-control .glyphicon-chevron-right {
      position: absolute;
      top: 50%;
      margin-top: -10px;
      z-index: 5;
      display: inline-block; }
    .bootstrapped .carousel-control .icon-prev,
    .bootstrapped .carousel-control .glyphicon-chevron-left {
      left: 50%;
      margin-left: -10px; }
    .bootstrapped .carousel-control .icon-next,
    .bootstrapped .carousel-control .glyphicon-chevron-right {
      right: 50%;
      margin-right: -10px; }
    .bootstrapped .carousel-control .icon-prev,
    .bootstrapped .carousel-control .icon-next {
      width: 20px;
      height: 20px;
      line-height: 1;
      font-family: serif; }
    .bootstrapped .carousel-control .icon-prev:before {
      content: '\2039'; }
    .bootstrapped .carousel-control .icon-next:before {
      content: '\203a'; }
  .bootstrapped .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center; }
    .bootstrapped .carousel-indicators li {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 1px;
      text-indent: -999px;
      border: 1px solid #fff;
      border-radius: 10px;
      cursor: pointer;
      background-color: #000 \9;
      background-color: transparent; }
    .bootstrapped .carousel-indicators .active {
      margin: 0;
      width: 12px;
      height: 12px;
      background-color: #fff; }
  .bootstrapped .carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
    .bootstrapped .carousel-caption .btn {
      text-shadow: none; }
  @media screen and (min-width: 768px) {
    .bootstrapped .carousel-control .glyphicon-chevron-left,
    .bootstrapped .carousel-control .glyphicon-chevron-right,
    .bootstrapped .carousel-control .icon-prev,
    .bootstrapped .carousel-control .icon-next {
      width: 30px;
      height: 30px;
      margin-top: -10px;
      font-size: 30px; }
    .bootstrapped .carousel-control .glyphicon-chevron-left,
    .bootstrapped .carousel-control .icon-prev {
      margin-left: -10px; }
    .bootstrapped .carousel-control .glyphicon-chevron-right,
    .bootstrapped .carousel-control .icon-next {
      margin-right: -10px; }
    .bootstrapped .carousel-caption {
      left: 20%;
      right: 20%;
      padding-bottom: 30px; }
    .bootstrapped .carousel-indicators {
      bottom: 20px; } }
  .bootstrapped .clearfix:before, .bootstrapped .clearfix:after {
    content: "\20";
    display: table; }
  .bootstrapped .clearfix:after {
    clear: both; }
  .bootstrapped .center-block {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .bootstrapped .pull-right {
    float: right !important; }
  .bootstrapped .pull-left {
    float: left !important; }
  .bootstrapped .hide {
    display: none !important; }
  .bootstrapped .show {
    display: block !important; }
  .bootstrapped .invisible {
    visibility: hidden; }
  .bootstrapped .text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0; }
  .bootstrapped .hidden {
    display: none !important; }
  .bootstrapped .affix {
    position: fixed; }

@-ms-viewport {
  width: device-width; }
  .bootstrapped .visible-xs {
    display: none !important; }
  .bootstrapped .visible-sm {
    display: none !important; }
  .bootstrapped .visible-md {
    display: none !important; }
  .bootstrapped .visible-lg {
    display: none !important; }
  .bootstrapped .visible-xs-block,
  .bootstrapped .visible-xs-inline,
  .bootstrapped .visible-xs-inline-block,
  .bootstrapped .visible-sm-block,
  .bootstrapped .visible-sm-inline,
  .bootstrapped .visible-sm-inline-block,
  .bootstrapped .visible-md-block,
  .bootstrapped .visible-md-inline,
  .bootstrapped .visible-md-inline-block,
  .bootstrapped .visible-lg-block,
  .bootstrapped .visible-lg-inline,
  .bootstrapped .visible-lg-inline-block {
    display: none !important; }
  @media (max-width: 767px) {
    .bootstrapped .visible-xs {
      display: block !important; }
    .bootstrapped table.visible-xs {
      display: table !important; }
    .bootstrapped tr.visible-xs {
      display: table-row !important; }
    .bootstrapped th.visible-xs,
    .bootstrapped td.visible-xs {
      display: table-cell !important; } }
  @media (max-width: 767px) {
    .bootstrapped .visible-xs-block {
      display: block !important; } }
  @media (max-width: 767px) {
    .bootstrapped .visible-xs-inline {
      display: inline !important; } }
  @media (max-width: 767px) {
    .bootstrapped .visible-xs-inline-block {
      display: inline-block !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bootstrapped .visible-sm {
      display: block !important; }
    .bootstrapped table.visible-sm {
      display: table !important; }
    .bootstrapped tr.visible-sm {
      display: table-row !important; }
    .bootstrapped th.visible-sm,
    .bootstrapped td.visible-sm {
      display: table-cell !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bootstrapped .visible-sm-block {
      display: block !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bootstrapped .visible-sm-inline {
      display: inline !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bootstrapped .visible-sm-inline-block {
      display: inline-block !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bootstrapped .visible-md {
      display: block !important; }
    .bootstrapped table.visible-md {
      display: table !important; }
    .bootstrapped tr.visible-md {
      display: table-row !important; }
    .bootstrapped th.visible-md,
    .bootstrapped td.visible-md {
      display: table-cell !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bootstrapped .visible-md-block {
      display: block !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bootstrapped .visible-md-inline {
      display: inline !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bootstrapped .visible-md-inline-block {
      display: inline-block !important; } }
  @media (min-width: 1200px) {
    .bootstrapped .visible-lg {
      display: block !important; }
    .bootstrapped table.visible-lg {
      display: table !important; }
    .bootstrapped tr.visible-lg {
      display: table-row !important; }
    .bootstrapped th.visible-lg,
    .bootstrapped td.visible-lg {
      display: table-cell !important; } }
  @media (min-width: 1200px) {
    .bootstrapped .visible-lg-block {
      display: block !important; } }
  @media (min-width: 1200px) {
    .bootstrapped .visible-lg-inline {
      display: inline !important; } }
  @media (min-width: 1200px) {
    .bootstrapped .visible-lg-inline-block {
      display: inline-block !important; } }
  @media (max-width: 767px) {
    .bootstrapped .hidden-xs {
      display: none !important; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .bootstrapped .hidden-sm {
      display: none !important; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .bootstrapped .hidden-md {
      display: none !important; } }
  @media (min-width: 1200px) {
    .bootstrapped .hidden-lg {
      display: none !important; } }
  .bootstrapped .visible-print {
    display: none !important; }
  @media print {
    .bootstrapped .visible-print {
      display: block !important; }
    .bootstrapped table.visible-print {
      display: table !important; }
    .bootstrapped tr.visible-print {
      display: table-row !important; }
    .bootstrapped th.visible-print,
    .bootstrapped td.visible-print {
      display: table-cell !important; } }
  .bootstrapped .visible-print-block {
    display: none !important; }
    @media print {
      .bootstrapped .visible-print-block {
        display: block !important; } }
  .bootstrapped .visible-print-inline {
    display: none !important; }
    @media print {
      .bootstrapped .visible-print-inline {
        display: inline !important; } }
  .bootstrapped .visible-print-inline-block {
    display: none !important; }
    @media print {
      .bootstrapped .visible-print-inline-block {
        display: inline-block !important; } }
  @media print {
    .bootstrapped .hidden-print {
      display: none !important; } }

/*# sourceMappingURL=maps/bootstrap_loader.css.map */
