﻿@charset "UTF-8";
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

td,
th {
  padding: 0;
}

.visually-hidden, .directory-card__organization-name, .directory-card__organization-unit, .directory-card__name-suffix-separator {
  position: absolute;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.cf:before, .cf:after,
.hsc-footer-nav:before,
.grid-row:before,
.hsc-footer-nav:after,
.grid-row:after {
  content: "";
  display: table;
}
.cf:after,
.hsc-footer-nav:after,
.grid-row:after {
  clear: both;
}

.layout-container {
  width: calc(100% - 60px);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.flex-grid,
.flex-grid-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid-column {
  float: left;
}

.hsc-header-container:before, .wvu-masthead:before, .hsc-header-container:after, .wvu-masthead:after {
  content: "";
  display: table;
}
.hsc-header-container:after, .wvu-masthead:after {
  clear: both;
}

/*.hsc-header,
.hsc-header:before,
.hsc-header:after,
.hsc-header *,
.hsc-header *:before,
.hsc-header *:after	{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}*/
.hsc-header {
  font-family: sans-serif;
  font-size: 0.75rem;
}

.hsc-header-container, .wvu-masthead {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.625rem 0 1.25rem;
}
@media screen and (min-width: 48rem) {
  .hsc-header-container, .wvu-masthead {
    padding: 2rem 0 2em 0;
  }
}

.hsc-header-wvu-logo,
.hsc-header-actions {
  width: 100%;
  float: left;
}

.hsc-header-wvu-logo {
  height: 100%;
  float: none;
}
@media screen and (min-width: 48rem) {
  .hsc-header-wvu-logo {
    float: left;
    width: auto;
  }
}
.hsc-header-wvu-logo a {
  display: block;
  text-decoration: none;
}
.hsc-header-wvu-logo img {
  width: 13.5rem;
}
@media screen and (min-width: 48rem) {
  .hsc-header-wvu-logo img {
    width: 16.875rem;
    height: 100%;
  }
}

.inner-container.main-header {
  padding: 0 1rem;
}
@media screen and (min-width: 48rem) {
  .inner-container.main-header {
    padding: 0;
  }
}

.patterned-note {
  font-size: 0.9rem;
  padding: 1rem;
  /*background: lighten(gray,35);*/
  background-image: url("../Images/WVU Poly.svg");
  background-size: 100%;
  background-position: top;
  float: none;
  margin-top: 1rem;
  margin: 1rem 0.15rem 1rem 0.15rem;
}
.patterned-note h2 {
  color: white;
  font-size: 1rem;
}
@media screen and (min-width: 48rem) {
  .patterned-note {
    width: calc(30% - 0.3rem);
    float: right;
    margin-top: 0;
  }
}
.patterned-note .button {
  background: #EAAA00;
  display: block;
  text-decoration: none;
  padding: 0.75em 0.75em;
  margin-bottom: 0.5em;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
  border: 1px solid #ffc838;
  transition: border 0.125s linear, background 0.125s linear, color 0.125s linear;
}
.patterned-note .button:hover, .patterned-note .button:focus {
  background: #9BD3DD;
  border: 1px solid #d4ecf0;
}
.patterned-note .button .type-of-link-icon {
  margin-top: 0;
}
.patterned-note .link {
  color: white;
  transition: all 0.2s ease;
}
.patterned-note .link svg {
  margin-left: 0.25rem;
}
.patterned-note .link:hover, .patterned-note .link:focus {
  color: #9BD3DD;
}
.patterned-note p {
  margin: 0;
  color: white;
  padding: 0.5rem;
  text-align: center;
}

.hsc-sub-brand-name {
  padding-left: 3.375rem;
  text-transform: uppercase;
  font-size: 1rem;
  color: #002855;
  margin-top: -0.375rem;
  font-family: "HelveticaNeueW01-55Roma", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.hsc-header-actions {
  font-size: 0.75rem;
}
@media screen and (min-width: 48rem) {
  .hsc-header-actions {
    max-width: 18.75rem;
    float: right;
    text-align: right;
  }
}

.hsc-header-nav {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 48rem) {
  .hsc-header-nav {
    margin-bottom: 0.625rem;
  }
}
.hsc-header-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}

.hsc-header-nav-item {
  display: inline;
}
.hsc-header-nav-item a {
  text-decoration: underline;
  margin-right: 0.625rem;
  line-height: 2.5rem;
  color: #002855;
  transition: color 0.25s linear;
}
@media screen and (min-width: 48rem) {
  .hsc-header-nav-item a {
    line-height: normal;
  }
}
.hsc-header-nav-item a:hover, .hsc-header-nav-item a:focus {
  color: #005EB8;
}
.hsc-header-nav-item:last-child a {
  margin-right: 0;
}

.search-trigger {
  float: right;
}

.button-search-trigger {
  padding: 0;
  width: 2.5rem;
  height: 2.5rem;
  /*@include border-radius(2px);*/
  border: 1px solid #DDD;
}
@media screen and (min-width: 48rem) {
  .button-search-trigger {
    display: none;
  }
}
.button-search-trigger .iconic-property-stroke {
  stroke: #002855;
}

.hsc-header-search {
  display: none;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .hsc-header-search {
    display: block;
    margin-bottom: 0;
  }
}
.hsc-header-search.is-visible {
  display: block;
}

.hsc-header-search-form {
  position: relative;
  background: white;
  padding: 0.625rem 0.625rem 0.625rem 2.1875rem;
  /*@include border-radius(.125rem);*/
  /*border: 1px solid $border-color;*/
}

.hsc-header-search-form input {
  width: 100%;
  margin: 0;
  font-size: 0.75rem;
  padding: 0;
  border: none;
}

.button-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.125rem;
  height: 2.125rem;
}
.button-search .iconic-property-stroke {
  stroke: #002855;
}

.wvu-masthead {
  padding-bottom: 0;
}
@media screen and (min-width: 48rem) {
  .wvu-masthead {
    padding-top: 1rem;
  }
}

.main-wvu-logo img {
  width: 11.5rem;
  height: 100%;
}
@media screen and (min-width: 48rem) {
  .main-wvu-logo img {
    width: 14rem;
  }
}

body {
  background: #fffffe;
  font-size: 100%;
}

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

.inner-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

figure.caption {
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
  display: table;
  float: left;
  margin: 1rem;
  padding: 1rem 1rem 0 1rem;
}
figure.caption figcaption {
  background: rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  font-family: "Source Sans Pro", sans-serif;
  display: table-caption;
  padding: 1rem;
  caption-side: bottom;
}

.main-header .iconic {
  line-height: 100%;
}
.main-header.stick .top-bar {
  background: #f3f3f3;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0.975;
  margin: 0 auto;
  transition: width 0.5s linear;
}
.main-header.stick .hsc-header {
  padding-bottom: 70px;
}

.top-bar {
  width: 100%;
  /*padding: .5em .2em .5em .5em;*/
  transition: width 0.5s linear;
}

.sticky-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.homepage-search {
  width: calc(100% - 70px);
  float: left;
}
.homepage-search input {
  -webkit-appearance: none;
}

.homepage-search-field {
  color: #A2AAAD;
  background: #fff;
  font-size: 1rem;
  width: calc(100% - 70px);
  height: 48px;
  float: left;
  padding: 0.8em 1em;
  border: 1px solid #d9d9d9;
  border-right: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.homepage-search-button {
  color: #A2AAAD;
  background: #fff;
  text-align: center;
  width: 50px;
  height: 48px;
  float: left;
  padding: 0.85rem 1rem;
  margin: 0;
  border: 1px solid #d9d9d9;
  border-left: none;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  transition: background 0.25s linear, color 0.25s linear;
}
.homepage-search-button:hover, .homepage-search-button:focus {
  color: #fff;
  background: #005EB8;
}

.homepage-get-help {
  width: 65px;
  float: left;
}

a.get-help-button.mobile {
  display: block;
  width: 55px;
  padding: 0.55em;
  margin: 0 auto;
}

a.get-help-button.not-mobile {
  display: none;
}

.alerts-row, .alerts-row-no-notification {
  background-image: url("../Images/WVU Poly.svg");
  background-size: 100%;
  background-position: top;
  padding: 0.75em 0.5em;
  margin-bottom: 0;
  margin-top: 0.75em;
}

.alerts-row-no-notification {
  height: 54px;
}
.alerts-row-no-notification .alerts-container {
  display: none;
}

.alerts-container {
  background: rgba(0, 112, 220, 0.75);
  width: 100%;
  max-width: 80rem;
  padding: 0.3em 1em;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4);
  transition: color 0.25s linear;
}
.alerts-container a {
  color: #fff;
  font-weight: bold;
  margin: 0.3em 0;
  text-decoration: none;
}
.alerts-container a:hover, .alerts-container a:focus {
  color: #EAAA00;
}
.alerts-container a .alerts-date {
  font-weight: 600;
  font-style: italic;
}
.alerts-container p {
  color: white;
  font-weight: bold;
  display: inline-block;
  margin: 0;
}

.alerts-icon {
  color: #fff;
  padding-right: 0.7em;
  transition: none;
}

.slash-image {
  width: 0.75em;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 0.4em;
}

.homepage-support-services {
  width: 100%;
  padding-top: 1.5rem;
  margin: 0 auto;
}

.homepage-support-item {
  float: left;
  width: 100%;
  padding: 1rem 1rem 1.5rem 1rem;
}
.homepage-support-item h2 {
  font-size: 2.35rem;
  color: #002855;
  font-family: "HelveticaNeueW01-45Ligh", "Helvetica Neue", Helvetica, "Helvetica LT Std", "Helvetica CY", Arial, "Lucida Grande", sans-serif;
  font-weight: 400;
  line-height: 1.5em;
  min-height: 3.75rem;
  display: block;
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
}
.homepage-support-item h2 .sub-header {
  color: #EAAA00;
  font-family: "HelveticaNeueW01-55Roma", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: -0.15vh;
  margin-top: 0;
}

.contact-information {
  display: block;
  float: none;
  position: absolute;
  bottom: 1em;
  left: 2em;
}

.secondary-item-link-containter {
  float: none;
  clear: both;
  height: 100%;
  padding: 0 1rem;
  margin: 2rem 0;
}
.secondary-item-link-containter a.link:nth-child(n+1):nth-child(-n+5) {
  background: none;
  border-right: none;
}
.secondary-item-link-containter a:nth-child(n+1):nth-child(-n+4) {
  border-right: none;
  border-bottom: 3px solid #fff;
}
.secondary-item-link-containter a:nth-child(n+1):nth-child(-n+5) {
  transition: 0.25s ease background;
}
.secondary-item-link-containter a:nth-child(n+1):nth-child(-n+5):hover, .secondary-item-link-containter a:nth-child(n+1):nth-child(-n+5):focus {
  background: #e6e6e6;
}
.secondary-item-link-containter a:nth-child(n+1):nth-child(-n+5):hover .secondary-support-item, .secondary-item-link-containter a:nth-child(n+1):nth-child(-n+5):focus .secondary-support-item {
  color: #002855;
}
.secondary-item-link-containter a:nth-child(1) {
  background: whitesmoke;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 0;
}
.secondary-item-link-containter a:nth-child(2) {
  background: #eeeeee;
}
.secondary-item-link-containter a:nth-child(3) {
  background: whitesmoke;
}
.secondary-item-link-containter a:nth-child(4) {
  background: #eeeeee;
}
.secondary-item-link-containter a:nth-child(5) {
  background: whitesmoke;
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.secondary-item-intro {
  width: 100%;
}
.secondary-item-intro p {
  font-size: 1.125em;
  text-align: center;
  padding-bottom: 1.125em;
}
.secondary-item-intro p:first-child {
  font-size: 1.25em;
  padding-bottom: 0;
}

.secondary-item {
  width: 100%;
  display: block;
  padding: 1.2rem 1.5rem;
  box-shadow: none;
  text-decoration: none;
}
.secondary-item .secondary-item-desc {
  font-size: 0.825em;
  line-height: 175%;
}

.full-width-bar {
  text-align: center;
  background: whitesmoke;
  padding: 2rem;
  margin: 2rem auto;
  font-size: 1.25rem;
}
.full-width-bar .inner-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.full-width-bar .button {
  background: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 0.75em;
  margin-bottom: 0.5em;
  border-radius: 5px;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
  border: 1px solid #d9d9d9;
  transition: background 0.25s linear, color 0.25s linear;
}
.full-width-bar .button:hover, .full-width-bar .button:focus {
  background: #005EB8;
  color: white;
}
@media screen and (min-width: 48rem) {
  .full-width-bar .button {
    padding: 1em 2em;
  }
}
@media screen and (min-width: 48rem) {
  .full-width-bar {
    padding: 2rem 0 2em 0;
  }
}
.full-width-bar .half-item {
  width: 100%;
}
.full-width-bar .half-item:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .full-width-bar .half-item {
    margin-bottom: 0;
    width: 50%;
    margin: 0;
  }
  .full-width-bar .half-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.full-width-bar .half-item__heading {
  font-size: 1.375rem;
}
@media screen and (min-width: 48rem) {
  .full-width-bar .half-item__heading {
    font-size: 1.75rem;
  }
}

.support-page-container {
  padding: 1em;
  padding-bottom: 3.25rem;
}

.right-content {
  width: 100%;
  clear: both;
  float: none;
}
.right-content .contact-descriptors {
  color: #002855;
  font-weight: bold;
  padding-right: 0.2em;
}
.right-content .support-page-contact {
  background: #f3f3f3;
  padding: 1em 2em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  border-radius: 5px;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
}
.right-content .right-buttons {
  padding-bottom: 2em;
}
.right-content .right-buttons a {
  background: #fff;
  display: block;
  text-decoration: none;
  padding: 1em 2em;
  margin-bottom: 0.5em;
  border-radius: 5px;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
  border: 1px solid #d9d9d9;
  transition: background 0.25s linear, color 0.25s linear;
}
.right-content .right-buttons a:hover, .right-content .right-buttons a:focus {
  background: #f3f3f3;
}
.right-content .right-buttons a .type-of-link-icon {
  margin-top: 0;
}

.articles-container {
  width: 100%;
  padding-right: 0;
}
.articles-container .support-page-desc {
  width: 100%;
  float: none;
}
.articles-container li {
  margin-bottom: 0.4em;
}

.help-articles {
  width: 100%;
}

.articles-filter {
  padding-bottom: 1.5rem;
  padding-right: 0;
}

select {
  color: #2C2A29;
  background: none;
  font-size: 1em;
  width: 100%;
  float: none;
  padding: 0.5em;
  margin-bottom: 0.5em;
  border-radius: 5px;
  border: 1px solid silver;
}

.clickable-filters {
  float: none;
}
.clickable-filters a.filter-buttons {
  color: black;
  background: none;
  text-decoration: none;
  font-size: 1em;
  display: inline-block;
  padding: 0.5175rem;
  border-radius: 5px;
  border: 1px solid silver;
  transition: background 0.25s linear, color 0.25s linear;
}
.clickable-filters a.filter-buttons:hover, .clickable-filters a.filter-buttons:focus {
  background: #f3f3f3;
}
.clickable-filters a.filter-buttons.active {
  color: #fff;
  background-color: #005EB8;
}

.resources-container {
  width: 70%;
  float: left;
  padding-bottom: 3rem;
}

.resources-articles {
  width: 100%;
}

.support-article-container {
  width: 100%;
  float: left;
  padding-bottom: 3rem;
  padding-right: 2em;
}
.support-article-container h2 {
  padding-top: 1.5em;
}

time {
  color: #005EB8;
  font-weight: 600;
}

.search-results-container {
  padding-bottom: 3em;
}
.search-results-container h1 {
  padding-bottom: 0.5em;
  padding-top: 1em;
}
.search-results-container h1.homepage-header, .search-results-container h1.search-header {
  font-size: 2rem;
}
.search-results-container h1.homepage-header .sub-header, .search-results-container h1.search-header .sub-header {
  font-size: 2.1rem;
}
.search-results-container ul {
  max-width: 728px;
}

ul.newsItemList {
  list-style: none;
  padding: 0;
  margin-bottom: 4rem;
}

li.newsItem {
  margin-bottom: 2rem;
}

p.news-date {
  margin-top: 0;
}

iframe {
  max-width: 100%;
}

@media screen and (min-width: 48rem) {
  .top-bar {
    width: 100%;
  }
  .homepage-search-button {
    color: #A2AAAD;
    width: 10%;
    height: auto;
    float: left;
    padding: 1.25rem 1rem;
    margin: 0;
    border: 1px solid #d9d9d9;
    border-left: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: background 0.25s linear, color 0.25s linear;
  }
  .homepage-search-field {
    display: block;
    width: 70%;
    height: auto;
    padding: 1.25em;
  }
  a.get-help-button.mobile {
    display: none;
  }
  a.get-help-button.not-mobile {
    display: block;
  }
  a.get-help-button {
    color: #A2AAAD;
    text-align: center;
    display: block;
    width: 50px;
    padding: 0.94em 1rem;
    /*margin: 0 .15rem;*/
    float: left;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    transition: color 0.3s linear;
    animation-name: helpPulse;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
  }
}
@media screen and (min-width: 36.5625em) {
  .homepage-search {
    width: 70%;
  }
  .homepage-get-help {
    width: 30%;
  }
  .get-help-button {
    width: 50%;
  }
  .alerts-row, .alerts-row-no-notification {
    margin-bottom: 1em;
    margin-top: 2em;
  }
  .secondary-item-link-containter a:nth-child(1) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .secondary-item-link-containter a:nth-child(3) {
    background: #eeeeee;
  }
  .secondary-item-link-containter a:nth-child(4) {
    background: whitesmoke;
  }
  .secondary-item-link-containter a:nth-child(5) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .secondary-item {
    width: 50%;
  }
  select {
    font-size: 0.9em;
    padding: 0.4rem;
    width: auto;
  }
  .articles-filter {
    width: auto;
  }
  .clickable-filters {
    font-size: 0.9em;
    float: right;
  }
}
@media screen and (min-width: 43.125em) {
  .homepage-support-item {
    min-height: 300px;
    width: 50%;
  }
}
@media screen and (min-width: 56.25em) {
  .inner-container {
    width: 90%;
  }
  .alerts-container {
    width: 90%;
  }
  .homepage-secondary-items {
    padding: 3rem 0 5rem 0;
  }
  .help-articles {
    width: 100%;
  }
  .right-content {
    width: 30%;
    float: right;
    clear: none;
    margin-top: 0;
  }
  .right-content p {
    margin-top: 0.2em;
    margin-bottom: 0.8em;
  }
  .right-content .support-page-contact {
    margin-top: 0;
  }
  .articles-container {
    width: 70%;
    padding-right: 3.75em;
    float: left;
  }
  .articles-container .support-page-desc {
    float: right;
    padding-top: 0;
    padding-bottom: 1.75rem;
  }
  .articles-container h2 {
    padding-top: 0.5em;
  }
}
@media screen and (min-width: 71.5625em) {
  .secondary-item-link-containter a:nth-child(1) {
    border-top-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
  .secondary-item-link-containter a:nth-child(3) {
    background: whitesmoke;
  }
  .secondary-item-link-containter a:nth-child(4) {
    background: #eeeeee;
  }
  .secondary-item-link-containter a:nth-child(5) {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 0;
  }
  .secondary-item-link-containter a:nth-child(n+1):nth-child(-n+4) {
    border-right: 3px solid #fff;
    border-bottom: none;
  }
  .secondary-item {
    width: 20%;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 78.125em) {
  .homepage-support-item {
    width: 33.333333%;
  }
}
a {
  color: #005EB8;
  transition: color 0.25s linear;
}
a:hover, a:focus {
  color: #002855;
}
a.homepage-header {
  color: #002855;
  text-decoration: none;
  font-family: "HelveticaNeueW01-45Ligh", "Helvetica Neue", Helvetica, "Helvetica LT Std", "Helvetica CY", Arial, "Lucida Grande", sans-serif;
}

a.button {
  color: #000;
  text-decoration: none;
}

.button a, a .button {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  background: #eeeeee;
  display: inline-block;
  padding: 0.5rem;
  margin-top: 0.5em;
  margin-bottom: 0;
  bottom: 0.75em;
  left: 1em;
  text-decoration: none;
  box-shadow: inset 0 -3px #d9d9d9;
  border-top: none;
  border-right: 4px solid #e6e6e6;
  border-bottom: 3px solid #d9d9d9;
  border-left: none;
  border-radius: 5px;
  transition: all 0.15s linear;
}
.button a:hover, .button a:focus, a .button:hover, a .button:focus {
  color: #000;
  background: #e1e1e1;
  box-shadow: inset 0 -3px #cdcdcd;
  border-right: 4px solid #d9d9d9;
  border-bottom: 3px solid #cdcdcd;
}

a.get-help-button {
  color: #005EB8;
  font-size: 1.25rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  display: block;
  float: right;
  padding: 0.85em 1rem;
  border-radius: 5px;
  border: 1px solid #005EB8;
  transition: color 0.3s linear, background-color 0.3s linear;
  animation-name: helpPulse;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
}
a.get-help-button:hover, a.get-help-button:focus {
  color: #fff;
  background-color: #005EB8;
  animation: none;
}

@keyframes helpPulse {
  from {
    background-color: #fff;
    box-shadow: 0 0 0 #e6e6e6;
    border: 1px solid #005EB8;
  }
  50% {
    background-color: #eeeeee;
    box-shadow: 0 0 15px #c7c7c7;
    border: 1px solid transparent;
  }
  to {
    background-color: #fff;
    box-shadow: 0 0 0 #e6e6e6;
    border: 1px solid #005EB8;
  }
}
@-webkit-keyframes helpPulse {
  from {
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 #e6e6e6;
    border: 1px solid #005EB8;
  }
  50% {
    background-color: #eeeeee;
    -webkit-box-shadow: 0 0 15px #c7c7c7;
    border: 1px solid transparent;
  }
  to {
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 #e6e6e6;
    border: 1px solid #005EB8;
  }
}
@-moz-keyframes helpPulse {
  from {
    background-color: #fff;
    box-shadow: 0 0 0 #e6e6e6;
    border: 1px solid #005EB8;
  }
  50% {
    background-color: #eeeeee;
    box-shadow: 0 0 15px #c7c7c7;
    border: 1px solid transparent;
  }
  to {
    background-color: #fff;
    box-shadow: 0 0 0 #e6e6e6;
    border: 1px solid #005EB8;
  }
}
.homepage-support-nav-items {
  color: #fff;
  background: #002855;
  padding: 0.8em 1em;
  margin-right: 1em;
  border-radius: 5px;
  transition: background 0.1s linear;
}
.homepage-support-nav-items:hover, .homepage-support-nav-items:focus {
  background: #003674;
}

.support-service-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.support-service-links ul li {
  position: relative;
}
.support-service-links .slash-image {
  padding-top: 0.3em;
}
.support-service-links h3 {
  font-size: 1rem;
  line-height: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.support-link {
  color: #000;
  text-decoration: none;
  background: none;
  position: relative;
  display: inline-block;
  padding: 0;
  padding-left: 1.25em;
  transition: color 0.25s linear, border-bottom 0.25s linear;
}
.support-link:hover, .support-link:focus {
  color: #005EB8;
}
.support-link .support-service-links {
  padding: 0 0 0.5em 0;
}
.support-link.articles {
  color: #005EB8;
  font-size: 1.3em;
  display: inline-block;
  padding: 0.5em 0 0.3em 0;
  margin-bottom: 1.25em;
  border-bottom: 1px dashed #005EB8;
  text-decoration: none;
}
.support-link.articles:hover, .support-link.articles:focus {
  color: #002855;
  border-bottom: 1px dashed #b3b3b3;
}
.support-link.articles .iconic {
  padding-right: 0.15em;
}

.external {
  font-weight: 600;
}

.secondary-support-item {
  color: #005EB8;
  font-family: "HelveticaNeueW01-55Roma", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.25em;
  font-weight: normal;
  display: inline-block;
  padding: 0.5em 0 0.25em 0;
  margin: 0;
  line-height: 100%;
  transition: color 0.25s linear;
}

.breadcrumbs {
  width: 100%;
  padding: 0 1em;
  padding-top: 1em;
}
.breadcrumbs:hover, .breadcrumbs:focus {
  color: #EAAA00;
}
.breadcrumbs a {
  display: inline-block;
}
.breadcrumbs a.home .iconic {
  font-size: 0.9em;
}
.breadcrumbs a.home .iconic[data-glyph]:before {
  font-size: 0.9em;
}
.breadcrumbs p {
  color: #2C2A29;
  display: inline-block;
  margin: 0;
}
.breadcrumbs p.current-page {
  border-bottom: 1px dashed #A2AAAD;
}
.breadcrumbs .slash-image {
  position: relative;
  margin: 0 0.35rem;
}

/* .macro-child-page-listing styles - Added by Dan on 11/2/2018 */
.macro-child-page-listing,
ul.help-articles {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* .macro-child-page-listing styles - Added by Dan on 11/2/2018 */
.macro-child-page-listing li,
li.help-article-link {
  line-height: 1.5em;
  position: relative;
  padding-left: 0;
  padding-bottom: 0.2em;
  margin-bottom: 0.5em;
}
.macro-child-page-listing li a,
li.help-article-link a {
  color: #005EB8;
  text-decoration: none;
  background: none;
  font-size: 1em;
  display: block;
  padding-left: 1.25em;
  border-bottom: 1px dashed #005EB8;
  padding-bottom: 0.25rem;
  transition: color 0.25s linear, border-bottom 0.25s linear;
}
.macro-child-page-listing li a:hover, .macro-child-page-listing li a:focus,
li.help-article-link a:hover,
li.help-article-link a:focus {
  color: #002855;
  border-color: #002855;
}

.type-of-link-icon {
  position: absolute;
  margin-top: 0.15rem;
  margin-left: 0.3rem;
}

ul.resource-articles {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 1.5rem;
}

li.resource-link {
  line-height: 1.5em;
  padding-left: 0;
  padding-bottom: 0.2em;
  position: relative;
  transition: color 0.25s linear, border-bottom 0.25s linear;
}
li.resource-link a {
  color: #005EB8;
  font-size: 1em;
  display: block;
  padding-left: 1.25em;
}
li.resource-link a:hover, li.resource-link a:focus {
  color: #EAAA00;
}

a.go-back-navigation {
  background: #e6e6e6;
  display: inline-block;
  text-decoration: none;
  padding: 1em;
  clear: both;
  float: left;
  margin-bottom: 3rem;
  margin-top: 1.5em;
  border-radius: 5px;
  box-shadow: none;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
  transition: color 0.25s linear, background 0.25s linear;
}
a.go-back-navigation:hover, a.go-back-navigation:focus {
  color: #fff;
  background: #005EB8;
}
a.go-back-navigation .iconic[data-glyph]:empty:before {
  font-size: 0.75em;
}

.go-back-icon {
  position: relative;
  padding-right: 0.5rem;
  margin-top: 0.5rem;
}

* {
  font-family: "Source Sans Pro", sans-serif;
}

h1, h2, h3, h4, h5, span {
  line-height: 1.5em;
}

h1 {
  font-family: "HelveticaNeueW01-55Roma", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  font-size: 2.5rem;
  transition: color 0.1s linear;
}
h1.search-header {
  font-size: 2.5rem;
}

.support-header {
  color: #002855;
  font-family: "HelveticaNeueW01-45Ligh", "Helvetica Neue", Helvetica, "Helvetica LT Std", "Helvetica CY", Arial, "Lucida Grande", sans-serif;
  font-size: 2.35rem;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: -2px;
  float: none;
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (min-width: 36.5625em) {
  .support-header {
    font-size: 3.2rem;
  }
  .support-header .support-sub-header {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 56.25em) {
  .support-header {
    padding-bottom: 0.25em;
  }
}
.support-header[data-title=Computer] .support-sub-header:after, .support-header[data-title=SOLE] .support-sub-header:after, .support-header[data-title=Sole] .support-sub-header:after, .support-header[data-title=Website] .support-sub-header:after, .support-header[data-title=Telephone] .support-sub-header:after, .support-header[data-title=Email] .support-sub-header:after, .support-header[data-title=Application] .support-sub-header:after {
  content: "support";
}
.support-header .support-sub-header {
  color: #EAAA00;
  font-family: "HelveticaNeueW01-55Roma", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: -0.15vh;
  margin-top: 0;
}

.support-header--backpage {
  font-size: 2.25rem;
}
.support-header--backpage .support-sub-header {
  font-size: 2.25rem;
}

h2 {
  color: #002855;
  font-family: "HelveticaNeueW01-55Roma", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2em;
  font-weight: 600;
  padding-bottom: 0.5em;
  margin: 0;
}

h3 {
  color: #005EB8;
  font-weight: 600;
  font-size: 1.625em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  margin-bottom: 0;
  margin-top: 0;
  /*&.directory-username {
      font-size: 1.375em;
      font-weight: normal;
  }*/
}

h4 {
  font-size: 1.4em;
  font-weight: 600;
  color: #2C2A29;
}

p {
  color: #000;
}

.bold {
  font-weight: 700;
}

.support-item-contact {
  font-size: 0.875em;
  letter-spacing: 1.5px;
  position: relative;
  padding-top: 0.5em;
  padding-bottom: 1em;
}
.support-item-contact a {
  text-decoration: none;
}
.support-item-contact p {
  display: inline-block;
  margin: 0;
}
.support-item-contact .slash-image {
  height: 1rem;
  position: relative;
  margin: 0.2em 0.35em 0 0.35em;
}

.articles-container .button-user a {
  color: white;
  background: #005EB8;
  display: inline-block;
  padding: 0.6em 1em;
  margin-bottom: 0.8em;
  margin-top: 0.5rem;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
  transition: background 0.15s linear;
}
.articles-container .button-user a:hover, .articles-container .button-user a:focus {
  background: #002855;
}
.articles-container a .button-user {
  color: white;
  background: #005EB8;
  display: inline-block;
  padding: 0.6em 1em;
  margin-bottom: 0.8em;
  margin-top: 0.5rem;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
  transition: background 0.15s linear;
}
.articles-container a .button-user:hover, .articles-container a .button-user:focus {
  background: #002855;
}

.left-navigation-content > a,
.left-navigation-content > .button-user,
.left-navigation-content > p > a,
.left-navigation-content > p > .button-user,
.right-content > a,
.right-content > .button-user,
.right-content > p > a,
.right-content > p > .button-user {
  margin-bottom: 0.5rem;
}

.left-navigation-content > a:last-child,
.left-navigation-content > .button-user:last-child,
.left-navigation-content p > a:last-child,
.left-navigation-content p > .button-user:last-child,
.right-content > a:last-child,
.right-content > .button-user:last-child,
.right-content p > a:last-child,
.right-content p > .button-user:last-child {
  margin-bottom: 1rem;
}

.left-navigation-content > a,
.left-navigation-content > a > .button-user,
.left-navigation-content > .button-user,
.left-navigation-content > .button-user > a,
.left-navigation-content p > a,
.left-navigation-content p > a > .button-user,
.left-navigation-content p > .button-user,
.left-navigation-content p > .button-user > a,
.right-content > a > .button-user,
.right-content > .button-user,
.right-content > .button-user > a,
.right-content p > a > .button-user,
.right-content p > .button-user,
.right-content p > .button-user > a {
  display: block;
}

.left-navigation-content > a,
.left-navigation-content > p > a,
.left-navigation-content > .button-user > a,
.left-navigation-content > p > .button-user > a,
.right-content > a,
.right-content > .button-user > a,
.right-content > p > a,
.right-content > p > .button-user > a {
  text-decoration: none;
}

.left-navigation-content > a > .button-user,
.left-navigation-content > p > a > .button-user,
.right-content > a > .button-user,
.right-content > p > a > .button-user {
  margin-bottom: 0;
}

/*	<div class="directory-list">
		<h2 class="directory-list__title">Title</h2>

		<fieldset class="directory-list__order-buttons" hidden>
			<legend class="directory-list__order-legend visually-hidden">Sort</legend>
			<button data-sort-method="explicit-id-order" class="button directory-list__order-button directory-list__order-button--original js-sort-original">Default Order</button>@*
			*@<button data-sort-method="position" class="button directory-list__order-button directory-list__order-button--position js-sort-position is-active" aria-pressed="true" disabled>Order by Position</button>@*
			*@<button data-sort-method="alpha" class="button directory-list__order-button directory-list__order-button--alpha js-sort-alphabetically" aria-pressed="false">Order Alphabetically</button>
		</fieldset>

		<div class="directory-list__users">

			<div class="directory-list__user directory-card h-card vcard" data-position="0" data-alpha="" data-explicit-id-order="-1">
				<div class="directory-card__photo-container">
					<img src="" alt="Photo of Erin Bunner" class="directory-card__photo u-photo photo">
				</div>

				<div class="directory-card__info-container">
					<h3 class="directory-card__name p-name fn">Erin Bunner<span class="directory-card__name-suffix-separator">, </span><span class="directory-card__honorary-suffix p-honorary-suffix honorary-suffix"></span></h3>

					<div class="visually-hidden p-organization organization p-organization-name organization-name">West Virginia University</div>

					<dl class="directory-card__details">
						<dt class="directory-card__label directory-card__label--position">Position</dt>
						<dd class="directory-card__value directory-card__value--position p-role role">Director of Application and Web Support, Information Technology Services</dd>
						<dd class="directory-card__value directory-card__value--position p-role role">Director of Application and Web Support, Application / Web Services</dd>

						<dt class="directory-card__label directory-card__label--phone">Phone</dt>
						<dd class="directory-card__value directory-card__value--phone p-tel tel">304-293-2491</dd>
					</dl>
				</div>

				<ul class="directory-card__actions">
					<li><a class="directory-card__action directory-card__action--profile u-url url" href="http://directory.hsc.wvu.edu/Individual/Index/28598" target="_blank">View <span class="visually-hidden">Erin Bunner's</span> Profile</a></li>
					<li><a class="directory-card__action directory-card__action--email u-email email" href="mailto:ebunner@hsc.wvu.edu">Send <span class="visually-hidden">Erin Bunner</span> an Email</a></li>
				</ul>
			</div>

		</div>
	</div>
*/
.directory-list__order-buttons {
  margin: 0;
  border: none;
  padding: 0.75rem 0;
}
.directory-list__order-button {
  width: 100%;
  background: #e6e6e6;
  border: none;
  display: inline-block;
  padding: 0.75em;
  box-shadow: none;
  transition: all 0.125s linear;
  border-bottom: 2px solid #cdcdcd;
}
.directory-list__order-button:hover, .directory-list__order-button:focus {
  color: #fff;
  background: #005EB8;
  border-color: #005EB8;
}
.directory-list__order-button:first-of-type {
  border-radius: 0.25rem 0.25rem 0 0;
  border-left: none;
}
.directory-list__order-button:last-of-type {
  border-radius: 0 0 0.25rem 0.25rem;
  border-bottom: none;
}
@media screen and (min-width: 40em) {
  .directory-list__order-button {
    display: inline-block;
    width: auto;
    border-left: 2px solid #cdcdcd;
    border-bottom: none;
  }
  .directory-list__order-button:first-of-type {
    border-radius: 0.25rem 0 0 0.25rem;
  }
  .directory-list__order-button:last-of-type {
    border-radius: 0 0.25rem 0.25rem 0;
  }
}
.directory-list__order-button.is-active, .directory-list__order-button.is-active:link, .directory-list__order-button.is-active:visited, .directory-list__order-button.is-active:hover, .directory-list__order-button.is-active:focus {
  color: white;
  background: #005EB8;
  border-color: #005EB8;
}
.directory-list__order-button > a {
  text-decoration: none;
  color: #002855;
}
.directory-list > a {
  text-decoration: none;
  color: #002855;
}
.directory-list__users {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.directory-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column wrap;
  -moz-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  width: 100%;
  margin: 1.5rem 0.5rem;
  border: 1px solid #dce1e6;
  border-radius: 0.25rem;
  padding: 1.5rem;
  box-shadow: 0 3px 4px #cdcdcd;
}
@media screen and (min-width: 62.5em) {
  .directory-card {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    width: calc(50% - 1rem);
  }
}
.directory-card__photo-container {
  position: relative;
  background: white;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../Images/WVU Poly.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin: -1.5rem -1.5rem 0 -1.5rem;
}
.directory-card__photo {
  max-width: 5rem;
  transform: translate(1.5rem, 1.5rem);
}
.directory-card__info-container {
  padding-top: 1.5rem;
}
.directory-card__name {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: #002855;
  font-weight: 600;
  font-size: 1.625em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.directory-card__honorary-suffix {
  display: block;
  color: #2C2A29;
  font-size: 0.8rem;
  font-weight: bold;
}
.directory-card__details {
  line-height: 1.3;
}
.directory-card__label {
  margin-top: 1rem;
  font-weight: 600;
}
.directory-card__label::after {
  content: ":";
}
.directory-card__value {
  margin: 0;
  padding: 0;
  /* Style phone number differently when certain UAs convert them to links. */
}
.directory-card__value + .directory-card__value {
  margin-top: 0.5rem;
}
.directory-card__value--phone a[href^="tel:"]::before {
  content: "Call ";
}
.directory-card__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: auto -1.5rem -1.5rem !important;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #edf0f3;
  padding: 1rem 1.5rem 0;
  list-style-type: none;
}
.directory-card__actions li {
  display: inline;
}
.directory-card__action {
  display: inline-block;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  color: #005EB8;
  font-weight: bold;
}

.footer-container {
  background-image: url("../Images/WVU Poly.svg");
  background-size: 100%;
  background-position: center;
  clear: both;
  opacity: background 0.7;
}

.hsc-footer {
  border-top: 1px solid rgba(0, 40, 85, 0.1);
  font-size: 0.75rem;
  text-align: center;
  font-family: Arial, sans-serif;
  clear: both;
  padding: 1.875rem 0;
}
@media screen and (min-width: 48em) {
  .hsc-footer {
    text-align: left;
  }
}

.hsc-footer-nav li {
  display: inline-block;
  margin-right: 1.25rem;
  line-height: 2.125rem;
}
.hsc-footer-nav li:last-child {
  margin-right: 0;
}
.hsc-footer-nav a {
  color: #fff;
  transition: color 0.15s linear;
}
.hsc-footer-nav a:hover, .hsc-footer-nav a:focus {
  color: #A2AAAD;
  transition: color 0.15s linear;
}
.hsc-footer-nav .iconic-social {
  stroke: #fff;
  fill: #fff;
  vertical-align: middle;
}

.wvu-links,
.wvu-social-links {
  width: 100%;
  margin-bottom: 1.875rem;
  padding-left: 0.75rem;
}

@media screen and (min-width: 48em) {
  .wvu-links {
    float: left;
    width: 75%;
    padding-right: 1.875rem;
    padding-left: 0;
  }
}

@media screen and (min-width: 48em) {
  .wvu-social-links {
    float: right;
    width: 25%;
    padding-left: 1.875rem;
    text-align: right;
  }
}

.footer-copyright {
  color: #fff;
}
.footer-copyright a {
  color: #EAAA00;
  transition: color 0.15s linear;
}
.footer-copyright a:hover, .footer-copyright a:focus {
  color: #A2AAAD;
  transition: color 0.15s linear;
}

/*	LAZY VIDEO
	==========
	These styles will be used to style the intial output of the Embedded Video
		macro. After the user interacts with the poster image link, it will
		be replaced with the appropriate `<iframe>`.

	The rules included in this partial are the suggested way to style this
		component’s markup. Using these styles is optional.

	The `.lazy-video__description` is optional and determined by a true/false
		property on the macro.

	```
	<figure class="caption lazy-video lazy-video--{1}">
		<div class="lazy-video__wrapper">
			<a href="{link to video on host}" class="lazy-video__link" target="_blank" data-provider="{1}" data-embed="{video ID from host}">
				<img data-src="https://cdn.hsc.wvu.edu/Resources/iconic.1.9.0/svg/media-play-circle.svg" class="iconic iconic-lg lazy-video__play" alt="">

				<img src="{poster image URL}" alt="Play Video" class="lazy-video__poster">
			</a>
		</div>

		<figcaption class="lazy-video__details">
			<div class="lazy-video__duration">
				<span class="visually-hidden">Duration: </span><time datetime="{ISO-8601 formatted duration string}">{video duration || "Live"}</time>
			</div>

			<div class="lazy-video__title">
				<cite>{video title}</cite>
			</div>

			<div class="lazy-video__description">
				{video description}
			</div>
		</figcaption>
	</figure>
	```
	NOTES:
	{1}: The provider hosting the video. This will be either `youtube` or
		`vimeo`. This is set as both a modifier class and a `data-embed` attribute.
*/
figure.lazy-video {
  display: block;
  width: 100%;
  margin: 0;
  margin-bottom: 1.5rem;
}

.lazy-video__wrapper {
  position: relative;
  max-width: 100%;
  background-color: #2C2A29;
  box-shadow: 2px -3px 11px rgba(0, 0, 0, 0.125);
  overflow: hidden;
}
@media print {
  .lazy-video__wrapper {
    display: none;
  }
}
.lazy-video__link {
  position: relative;
  display: block;
  height: 0;
  margin: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.lazy-video__link:focus {
  display: block;
  outline-offset: -0.5rem;
  outline-color: #EAAA00;
}
.lazy-video__poster {
  width: 100%;
  max-width: 100%;
  opacity: 0.6;
  transition: all 0.25s ease-out;
  will-change: opacity;
}
.lazy-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%) scale(0.95);
  will-change: transform, opacity;
  fill: white;
  stroke: white;
  opacity: 0.7;
  transition: all 0.25s ease-out;
}
.lazy-video__link:hover .lazy-video__play, .lazy-video__link:focus .lazy-video__play {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.25s ease-out;
}
.lazy-video__link:hover .lazy-video__poster, .lazy-video__link:focus .lazy-video__poster {
  opacity: 0.3;
  transition: all 0.25s ease-out;
}
.lazy-video__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lazy-video figcaption.lazy-video__details {
  display: block;
  margin: auto 1rem;
  border-top: none;
  padding: 1rem;
  background-color: #f3f5f7;
  transform: none;
}
@media print {
  .lazy-video figcaption.lazy-video__details {
    background-color: none;
    border-top: 0.02in solid black;
  }
}
.lazy-video__duration {
  float: right;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  border: 1px solid #6E6259;
  border-radius: 3px;
  padding: 0.25rem 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.lazy-video__title {
  font-size: 1.75rem;
  margin-top: 0.5rem;
  display: block;
  font-family: "Georgia", serif;
  font-style: italic;
  text-transform: none;
  color: #002855;
}
@media play {
  .lazy-video__title {
    color: black;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/styles.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_normalize.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_objects.utilities.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_grid.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_tools.flexbox.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_components.hsc-header.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_variables.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_base.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_navigation.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_typography.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_userbutton.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_directory.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_components.hsc-footer.scss%22,%22file:///C:/Websites/CustomDesigns/CustomDesigns/NewITS/styles/_components.lazy-video.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAAA;EACE;EACA;EACA;;;ACHF;AAEA;AAAA;AAAA;AAAA;AAAA;AAMA;EACE;EACA;EACA;;;AAGF;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaE;;;AAGF;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;EAIE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAKA;EACE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAKA;AAAA;EAEE;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAIA;AAAA;EAEE;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAIA;AAAA;EAEE;;;AAGF;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAAA;AAKA;EACE;EACA;;;AAGF;AAAA;AAAA;AAIA;EACE;EACA;;;AAGF;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAIA;AAAA;EAEE;EACA;EACA;EACA;;;AAGF;EACE;;;AAGF;EACE;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAIA;EACE;EACA;EACA;;;AAGF;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAIA;AAAA;AAAA;AAAA;EAIE;EACA;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;AAAA;AAAA;AAAA;EAKE;EACA;EACA;;;AAGF;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAOA;AAAA;EAEE;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;AAAA;AAAA;EAIE;EACA;;;AAGF;AAAA;AAAA;AAIA;AAAA;EAEE;;;AAGF;AAAA;AAAA;AAIA;AAAA;EAEE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAKA;EACE;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAQA;AAAA;EAEE;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;EAEE;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAMA;EACE;EACA;EACA;EACA;;;AAGF;AAAA;AAAA;AAAA;AAAA;AAMA;AAAA;EAEE;;;AAGF;AAAA;AAAA;AAIA;EACE;EACA;EACA;;;AAGF;AAAA;AAAA;AAAA;AAKA;EACE;EACA;;;AAGF;AAAA;AAAA;AAIA;EACE;;;AAGF;AAAA;AAAA;AAAA;AAKA;EACE;;;AAGF;AAAA;AAGA;AAAA;AAAA;AAIA;EACE;EACA;;;AAGF;AAAA;EAEE;;;ACtaF;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;ACTA;AAAA;AAAA;AAAA;AAAA;EAEI;EACA;;AAGJ;AAAA;AAAA;EACI;;;AAIR;EAEI;EACA;EACA;EACA;;;AAGJ;AAAA;ECwCC;EACA;EACA;EACA;EACA;EAmEA,mBD5GsB;EC6GtB,gBD7GsB;ECiHrB,eDjHqB;ECmHtB,WDnHsB;;;AAWvB;EACI;;;AE9BA;EAEI;EACA;;AAGJ;EACI;;;AAIR;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAaA;EACI;EACA;;;AAGJ;EAEI;EACA,WAtCe;EAuCf;EACA;;AAGA;EARJ;IASQ;;;;AAIR;AAAA;EAEI;EACA;;;AAGJ;EACI;EACA;;AAEA;EAJJ;IAKQ;IACA;;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAEA;EAHJ;IAIQ;IACA;;;;AAKZ;EACI;;AAEA;EAHJ;IAIQ;;;;AAIR;EACI;EACA;AACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EAhBJ;IAiBQ;IACA;IACA;;;AAGJ;EACI,YChGG;EDiGH;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;EACI,YC7FA;ED8FA;;AAGJ;EACI;;AAIR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI,OC/GA;;ADmHR;EACI;EACA;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA,OAzJO;EA0JP;EACA,aA1JmB;;;AA6JvB;EACI;;AAEA;EAHJ;IAIQ;IACA;IACA;;;;AAIR;EACI;;AAEA;EAHJ;IAIQ;;;AAGJ;EACI;EACA;EACA;EACA;;;AAIR;EACI;;AAEA;EACI;EACA;EACA;EACA,OA9LG;EA+LH;;AAEA;EAPJ;IAQQ;;;AAGJ;EACI,OCnMK;;ADwMb;EACI;;;AAIR;EACI;;;AAGJ;EACI;EACA;EACA;AACA;EACA;;AAEA;EAPJ;IAQQ;;;AAGJ;EACI,QAhOG;;;AAoOX;EACI;EACA;;AAEA;EAJJ;IAKQ;IACA;;;AAGJ;EACI;;;AAIR;EACI;EACA;EACA;AACA;AACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI,QA1QG;;;AAiRX;EACI;;AAEA;EAHJ;IAIQ;;;;AAKJ;EACI;EACA;;AAEC;EAJL;IAKS;;;;AElSb;EACI;EACA;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;;AAMJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA,aD4CU;EC3CV;EACA;EACA;;;AAQJ;EACI;;AAIA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;;;AAQZ;EACI;AACA;EACI;;;AAGR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;;AAEA;EACI;;;AAIR;EACI,ODhFG;ECiFH,YDlFI;ECmFJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI,OD9FG;EC+FH,YDhGI;ECiGJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;EACI,OD9GA;EC+GA,YDjHS;;;ACsHjB;EACI;EACA;;;AAGA;EACI;EACA;EACA;EACA;;;AAGJ;EACI;;;AAWR;EACI;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EAEI;;AAEA;EACI;;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,ODzKA;EC0KA;EACA;EACA;;AAEA;EACI,ODnLI;;ACsLR;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;;;AAIP;EACG,ODjMI;ECkMJ;EACI;;;AAaP;EACG;EACA;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA,ODxOU;ECyOV,aD9Ke;EC+Kf;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,ODpPI;ECqPJ,aFrPW;EEsPX;EACA;EACA;EACA;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;;AASJ;EACI;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;AAIJ;EACI;EACA;;AAGH;EACI;;AAEA;EACI;;AAEA;EACG,ODtSE;;AC8Sd;EACI;EACA;EACA;EACA;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA;EACA;;;AAKR;EACI;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI,YDlXA;ECmXA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,YD/XK;ECgYL;;AAGJ;EAhBJ;IAiBQ;;;AAIR;EAlCJ;IAmCQ;;;AAGJ;EACI;;AAEA;EACI;;AAIJ;EARJ;IASQ;IACA;IACA;;EAEA;IACI;;;AAIR;EACI;;AAEA;EAHJ;IAIQ;;;;AAahB;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI,OD3bU;EC4bV;EACA;;AAGJ;EACK;EACA;EACA;EACA;EACA;EACA;;AAGL;EACI;;AAEC;EACG,YD1cJ;EC2cI;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;EACI;;AAGJ;EACI;;;AAShB;EACI;EACA;;AAEC;EACI;EACA;;AAGJ;EACG;;;AAIR;EACI;;;AAMJ;EACI;EACA;;;AAGJ;EACI,ODnfQ;ECofR;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;EACI;;AAGJ;EACI,OD3hBJ;EC4hBI,kBD9hBK;;;AC0iBjB;EACI;EACA;EACA;;;AAGJ;EACI;;;AAQJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;;AAKR;EACI,ODtkBa;ECukBb;;;AAQJ;EACI;;AAEA;EACI;EACA;;AAEA;EACI;;AAEA;EACI;;AAKZ;EACI;;;AAQR;EACI;EACA;EACA;;;AAGJ;EACI;;;AAGJ;EACI;;;AAOJ;EACI;;;AAGJ;EACI;IACI;;EAGJ;IACI,ODjoBD;ICkoBC;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACI;;EAGR;IACI;IACA;IACA;IACA;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI,ODhqBD;ICiqBC;IACA;IACA;IACA;AACA;IACA;IACA;IACA;IACI;IACA;IACA;IACA;;;AAOZ;EACI;IACG;;EAGH;IACI;;EAGJ;IACI;;EAGJ;IACI;IACA;;EAKD;IACI;IACA;IACA;;EAGJ;IACK;;EAGL;IACK;;EAGL;IACI;IACA;IACA;;EAIP;IACI;;EAGJ;IACI;IACA;IACA;;EAGJ;IACI;;EAGJ;IACI;IACA;;;AAKR;EACI;IACI;IACA;;;AAMR;EACI;IACI;;EAGH;IACG;;EAGJ;IACI;;EAGJ;IACI;;EAGJ;IACI;IACA;IACA;IACA;;EAEI;IACI;IACA;;EAGJ;IACI;;EAIZ;IACI;IACA;IACA;;EAEC;IACI;IACA;IACA;;EAGL;IACI;;;AAKZ;EAIQ;IACG;IACA;IACA;;EAGJ;IACK;;EAGL;IACK;;EAGJ;IACG;IACA;IACA;;EAGJ;IACC;IACA;;EAIJ;IACI;IACA;;;AAKR;EAEI;IACI;;;AC71BR;EACI,OFKa;EEJT;;AAGJ;EACI,OFDU;;AEId;EACI,OFLU;EEMV;EACA,aFoDe;;;AE7CvB;EACI,OFVI;EEWJ;;;AAGJ;EACI,OFfI;EEgBJ;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;EACI,OFnCA;EEoCA;EACA;EACA;EACA;;;AAQR;EACI,OFpDa;EEqDb;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACI;EACA;EACA;EACA;;AAGJ;EACI,OFnEA;EEoEA,kBFtES;EEuET;;;AAKR;EACE;IAAO,kBF3ED;IE2E2B;IAAoC;;EACrE;IAAM;IAAmC;IAAuC;;EAChF;IAAK,kBF7EC;IE6EyB;IAAoC;;;AAGrE;EACE;IAAO,kBFjFD;IEiF2B;IAA4C;;EAC7E;IAAM;IAAmC;IAA+C;;EACxF;IAAK,kBFnFC;IEmFyB;IAA4C;;;AAG7E;EACE;IAAO,kBFvFD;IEuF2B;IAAoC;;EACrE;IAAM;IAAmC;IAAuC;;EAChF;IAAK,kBFzFC;IEyFyB;IAAoC;;;AASrE;EACI,OFnGI;EEoGJ,YFvGc;EEwGd;EACA;EACA;EACI;;AAGJ;EACI;;;AAKJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;EACA;EACA;;;AAIR;EACI,OFvII;EEwIJ;EACA;EACA;EACA;EACA;EACA;EACI;;AAGJ;EACI,OFtJS;;AEyJb;EACI;;AAGJ;EACG,OF9JU;EE+JV;EACA;EACA;EACA;EACA;EACC;;AAED;EACI,OFxKO;EEyKP;;AAGJ;EACI;;;AAMX;EACQ;;;AAQR;EACI,OF5La;EE6Lb,aH/LmB;EGgMnB;EACA;EACA;EACA;EACA;EACA;EACI;;;AAOR;EACI;EACA;EACA;;AAEA;EACI,OFnNQ;;AEsNZ;EACI;;AAGI;EACI;;AAGR;EACG;;AAKP;EACI,OFvNI;EEwNJ;EACA;;AAEA;EACI;;AAIR;EACI;EACA;;;AASR;AACA;AAAA;EAEI;EACA;EACA;;;AAGJ;AACA;AAAA;EAEI;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACI,OFzQS;EE0QT;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;AAAA;AAAA;EACI,OFrRM;EEsRN,cFtRM;;;AE2RlB;EACI;EACA;EACA;;;AAUJ;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACI;;AAEJ;EACI,OFtTS;EEuTT;EACA;EACA;;AAEA;EACI,OF9TI;;;AE0UhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;EACI,OFrVA;EEsVA,YFxVS;;AE2Vb;EACI;;;AAIR;EACI;EACA;EACA;;;ACxWJ;EACI,aHwEc;;;AGrElB;EACI;;;AAGJ;EACI,aJNmB;EIOnB;EACA;EACG;;AAEH;EAEI;;;AAIR;EACI,OHjBc;EGkBd,aHyCmB;EGxCnB;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAXJ;IAYQ;;EAEA;IACI;;;AAIR;EAnBJ;IAoBQ;;;AAUA;EACI;;AAIR;EACI,OHrDQ;EGsDR,aJtDe;EIuDf;EACA;EACA;EACA;EACA;;;AAKR;EACI;;AAEA;EACI;;;AAKR;EACI,OHzEc;EG0Ed,aJ3EmB;EI4EnB;EACA;EACA;EACA;;;AAIJ;EACI,OHlFa;EGmFb;EACA;EACA;EACA;EACA;EACA;AAEA;AAAA;AAAA;AAAA;;;AAMJ;EACI;EACA;EACA,OHvFQ;;;AG0FZ;EACI,OHnGI;;;AGsGR;EACI;;;AAIJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGH;EACG;EACA;;AAGH;EACI;EACA;EACA;;;AClID;EACI;EACA,YJFK;EIGL;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAGJ;EACI,YJfE;;AIoBV;EACI;EACA,YJrBK;EIsBL;EACA;EACA;EACA;EACA;EACA;EACA;EACI;;AAEJ;EACI,YJjCE;;;AI4ClB;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAcI;;;AAGJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAQI;;;AAGJ;AAAA;AAAA;AAAA;EAII;;;ACvGJ;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAmDI;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI,OL5DJ;EK6DI,YL/DK;EKgEL,cLhEK;;AKmET;EACI;EACA;;AAGJ;EACI;EACA;;AAGJ;EA1BJ;IA2BQ;IACA;IACA;IACA;;EAEA;IACI;;EAGJ;IACI;;;AAQJ;EACI;EACA,YLlGC;EKmGD,cLnGC;;AKuGT;EACI;EACA,ON5GD;;AMoHP;EACI;EACA,ONtHG;;AMyHP;EP9DH;EACA;EACA;EACA;EACA;EA4FA,mBOhC0B;EPiC1B,gBOjC0B;EPkC1B,eOlC0B;EPmC1B,WOnC0B;;;AAI3B;EPpEC;EACA;EACA;EACA;EACA;EA4FA,mBO1BsB;EP2BtB,gBO3BsB;EP4BtB,eO5BsB;EP6BtB,WO7BsB;EACnB;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVJ;IPiEC,kBOtD0B;IPuD1B,mBOvD0B;IPwD1B,gBOxD0B;IPyD1B,mBOzD0B;IP0D1B,WO1D0B;IACnB;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;EACA,OLjKU;EKkKV;EACA;EACA;EACA;;AAOJ;EACI;EACA,OLjKI;EKkKJ;EACA;;AAWJ;EACI;;AAGJ;EACI;EACA;;AAEA;EACI;;AAIR;EACI;EACA;AAKA;;AAHA;EACI;;AAOI;EACI;;AAMhB;EPlKH;EACA;EACA;EACA;EACA;EA4FA,mBOoE0B;EPnE1B,gBOmE0B;EPlE1B,eOkE0B;EPjE1B,WOiE0B;EACnB;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA,OLvNI;EKwNJ;;;AC3OR;EACI;EACA;EACA;EACA;EACA;;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EARJ;IASQ;;;;AAOJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACI;;AAGJ;EACI,ONzCL;EM0CS;;AAIZ;EACI;EACA;EACA;;;AAIR;AAAA;EAEI;EACA;EACA;;;AAIA;EADJ;IAEQ;IACA;IACA;IACA;;;;AAKJ;EADJ;IAEQ;IACA;IACA;IACA;;;;AAIR;EACI;;AAEA;EACI,ONvFQ;EMwFJ;;AAGJ;EACI,ONvFL;EMwFS;;;ACjGf;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AA0CD;EACC;EACA;EACA;EACA;;;AAMA;EACC;EAEA;EAEA,kBPvCU;EOwCV;EAEA;;AAEM;EAVP;IAWW;;;AAIX;EACC;EAEA;EACA;EACA;EACA;EAEA;;AAEA;EACC;EACA;EACA,ePlEQ;;AOsEV;EACC;EACA;EAEA;EAEA;EACA;;AAGD;EACC;EACA;EACA;EACA;EAEA;EACA;EAEA;EACA;EACA;EAEA;;AAGD;EAEC;EAEA;EACA;;AAGD;EAEC;EAEA;;AAGD;EACC;EACA;EACA;EAEA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EAEA,kBP3Fa;EO6Fb;;AAEM;EAVP;IAWW;IACA;;;AAIX;EACC;EAEA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;EACA;;AAGD;EACC;EACM;EACA;EACA;EACA;EACA;EACA,OR1KG;;AQ4KH;EATP;IAUW%22%7D */