﻿@charset "UTF-8";
/* Neat 1.7.0
 * http://neat.bourbon.io
 * Copyright 2012-2014 thoughtbot, inc.
 * MIT License */
html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

/*
    Variable: fontsize-root
    'px' font size on root (html) element (with units removed).  Browser default is 16px.  Used to determine sizes for rem function.

    -@ based on http://css-tricks.com/snippets/css/less-mixin-for-rem-font-sizing/
    */
/*
    Mixin: rem (https://github.com/tobymackenzie/html-boilerplate/blob/master/web/_/styles/src/mixins/_units.scss)
    Output a property with pixel values for non 'rem' supporting browsers followed by the 'rem' equivalent for rem support browsers.  Can't currently accept values with comma separation, like multiple backgrounds or the like.

    -@ based on http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
    */
/*
    Mixin: stripUnit
    Strip the unit from a value that has a unit

    -@ based on http://css-tricks.com/snippets/css/less-mixin-for-rem-font-sizing/
    */
body {
  -webkit-font-smoothing: antialiased;
  color: #23282a;
  font-size: 1em;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.2;
  margin: 0 0 0.75em;
  -webkit-hyphens: none;
     -moz-hyphens: none;
      -ms-hyphens: none;
          hyphens: none; }

h1 {
  font-size: 24px;
  font-size: 1.5rem; }
  @media screen and (min-width: 48em) {
    h1 {
      font-size: 30px;
      font-size: 1.875rem; } }
  @media screen and (min-width: 64em) {
    h1 {
      font-size: 38px;
      font-size: 2.375rem; } }
  @media screen and (min-width: 90em) {
    h1 {
      font-size: 44px;
      font-size: 2.75rem; } }

h2 {
  font-size: 20px;
  font-size: 1.25rem; }
  @media screen and (min-width: 48em) {
    h2 {
      font-size: 26px;
      font-size: 1.625rem; } }
  @media screen and (min-width: 64em) {
    h2 {
      font-size: 32px;
      font-size: 2rem; } }
  @media screen and (min-width: 90em) {
    h2 {
      font-size: 38px;
      font-size: 2.375rem; } }

h3 {
  font-size: 18px;
  font-size: 1.125rem; }
  @media screen and (min-width: 48em) {
    h3 {
      font-size: 22px;
      font-size: 1.375rem; } }
  @media screen and (min-width: 64em) {
    h3 {
      font-size: 24px;
      font-size: 1.5rem; } }
  @media screen and (min-width: 90em) {
    h3 {
      font-size: 28px;
      font-size: 1.75rem; } }

h4 {
  font-size: 18px;
  font-size: 1.125rem; }
  @media screen and (min-width: 48em) {
    h4 {
      font-size: 19px;
      font-size: 1.1875rem; } }
  @media screen and (min-width: 64em) {
    h4 {
      font-size: 20px;
      font-size: 1.25rem; } }
  @media screen and (min-width: 90em) {
    h4 {
      font-size: 22px;
      font-size: 1.375rem; } }

.page-title {
  font-family: 'Roboto', Arial, serif;
  font-weight: 300;
  color: #23282a;
  line-height: 1; }
  @media screen and (min-width: 48em) {
    .page-title {
      font-weight: 300; } }
  .page-title + .page-subtitle {
    margin-top: -10px;
    margin-top: -0.625rem;
    font-weight: 400; }
    @media screen and (min-width: 48em) {
      .page-title + .page-subtitle {
        margin-top: -20px;
        margin-top: -1.25rem;
        font-weight: normal;
        font-weight: 300; } }
    @media screen and (min-width: 64em) {
      .page-title + .page-subtitle {
        margin-top: -25px;
        margin-top: -1.5625rem; } }

.page-subtitle {
  font-weight: 500;
  color: #8b2333;
  line-height: 1.1;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1.25rem; }
  @media screen and (min-width: 48em) {
    .page-subtitle {
      font-size: 22px;
      font-size: 1.375rem; } }
  @media screen and (min-width: 64em) {
    .page-subtitle {
      font-size: 24px;
      font-size: 1.5rem; } }
  @media screen and (min-width: 90em) {
    .page-subtitle {
      font-size: 26px;
      font-size: 1.625rem; } }

.section-title {
  position: relative;
  color: white;
  text-transform: uppercase;
  padding: 0 0 0 40px;
  padding: 0 0 0 2.5rem; }
  @media screen and (min-width: 30em) {
    .section-title {
      font-size: 36px;
      font-size: 2.25rem; } }
  @media screen and (min-width: 90em) {
    .section-title {
      padding: 0 0 0 80px;
      padding: 0 0 0 5rem;
      font-size: 46px;
      font-size: 2.875rem; } }
  @media screen and (min-width: 100em) {
    .section-title {
      margin-bottom: 60px;
      margin-bottom: 3.75rem; } }
  .section-title.dark {
    color: #23282a; }
  .section-title:before {
    position: absolute;
    top: -10px;
    top: -0.625rem;
    left: 40px;
    left: 2.5rem;
    height: 1px;
    height: 0.0625rem;
    width: 45px;
    width: 2.8125rem;
    content: "";
    border-bottom: 2px solid #8b2333;
    display: block; }
    @media screen and (min-width: 30em) {
      .section-title:before {
        width: 68px;
        width: 4.25rem; } }
    @media screen and (min-width: 90em) {
      .section-title:before {
        top: -20px;
        top: -1.25rem;
        left: 80px;
        left: 5rem;
        width: 82px;
        width: 5.125rem; } }

p {
  margin: 0 0 0.75em;
  -webkit-hyphens: none;
     -moz-hyphens: none;
      -ms-hyphens: none;
          hyphens: none; }

div {
  -webkit-hyphens: none;
     -moz-hyphens: none;
      -ms-hyphens: none;
          hyphens: none; }

a {
  color: #8b2333;
  text-decoration: none;
  -webkit-transition: color 0.1s linear;
          transition: color 0.1s linear;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: Keep-all;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto; }
  a:active,
  a:focus,
  a:hover {
    color: #4e141d; }
  a:active,
  a:focus {
    outline: none; }

hr {
  border-bottom: 1px solid #bdbfc0;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.5em 0; }

img, picture {
  margin: 0;
  max-width: 100%; }

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  ul.default-ul, ol.default-ul {
    list-style-type: disc;
    margin-bottom: 0.75em;
    padding-left: 40px;
    padding-left: 2.5rem; }
  ul.default-ol, ol.default-ol {
    list-style-type: decimal;
    margin-bottom: 0.75em;
    padding-left: 40px;
    padding-left: 2.5rem; }
  ul.small-pad, ol.small-pad {
    padding-left: 20px;
    padding-left: 1.25rem; }
  ul.design_list_horizontal li, ol.design_list_horizontal li {
    display: inline-block;
    margin-right: 10px;
    margin-right: 0.625rem; }
    ul.design_list_horizontal li input[type="radio"], ol.design_list_horizontal li input[type="radio"] {
      margin-right: 5px;
      margin-right: 0.3125rem; }

.primary-content ul {
  list-style-type: disc;
  margin-bottom: 0.75em;
  padding-left: 40px;
  padding-left: 2.5rem; }

.primary-content ol {
  list-style-type: decimal;
  margin-bottom: 0.75em;
  padding-left: 40px;
  padding-left: 2.5rem; }

.primary-content [data-ux-pagebuilder="Column"] > ul {
  list-style: none; }

.card ul {
  padding-left: 0;
  list-style: none; }
  .card ul li {
    position: relative;
    padding-left: 10px;
    padding-left: 0.625rem; }
    .card ul li:before {
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      content: "•";
      color: #8b2333; }

dl {
  margin-bottom: 0.75em; }
  dl dt {
    font-weight: bold;
    margin-top: 0.75em; }
  dl dd {
    margin: 0; }

h1, h2, h3, h4, h5, h6, nav.primary > ul > li a, .hero-titles .line-1, .application-steps li, .feature-cta .content .subtitle {
  font-family: 'Playfair Display', Arial, serif;
  font-weight: 400; }

nav.primary .mega-dropdown .wrapper ul li:first-child a, nav.primary .dropdown .wrapper ul li:first-child a, .alumni-feature .grad-year {
  font-family: 'Playfair Display', Arial, serif;
  font-weight: 600; }

.upcoming-events article .read-more, .featured-articles .read-more, .read-more, .callout-cards .read-more {
  font-family: 'Playfair Display', Arial, serif;
  font-weight: 400;
  font-style: italic; }

.section-title, .footer-container .street, .footer-container .phone, .footer-container .copyright, nav.footer a, nav.utility a, .featured-announcements li, .alumni-feature .description, .application-steps .desc, .feature-cta .content .title {
  font-family: 'Roboto', Arial, serif;
  font-weight: 300; }

body, .content-container .card h4, nav.primary .mega-dropdown .wrapper ul li a, nav.primary .dropdown .wrapper ul li a, .hero-titles .line-2, .callout-cards .title, .feature-cta .content .desc {
  font-family: 'Roboto', Arial, serif;
  font-weight: 400; }

.footer-container .phone, .featured-announcements .announcement-title {
  font-family: 'Roboto', Arial, serif;
  font-weight: 700; }

.hero .heading {
  font-family: 'Roboto', Arial, serif;
  font-weight: 900; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device 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,
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,
figure {
  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/10/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 of focused elements when they are also in an
 * active/hover state.
 */
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.
 */
/**
 * 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: 0; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  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.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * 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; }

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  -webkit-perspective: 1200px;
          perspective: 1200px; }

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut 0.7s both ease;
  animation: fadeOut 0.7s both ease; }

.owl-fade-in {
  -webkit-animation: fadeIn 0.7s both ease;
  animation: fadeIn 0.7s both ease; }

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease; }

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease; }

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade 0.7s ease both;
  animation: scaleToFade 0.7s ease both; }

.owl-goDown-in {
  -webkit-animation: goDown 0.6s ease both;
  animation: goDown 0.6s ease both; }

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom 0.5s ease both;
  animation: scaleUpFrom 0.5s ease both; }

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo 0.5s ease both;
  animation: scaleUpTo 0.5s ease both; }

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1; } }

@keyframes empty {
  0% {
    opacity: 1; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%); }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%); } }

@keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
            transform: translateZ(-500px); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
            transform: translateZ(-500px) translateX(-200%); }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
            transform: translateZ(-500px) translateX(-200%); } }

@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0); } }

@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
            transform: translateZ(-500px) translateX(200%); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
            transform: translateZ(-500px); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0); } }

@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8); } }

@keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8); } }

@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%); } }

@keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); } }

@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5); } }

@keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5); } }

@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5); } }

@keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5); } }

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent; }

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

/* Custom Styling */
.owl-pagination {
  display: table;
  margin: 10px auto; }

.owl-page {
  float: left;
  margin: 0 3px;
  margin: 0 0.1875rem; }
  .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #858688;
    border-radius: 50%; }
  .owl-page.active span, .owl-page:hover span {
    background-color: #8b2333; }

.selectric-wrapper {
  position: relative;
  cursor: pointer; }

.selectric-responsive {
  width: 100%; }

.selectric {
  border: 1px solid #DDD;
  background: #F8F8F8;
  position: relative; }
  .selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 38px 0 10px;
    font-size: 12px;
    line-height: 38px;
    color: #444;
    height: 38px; }
  .selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial; }
    .selectric .button:after {
      content: " ";
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      width: 0;
      height: 0;
      border: 4px solid transparent;
      border-top-color: #BBB;
      border-bottom: none; }

.selectric-hover .selectric {
  border-color: #c4c4c4; }
  .selectric-hover .selectric .button {
    color: #a2a2a2; }
    .selectric-hover .selectric .button:after {
      border-top-color: #a2a2a2; }

.selectric-open {
  z-index: 9999; }
  .selectric-open .selectric {
    border-color: #c4c4c4; }
  .selectric-open .selectric-items {
    display: block; }

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0; }
  .selectric-hide-select select {
    position: absolute;
    left: -100%;
    display: none; }

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important; }

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important; }

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #c4c4c4;
  z-index: -1;
  box-shadow: 0 0 10px -6px; }
  .selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto; }
  .selectric-above .selectric-items {
    top: auto;
    bottom: 100%; }
  .selectric-items ul, .selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px; }
  .selectric-items li {
    display: block;
    padding: 8px;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #EEE;
    color: #666;
    cursor: pointer; }
    .selectric-items li.selected {
      background: #EFEFEF;
      color: #444; }
    .selectric-items li:hover {
      background: #F0F0F0;
      color: #444; }
  .selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: none;
    color: #444; }
  .selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1; }
  .selectric-items .selectric-group li {
    padding-left: 25px; }

@font-face {
  font-family: 'footable';
  src: url("../fonts/footable.eot");
  src: url("../fonts/footable.eot?#iefix") format("embedded-opentype"), url("../fonts/footable.woff") format("woff"), url("../fonts/footable.ttf") format("truetype"), url("../fonts/footable.svg#footable") format("svg");
  font-weight: normal;
  font-style: normal; }

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: 'footable';
    src: url("../fonts/footable.svg#footable") format("svg");
    font-weight: normal;
    font-style: normal; } }

.footable {
  width: 100%;
  /** SORTING **/
  /** PAGINATION **/ }
  .footable th > span {
    cursor: pointer; }

.footable.breakpoint > tbody > tr.footable-detail-show > td {
  border-bottom: none; }

.footable.breakpoint > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e001"; }

.footable.breakpoint > tbody > tr:hover:not(.footable-row-detail) {
  cursor: pointer; }

.footable.breakpoint > tbody > tr > td.footable-cell-detail {
  background: #eee;
  border-top: none; }

.footable.breakpoint > tbody > tr > td > span.footable-toggle {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  font-family: 'footable';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  padding-right: 10px;
  padding-right: 0.625rem;
  font-size: 14px;
  color: #888888; }

.footable.breakpoint > tbody > tr > td > span.footable-toggle:before {
  content: "\e000"; }

.footable.breakpoint.toggle-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e005"; }

.footable.breakpoint.toggle-circle > tbody > tr > td > span.footable-toggle:before {
  content: "\e004"; }

.footable.breakpoint.toggle-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e003"; }

.footable.breakpoint.toggle-circle-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e002"; }

.footable.breakpoint.toggle-square > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e007"; }

.footable.breakpoint.toggle-square > tbody > tr > td > span.footable-toggle:before {
  content: "\e006"; }

.footable.breakpoint.toggle-square-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e009"; }

.footable.breakpoint.toggle-square-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e008"; }

.footable.breakpoint.toggle-arrow > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e00f"; }

.footable.breakpoint.toggle-arrow > tbody > tr > td > span.footable-toggle:before {
  content: "\e011"; }

.footable.breakpoint.toggle-arrow-small > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e013"; }

.footable.breakpoint.toggle-arrow-small > tbody > tr > td > span.footable-toggle:before {
  content: "\e015"; }

.footable.breakpoint.toggle-arrow-circle > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e01b"; }

.footable.breakpoint.toggle-arrow-circle > tbody > tr > td > span.footable-toggle:before {
  content: "\e01d"; }

.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e00b"; }

.footable.breakpoint.toggle-arrow-circle-filled > tbody > tr > td > span.footable-toggle:before {
  content: "\e00d"; }

.footable.breakpoint.toggle-arrow-tiny > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e01f"; }

.footable.breakpoint.toggle-arrow-tiny > tbody > tr > td > span.footable-toggle:before {
  content: "\e021"; }

.footable.breakpoint.toggle-arrow-alt > tbody > tr.footable-detail-show > td > span.footable-toggle:before {
  content: "\e017"; }

.footable.breakpoint.toggle-arrow-alt > tbody > tr > td > span.footable-toggle:before {
  content: "\e019"; }

.footable.breakpoint.toggle-medium > tbody > tr > td > span.footable-toggle {
  font-size: 18px; }

.footable.breakpoint.toggle-large > tbody > tr > td > span.footable-toggle {
  font-size: 24px; }

.footable > thead > tr > th {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none; }

.footable > thead > tr > th.footable-sortable:hover {
  cursor: pointer; }

.footable > thead > tr > th.footable-sorted > span.footable-sort-indicator:before {
  content: "\e013"; }

.footable > thead > tr > th.footable-sorted-desc > span.footable-sort-indicator:before {
  content: "\e012"; }

.footable > thead > tr > th > span.footable-sort-indicator {
  display: inline-block;
  *zoom: 1;
  *display: inline;
  font-family: 'footable';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  padding-left: 5px; }

.footable > thead > tr > th > span.footable-sort-indicator:before {
  content: "\e022"; }

.footable > tfoot .pagination {
  margin: 0; }

.footable.no-paging .hide-if-no-paging {
  display: none; }

.footable-row-detail-inner {
  display: table; }

.footable-row-detail-row {
  display: table-row;
  line-height: 1.5em; }

.footable-row-detail-cell {
  background-color: #cdcecf; }

.footable-row-detail-group {
  display: block;
  line-height: 2em;
  font-size: 1.2em;
  font-weight: bold; }

.footable-row-detail-name {
  display: table-cell;
  font-weight: bold;
  padding-right: 0.5em; }

.footable-row-detail-value {
  display: table-cell; }

.footable-odd {
  background-color: #e9eaea; }

.footable-even {
  background-color: white; }

body {
  -webkit-overflow-scrolling: touch;
  background: #8b2333;
  overflow-x: hidden; }

.header-container,
.content-container,
.footer-container,
main,
.row
[data-ux-pagebuilder="Column"] {
  clear: both;
  float: left;
  background: white;
  width: 100%; }

[data-ux-pagebuilder="Column"] {
  width: 100% !important; }

.content-container {
  padding: 30px 0;
  padding: 1.875rem 0; }
  @media screen and (min-width: 48em) {
    .content-container {
      padding: 60px 0;
      padding: 3.75rem 0; } }
  @media screen and (min-width: 64em) {
    .content-container {
      padding: 90px 0;
      padding: 5.625rem 0; } }
  .content-container .card {
    background-color: #23282a;
    color: #ffffff;/*changed from #858688 by RPS 08/03/16 */
    padding: 30px 40px;
    padding: 1.875rem 2.5rem;
    margin-bottom: 20px;
    margin-bottom: 1.25rem; }
    .content-container .card h3 {
      color: white; }
    .content-container .card h4 {
      color: #8b2333; }
    .content-container .card a:hover {
      text-decoration: underline; }
    .content-container .card:last-of-type {
      margin: 0; }
    .content-container .card.no-bg {
      background: none;
      color: #23282a; }
    @media screen and (min-width: 90em) {
      .content-container .card.pad {
        padding-right: 80px;
        padding-right: 5rem;
        padding-left: 80px;
        padding-left: 5rem; } }
    @media screen and (min-width: 90em) {
      .content-container .card.extra-pad {
        padding-right: 160px;
        padding-right: 10rem;
        padding-left: 160px;
        padding-left: 10rem; } }
  .content-container.dark-band {
    background-color: #23282a; }
    .content-container.dark-band .section-title {
      color: white; }
    .content-container.dark-band .card {
      background-color: white;
      color: #23282a; }/*changed from #858688 by RPS 08/03/16 */
      .content-container.dark-band .card h3, .content-container.dark-band .card h4, .content-container.dark-band .card h5 {
        color: #892034; }/*changed from #858688 by RPS 08/03/16 */
      .content-container.dark-band .card.no-bg {
        background: none;
        color: #ffffff; }/*changed from #858688 by RPS 08/03/16 */
      .content-container.dark-band .card a {
        color: #23282a; }
        .content-container.dark-band .card a:hover {
          text-decoration: underline; }

.wrapper {
  max-width: 5.625em;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  max-width: 1600px;
  max-width: 100rem; }
  .wrapper:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 30em) {
    .wrapper {
      padding: 0 20px;
      padding: 0 1.25rem; } }
  @media screen and (min-width: 48em) {
    .wrapper {
      padding: 0 30px;
      padding: 0 1.875rem; } }
  @media screen and (min-width: 64em) {
    .wrapper {
      width: 93.75%;
      padding: 0;
      margin: 0 auto; } }
  @media screen and (min-width: 90em) {
    .wrapper.small {
      max-width: 1260px;
      max-width: 78.75rem; } }
  @media screen and (min-width: 90em) {
    .wrapper.medium {
      max-width: 1460px;
      max-width: 91.25rem; } }
  @media screen and (min-width: 90em) {
    .wrapper.large {
      max-width: 1600px;
      max-width: 100rem; } }
  .wrapper.single-column {
    padding-top: 20px;
    padding-top: 1.25rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem; }
    @media screen and (min-width: 64em) {
      .wrapper.single-column {
        padding-top: 30px;
        padding-top: 1.875rem; } }
    @media screen and (min-width: 90em) {
      .wrapper.single-column {
        max-width: 1300px;
        max-width: 81.25rem; } }

.col-2-aside {
  padding-top: 20px;

  padding-top: 1.25rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem; }
  @media screen and (min-width: 64em) {
    .col-2-aside {
      padding-top: 30px;
      padding-top: 1.875rem; } }
  .col-2-aside .primary-content {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 100%;
    margin-right: 0; }
    .col-2-aside .primary-content:last-child {
      margin-right: 0; }
    @media screen and (min-width: 64em) {
      .col-2-aside .primary-content {
        display: table-cell;
        width: 66.66667%;
        display: inline-block;
        float: right;
        padding-left: 20px;
        padding-left: 1.25rem;
        padding-right: 20px;
        padding-right: 1.25rem; } }
  .col-2-aside .sidebar {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 100%;
    padding-top: 30px;
    padding-top: 1.875rem;
    margin-right: 0; }
    .col-2-aside .sidebar:last-child {
      margin-right: 0; }
    @media screen and (min-width: 64em) {
      .col-2-aside .sidebar {
        padding-top: 0;
        padding-right: 20px;
        padding-right: 1.25rem;
        display: table-cell;
        width: 33.33333%;
        display: inline-block;
        float: right; } }
    .col-2-aside .sidebar nav {
      margin-bottom: 30px;
      margin-bottom: 1.875rem; }
      .col-2-aside .sidebar nav li {
        line-height: 1.2;
        margin-bottom: 10px;
        margin-bottom: 0.625rem; }

.col-2-submenu {
  padding-top: 20px;
  padding-top: 1.25rem; }
  @media screen and (min-width: 64em) {
    .col-2-submenu {
      -webkit-box-lines: single;
      -moz-box-lines: single;
      box-lines: single;
      -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; } }
  .col-2-submenu > article {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 100%; }
    .col-2-submenu > article:last-child {
      margin-right: 0; }
    @media screen and (min-width: 64em) {
      .col-2-submenu > article {
        display: table-cell;
        width: 71.66667%;
        padding-left: 2%;
        float: right; } }
  @media screen and (min-width: 64em) {
    .col-2-submenu .submenu {
      display: table-cell;
      width: 28.33333%;
      padding-right: 2%;
      float: none; } }

.col-3-subnav-aside {
  width: 100%;
  clear: both;
  padding-top: 20px;
  padding-top: 1.25rem; }
  @media screen and (min-width: 64em) {
    .col-3-subnav-aside {
      padding: 20px;
      padding: 1.25rem; } }
  @media screen and (min-width: 48em) {
    .col-3-subnav-aside > article {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 49.45055%; }
      .col-3-subnav-aside > article:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 64em) {
    .col-3-subnav-aside > article {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 32.60073%; }
      .col-3-subnav-aside > article:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 90em) {
    .col-3-subnav-aside > article {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 37.65568%; }
      .col-3-subnav-aside > article:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 48em) {
    .col-3-subnav-aside .sidebar {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 49.45055%; }
      .col-3-subnav-aside .sidebar:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 64em) {
    .col-3-subnav-aside .sidebar {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 37.65568%; }
      .col-3-subnav-aside .sidebar:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 90em) {
    .col-3-subnav-aside .sidebar {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 32.60073%; }
      .col-3-subnav-aside .sidebar:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 64em) {
    .col-3-subnav-aside .submenu {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 27.54579%; }
      .col-3-subnav-aside .submenu:last-child {
        margin-right: 0; } }

.featured-articles article, a.deadline {
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }
  @media screen and (min-width: 48em) and (max-width: 63.9375em) {
    .featured-articles article, a.deadline {
      width: 48%;
      float: left; }
      .featured-articles article:nth-child(odd), a.deadline:nth-child(odd) {
        margin-right: 4%; } }
  @media screen and (min-width: 64em) and (max-width: 89.9375em) {
    .featured-articles article, a.deadline {
      width: 48%;
      float: left; }
      .featured-articles article:nth-child(odd), a.deadline:nth-child(odd) {
        margin-right: 4%; } }
  @media screen and (min-width: 90em) {
    .featured-articles article, a.deadline {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 24.17582%; }
      .featured-articles article:last-child, a.deadline:last-child {
        margin-right: 0; } }

.row {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  padding: 0 0 15px;
  padding: 0 0 0.9375rem; }
  @media screen and (min-width: 30em) {
    .row.pad {
      padding-right: 40px;
      padding-right: 2.5rem;
      padding-left: 40px;
      padding-left: 2.5rem; } }
  @media screen and (min-width: 90em) {
    .row.pad {
      padding-right: 80px;
      padding-right: 5rem;
      padding-left: 80px;
      padding-left: 5rem; } }
  .row.border {
    border-bottom: 1px solid #bdbfc0; }
  .row .col {
    padding-right: 20px;
    padding-right: 1.25rem; }
  .row.cols-2.all-breakpoints .col {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 49.45055%; }
    .row.cols-2.all-breakpoints .col:last-child {
      margin-right: 0; }
  @media screen and (min-width: 48em) {
    .row.cols-2 > .col {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 49.45055%; }
      .row.cols-2 > .col:last-child {
        margin-right: 0; } }
  .row.cols-2 > .col .col {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 100%; }
    .row.cols-2 > .col .col:last-child {
      margin-right: 0; }
    @media screen and (min-width: 64em) {
      .row.cols-2 > .col .col {
        float: left;
        display: block;
        margin-right: 1.0989%;
        width: 49.45055%; }
        .row.cols-2 > .col .col:last-child {
          margin-right: 0; } }
  .row.cols-2 > .col .stacked-margin .col {
    margin-bottom: 20px;
    margin-bottom: 1.25rem; }
    .row.cols-2 > .col .stacked-margin .col:last-child {
      margin: 0; }
  @media screen and (max-width: 47.9375em) {
    .row.cols-2.stacked-margin .col {
      margin-bottom: 20px;
      margin-bottom: 1.25rem; }
      .row.cols-2.stacked-margin .col:last-child {
        margin: 0; } }
  .row.cols-3.all-breakpoints .col {
    float: left;
    display: block;
    margin-right: 1.47059%;
    width: 32.35294%; }
    .row.cols-3.all-breakpoints .col:last-child {
      margin-right: 0; }
  @media screen and (min-width: 48em) {
    .row.cols-3 .col {
      float: left;
      display: block;
      margin-right: 1.47059%;
      width: 32.35294%; }
      .row.cols-3 .col:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 47.9375em) {
    .row.cols-3.stacked-margin .col {
      margin-bottom: 20px;
      margin-bottom: 1.25rem; }
      .row.cols-3.stacked-margin .col:last-child {
        margin: 0; } }
  @media screen and (min-width: 64em) {
    .row.enrollment {
      padding: 0 20px 0 120px;
      padding: 0 1.25rem 0 7.5rem; } }

form[action="/Galleries/"] .primary-content > div > div > div > ul {
  position: relative;
  margin: 0;
  padding: 0; }
  @media screen and (min-width: 30em) {
    form[action="/Galleries/"] .primary-content > div > div > div > ul li:nth-child(1) {
      position: absolute;
      top: 0;
      left: 0; } }
  @media screen and (min-width: 30em) {
    form[action="/Galleries/"] .primary-content > div > div > div > ul li:nth-child(2) {
      width: 49%;
      float: left;
      margin-top: 50px;
      margin-right: 2%; } }
  @media screen and (min-width: 30em) {
    form[action="/Galleries/"] .primary-content > div > div > div > ul li:nth-child(3) {
      position: absolute;
      top: 0;
      left: 50%; } }
  @media screen and (min-width: 30em) {
    form[action="/Galleries/"] .primary-content > div > div > div > ul li:nth-child(4) {
      width: 49%;
      float: left;
      margin-top: 50px; } }
  form[action="/Galleries/"] .primary-content > div > div > div > ul li hr {
    display: none; }
  form[action="/Galleries/"] .primary-content > div > div > div > ul li td > a {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 5px;
    width: 85%; }

form[action="/Galleries/"] .primary-content table th, form[action="/Galleries/"] .primary-content table td {
  background: white;
  border: none; }

form[action="/OSPIRE_Inspires_Newsletter/"] .primary-content table {
  border: none; }
  form[action="/OSPIRE_Inspires_Newsletter/"] .primary-content table th, form[action="/OSPIRE_Inspires_Newsletter/"] .primary-content table td {
    background: white;
    border: none; }

.logo {
  display: table;
  margin: 35px auto 10px;
  margin: 2.1875rem auto 0.625rem; }
  @media screen and (min-width: 48em) {
    .logo {
      float: left;
      margin: 35px 0;
      margin: 2.1875rem 0; } }

.logo-shaw {
  width: 120px;
  width: 7.5rem;
  height: 78px;
  height: 4.875rem; }
  @media screen and (min-width: 30em) {
    .logo-shaw {
      width: 150px;
      width: 9.375rem;
      height: 78px;
      height: 4.875rem; } }
  @media screen and (min-width: 64em) {
    .logo-shaw {
      width: 182px;
      width: 11.375rem;
      height: 78px;
      height: 4.875rem; } }

.utility-section {
  background-color: #8b2333;
  position: relative;
  z-index: 100; }
  .utility-section .svg path {
    fill: white; }

.primary-toggle {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 101; }
  @media screen and (min-width: 64em) {
    .primary-toggle {
      left: 2.5%; } }
  @media screen and (min-width: 100em) {
    .primary-toggle {
      left: 150px; } }
  .primary-toggle .icon-hamburger path {
    fill: white; }

.search-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 100; }
  @media screen and (min-width: 64em) {
    .search-toggle {
      right: 2.5%; } }
  @media screen and (min-width: 100em) {
    .search-toggle {
      right: 150px; } }
  .search-toggle .icon-search {
    opacity: .7; }
    .search-toggle .icon-search path {
      fill: white; }

.footer-container {
  background-color: #8b2333;
  color: white;
  padding: 30px;
  padding: 1.875rem; }
  @media screen and (min-width: 48em) {
    .footer-container {
      padding: 40px;
      padding: 2.5rem; } }
  @media screen and (min-width: 64em) {
    .footer-container {
      padding: 50px;
      padding: 3.125rem; } }
  .footer-container a {
    color: white; }
  @media screen and (min-width: 90em) {
    .footer-container section {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 24.17582%; }
      .footer-container section:last-child {
        margin-right: 0; } }
  .footer-container section.footer-links {
    text-align: center; }
    @media screen and (min-width: 48em) and (max-width: 63.9375em) {
      .footer-container section.footer-links {
        width: 50%;
        margin: 0 auto;
        text-align: center; } }
    @media screen and (min-width: 64em) {
      .footer-container section.footer-links {
        text-align: left; } }
  @media screen and (max-width: 63.9375em) {
    .footer-container section.address-telephone {
      width: 100%;
      text-align: center;
      padding: 40px 0;
      padding: 2.5rem 0; } }
  @media screen and (min-width: 64em) and (max-width: 89.9375em) {
    .footer-container section.footer-logo, .footer-container section.address-telephone, .footer-container section.footer-links {
      width: 32%;
      float: left; } }
  @media screen and (min-width: 90em) {
    .footer-container section.address-telephone, .footer-container section.footer-links {
      padding-top: 10px;
      padding-top: 0.625rem; } }
  @media screen and (max-width: 90em) {
    .footer-container section.social {
      width: 100%;
      clear: both;
      text-align: center;
      padding-top: 40px;
      padding-top: 2.5rem; } }
  @media screen and (min-width: 90em) {
    .footer-container section.social {
      padding-top: 35px;
      padding-top: 2.1875rem; } }
  .footer-container .logo-shaw path {
    fill: white; }
  .footer-container .logo {
    margin: 0 auto;
    float: none; }
  .footer-container .street, .footer-container .phone, .footer-container .copyright {
    font-size: 13px;
    font-size: 0.8125rem; }
  @media screen and (min-width: 48em) {
    .footer-container .footer-links ul {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 49.45055%; }
      .footer-container .footer-links ul:last-child {
        margin-right: 0; } }
  @media screen and (max-width: 47.9375em) {
    .footer-container .footer-links ul li {
      margin-bottom: 8px;
      margin-bottom: 0.5rem; } }
  .footer-container .footer-links a {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .footer-container .footer-links a:hover {
      opacity: .45; }
  .footer-container .social {
    text-align: right; }
    .footer-container .social svg {
      vertical-align: middle; }
      .footer-container .social svg path {
        fill: white;
        stroke: white; }
    .footer-container .social svg, .footer-container .social img {
      -webkit-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out; }
    .footer-container .social > span, .footer-container .social > a {
      margin-right: 6px;
      margin-right: 0.375rem; }
    @media screen and (max-width: 29.9375em) {
      .footer-container .social > span {
        margin: 0 0 5px;
        display: block; } }
    .footer-container .social a:hover .svg, .footer-container .social a:hover img {
      -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
      transform: scale(1.3); }

.chromeframe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  background-color: #f50000;
  background-image: -webkit-linear-gradient(#f50000, #d30000);
  background-image: -webkit-linear-gradient(#f50000, #d30000, , , , , , , , );
  background-image: linear-gradient(#f50000, #d30000, , , , , , , , );
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center; }
  .chromeframe a {
    text-decoration: underline;
    color: #fff;
    font-style: italic; }

input[type="submit"], button, a.button {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 18px;
  line-height: 1.125rem;
  padding: 15px 24px;
  padding: 0.9375rem 1.5rem;
  text-align: center;
  color: white;
  border: 2px solid #8b2333;
  background-color: #8b2333;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 30px 20px 0;
  margin: 0 1.875rem 1.25rem 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }
  input[type="submit"]:hover, button:hover, a.button:hover {
    background-color: white;
    color: #8b2333; }
  input[type="submit"].primary, input[type="submit"].secondary, input[type="submit"].tertiary, button.primary, button.secondary, button.tertiary, a.button.primary, a.button.secondary, a.button.tertiary {
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    input[type="submit"].primary:before, input[type="submit"].secondary:before, input[type="submit"].tertiary:before, button.primary:before, button.secondary:before, button.tertiary:before, a.button.primary:before, a.button.secondary:before, a.button.tertiary:before {
      content: "";
      position: absolute;
      margin: auto;
      z-index: -1;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
    input[type="submit"].primary:hover:before, input[type="submit"].secondary:hover:before, input[type="submit"].tertiary:hover:before, button.primary:hover:before, button.secondary:hover:before, button.tertiary:hover:before, a.button.primary:hover:before, a.button.secondary:hover:before, a.button.tertiary:hover:before {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
  input[type="submit"].primary, button.primary, a.button.primary {
    background-color: #8b2333; }
    input[type="submit"].primary:before, button.primary:before, a.button.primary:before {
      background: white; }
    input[type="submit"].primary:hover, button.primary:hover, a.button.primary:hover {
      color: #8b2333; }
  input[type="submit"].secondary, button.secondary, a.button.secondary {
    background-color: transparent;
    color: #8b2333; }
    input[type="submit"].secondary:before, button.secondary:before, a.button.secondary:before {
      background: #8b2333; }
    input[type="submit"].secondary:hover, button.secondary:hover, a.button.secondary:hover {
      color: white; }
  input[type="submit"].tertiary, button.tertiary, a.button.tertiary {
    background-color: transparent;
    color: white; }
    input[type="submit"].tertiary:before, button.tertiary:before, a.button.tertiary:before {
      background: #8b2333; }
    input[type="submit"].tertiary:hover, button.tertiary:hover, a.button.tertiary:hover {
      color: white;
      border-color: white; }

fieldset {
  background-color: #d7d8d9;
  border: 1px solid #bdbfc0;
  margin: 0 0 0.75em;
  padding: 1.5em; }

.field input, .field label, .field select {
  display: block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em; }

.field label {
  font-weight: 600;
  margin-bottom: 0.375em; }
  .field label.required::after {
    content: "*"; }
  .field label abbr {
    display: none; }

.field textarea,
.field input[type="email"], .field input[type="number"], .field input[type="password"], .field input[type="search"], .field input[type="tel"], .field input[type="text"], .field input[type="url"], .field input[type="color"], .field input[type="date"], .field input[type="datetime"], .field input[type="datetime-local"], .field input[type="month"], .field input[type="time"], .field input[type="week"],
.field select {
  background-color: #fff;
  border: 1px solid #bdbfc0;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em;
  -webkit-transition: border-color;
          transition: border-color;
  width: 100%; }
  .field textarea:hover,
  .field input[type="email"]:hover, .field input[type="number"]:hover, .field input[type="password"]:hover, .field input[type="search"]:hover, .field input[type="tel"]:hover, .field input[type="text"]:hover, .field input[type="url"]:hover, .field input[type="color"]:hover, .field input[type="date"]:hover, .field input[type="datetime"]:hover, .field input[type="datetime-local"]:hover, .field input[type="month"]:hover, .field input[type="time"]:hover, .field input[type="week"]:hover,
  .field select:hover {
    border-color: #a3a6a7; }
  .field textarea:focus,
  .field input[type="email"]:focus, .field input[type="number"]:focus, .field input[type="password"]:focus, .field input[type="search"]:focus, .field input[type="tel"]:focus, .field input[type="text"]:focus, .field input[type="url"]:focus, .field input[type="color"]:focus, .field input[type="date"]:focus, .field input[type="datetime"]:focus, .field input[type="datetime-local"]:focus, .field input[type="month"]:focus, .field input[type="time"]:focus, .field input[type="week"]:focus,
  .field select:focus {
    border-color: #8b2333;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(119, 30, 44, 0.7);
    outline: none; }

.field textarea {
  resize: vertical; }

.field input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }

.field input[type="checkbox"], .field input[type="radio"] {
  display: inline;
  margin-right: 0.375em; }

.field input[type="file"] {
  padding-bottom: 0.75em;
  width: 100%; }

.field select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto; }

.field input[type="checkbox"], .field input[type="radio"] {
  position: absolute;
  left: 0px;
  top: 4px; }

.fieldset.inline > ul > li, .fieldgroup.inline > ul > li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
  margin-right: 1.25rem; }

.fieldset li.field, .fieldgroup li.field {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-bottom: 0; }

.fieldset.checkboxes ul, .fieldgroup.checkboxes ul {
  padding-left: 15px;
  padding-left: 0.9375rem; }

@media screen and (max-width: 29.9375em) {
  iframe[src="http://www.emailmeform.com/builder/embed/jWJ9elax0eZAT"] {
    height: 1900px; } }

.svg.icon-application {
  width: 89px;
  width: 5.5625rem;
  height: 95px;
  height: 5.9375rem; }

.svg.icon-acceptance {
  width: 97px;
  width: 6.0625rem;
  height: 80px;
  height: 5rem; }

.svg.icon-arrow-right-lrg {
  width: 45px;
  width: 2.8125rem;
  height: 24px;
  height: 1.5rem; }

.svg.icon-bearsnet {
  width: 36px;
  width: 2.25rem;
  height: 22px;
  height: 1.375rem; }

.svg.icon-calendars {
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem; }

.svg.icon-contact {
  width: 32px;
  width: 2rem;
  height: 21px;
  height: 1.3125rem; }

.svg.icon-directory {
  width: 28px;
  width: 1.75rem;
  height: 23px;
  height: 1.4375rem; }

.svg.icon-faculty {
  width: 21px;
  width: 1.3125rem;
  height: 24px;
  height: 1.5rem; }

.svg.icon-interview {
  width: 85px;
  width: 5.3125rem;
  height: 85px;
  height: 5.3125rem; }

.svg.icon-search {
  width: 29px;
  width: 1.8125rem;
  height: 29px;
  height: 1.8125rem; }

.svg.icon-submission {
  width: 87px;
  width: 5.4375rem;
  height: 82px;
  height: 5.125rem; }

.svg.icon-facebook {
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem; }

.svg.icon-flickr {
  width: 23px;
  width: 1.4375rem;
  height: 11px;
  height: 0.6875rem; }

.svg.icon-instagram {
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem; }

.svg.icon-linkedin {
  width: 24px;
  width: 1.5rem;
  height: 23px;
  height: 1.4375rem; }

.svg.icon-twitter {
  width: 23px;
  width: 1.4375rem;
  height: 21px;
  height: 1.3125rem; }

.svg.icon-youtube {
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem; }

.svg.icon-hamburger {
  width: 32px;
  width: 2rem;
  height: 26px;
  height: 1.625rem; }

.svg.icon-application {
  width: 89px;
  width: 5.5625rem;
  height: 95px;
  height: 5.9375rem; }

.svg.icon-submission {
  width: 87px;
  width: 5.4375rem;
  height: 82px;
  height: 5.125rem; }

.svg.icon-interview {
  width: 85px;
  width: 5.3125rem;
  height: 85px;
  height: 5.3125rem; }

.svg.icon-acceptance {
  width: 97px;
  width: 6.0625rem;
  height: 80px;
  height: 5rem; }

ul.media-blocks {
  list-style: none;
  margin: 0;
  padding: 0; }
  ul.media-blocks li {
    margin-bottom: 20px;
    margin-bottom: 1.25rem; }
    ul.media-blocks li figure {
      float: left; }
    @media screen and (max-width: 29.9375em) {
      ul.media-blocks li {
        font-size: 14px;
        font-size: 0.875rem; } }
  ul.media-blocks.faculty .details {
    margin-left: 125px;
    margin-left: 7.8125rem;
    clear: none; }

@media screen and (max-width: 29.9375em) {
  .thumb.thumb-float-right, .thumb.thumb-float-left {
    width: 30%; } }

.thumb.thumb-float-left {
  float: left;
  margin: 0 20px 5px 0;
  margin: 0 1.25rem 0.3125rem 0; }

.thumb.thumb-float-right {
  float: right;
  margin: 0 0 5px 20px;
  margin: 0 0 0.3125rem 1.25rem; }

img.inner-feature {
  margin-bottom: 30px;
  margin-bottom: 1.875rem; }

.panzoom-container .panzoom-parent {
  overflow: hidden;
  position: relative; }

.panzoom-container .buttons {
  margin-top: 20px;
  margin-top: 1.25rem; }
  .panzoom-container .buttons button {
    padding: 5px 9px;
    padding: 0.3125rem 0.5625rem;
    margin: 0 10px 10px 0;
    margin: 0 0.625rem 0.625rem 0; }
    @media screen and (max-width: 29.9375em) {
      .panzoom-container .buttons button {
        display: block;
        width: 100%;
        margin: 0 0 10px;
        margin: 0 0 0.625rem; } }
  .panzoom-container .buttons input {
    margin: 0 10px 10px 0;
    margin: 0 0.625rem 0.625rem 0; }
    @media screen and (max-width: 29.9375em) {
      .panzoom-container .buttons input {
        display: block;
        width: 100%;
        margin: 0 0 10px;
        margin: 0 0 0.625rem; } }

.panzoom-container .zoom-range {
  margin-right: 10px;
  margin-right: 0.625rem; }

.primary-nav-container {
  background-color: #23282a; }
  @media screen and (max-width: 63.9375em) {
    .primary-nav-container {
      height: 67px;
      overfloat: hidden; }
      .primary-nav-container nav {
        display: none; } }
  .primary-nav-container > .wrapper {
    position: relative; }
    @media screen and (min-width: 64em) {
      .primary-nav-container > .wrapper {
        width: 100%;
        margin: 0; } }
    @media screen and (min-width: 100em) {
      .primary-nav-container > .wrapper {
        width: 1600px;
        margin: 0 auto; } }

    /*NEW SubPage Nav added 05/25/16 RPS*/
    .primary2-nav-container {
  background-color: #23282a; }
  @media screen and (max-width: 63.9375em) {
    .primary2-nav-container {
      height: 67px;
      overfloat: hidden; }
      .primary2-nav-container nav {
        display: none; } }
  .primary2-nav-container > .wrapper {
    position: relative; }
    @media screen and (min-width: 64em) {
      .primary2-nav-container > .wrapper {
        width: 100%;
        margin: 0; } }
    @media screen and (min-width: 100em) {
      .primary2-nav-container > .wrapper {
        width: 1300px;
        margin: 0 auto; } }
    /*End*/

.search-active nav.primary {
  opacity: 0;
  z-index: 0; }
  .search-active nav.primary a {
    cursor: default; }

.search-active .search-toggle {
  z-index: 1; }
  .search-active .search-toggle .svg path {
    fill: #23282a; }

.search-active .search-container {
  width: 70%;
  z-index: 10; }
  @media screen and (min-width: 48em) {
    .search-active .search-container {
      width: 50%; } }

.search-container {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 0;
  height: auto;
  overflow: hidden;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  z-index: 10; }
  .search-container input[type="search"] {
    padding: 12px 15px;
    padding: 0.75rem 0.9375rem;
    background-color: white;
    width: 100%; }
  .search-container button {
    border: none;
    position: absolute;
    top: 10px;
    right: -10px;
    padding: 0;
    outline: none;
    background-color: white; }
  @media screen and (min-width: 100em) {
    .search-container {
      right: 130px; } }

nav.primary {
  z-index: 50;
  position: relative;
  width: 100%;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out; }
  @media screen and (min-width: 64em) {
    nav.primary {
      float: left; } }
  nav.primary .mega-dropdown, nav.primary .dropdown {
    position: absolute;
    top: 67px;
    left: -9999px;
    z-index: -1;
    width: 100%;
    background-color: #23282a;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out; }
    nav.primary .mega-dropdown .wrapper, nav.primary .dropdown .wrapper {
      padding-bottom: 30px;
      padding-bottom: 1.875rem; }
      nav.primary .mega-dropdown .wrapper .col, nav.primary .dropdown .wrapper .col {
        float: left;
        width: 25%;
        padding-right: 20px;
        padding-right: 1.25rem; }
      nav.primary .mega-dropdown .wrapper ul, nav.primary .dropdown .wrapper ul {
        padding-top: 10px;
        padding-top: 0.625rem;
        margin-right: 50px;
        margin-right: 3.125rem; }
        nav.primary .mega-dropdown .wrapper ul:last-child, nav.primary .dropdown .wrapper ul:last-child {
          margin: 0; }
        nav.primary .mega-dropdown .wrapper ul li, nav.primary .dropdown .wrapper ul li {
          line-height: 1.1;
          margin-bottom: 8px;
          margin-bottom: 0.5rem; }
          nav.primary .mega-dropdown .wrapper ul li a, nav.primary .dropdown .wrapper ul li a {
            font-size: 14px;
            font-size: 0.875rem;
            color: white; }
            nav.primary .mega-dropdown .wrapper ul li a:hover, nav.primary .dropdown .wrapper ul li a:hover {
              text-decoration: underline; }
            nav.primary .mega-dropdown .wrapper ul li a.label, nav.primary .dropdown .wrapper ul li a.label {
              cursor: default; }
              nav.primary .mega-dropdown .wrapper ul li a.label:hover, nav.primary .dropdown .wrapper ul li a.label:hover {
                text-decoration: none; }
          nav.primary .mega-dropdown .wrapper ul li:first-child a, nav.primary .dropdown .wrapper ul li:first-child a {
            font-size: 16px;
            font-size: 1rem;
            color: #d8a462;/*original color #8b2333*/ }
          nav.primary .mega-dropdown .wrapper ul li.active a, nav.primary .dropdown .wrapper ul li.active a {
            text-decoration: underline; }
  nav.primary .dropdown {
    width: 220px; }
    nav.primary .dropdown .wrapper {
      padding-bottom: 15px;
      padding-bottom: 0.9375rem; }
      nav.primary .dropdown .wrapper ul {
        float: none;
        padding: 5px 0 0 10px;
        padding: 0.3125rem 0 0 0.625rem; }
  nav.primary > ul {
    background-color: #23282a; }
    @media screen and (min-width: 64em) {
      nav.primary > ul {
        padding-left: 8%; } }
    @media screen and (min-width: 100em) {
      nav.primary > ul {
        padding-left: 200px;
        padding-left: 12.5rem; } }
    nav.primary > ul > li.dropdown-reg {
      position: relative; }
    nav.primary > ul > li:hover {
      cursor: pointer; }
      nav.primary > ul > li:hover > .mega-dropdown, nav.primary > ul > li:hover > .dropdown {
        opacity: 1;
        left: 0; }
    nav.primary > ul > li:hover > .dropdown {
      left: 8px; }
    @media screen and (min-width: 64em) {
      nav.primary > ul > li {
        display: inline-block; } }
    nav.primary > ul > li > a {
      padding: 20px 25px;
      padding: 1.25rem 1.5625rem;
      display: block;
      position: relative;
      cursor: pointer !important; }
      @media screen and (min-width: 64em) {
        nav.primary > ul > li > a {
          padding: 20px 12px;
          padding: 1.25rem 0.75rem; } }
      @media screen and (min-width: 90em) {
        nav.primary > ul > li > a {
          padding: 20px 25px;
          padding: 1.25rem 1.5625rem; } }
      nav.primary > ul > li > a:before {
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out; }
        @media screen and (min-width: 64em) {
          nav.primary > ul > li > a:before {
            position: absolute;
            bottom: -10px;
            left: 12px;
            width: calc(100% - 24px);
            height: 1px;
            border-bottom: 2px solid transparent;
            display: block;
            content: ""; } }
        @media screen and (min-width: 90em) {
          nav.primary > ul > li > a:before {
            left: 25px;
            width: calc(100% - 50px); } }
      @media screen and (min-width: 64em) {
        nav.primary > ul > li > a:hover:before {
          bottom: 12px;
          border-color: #8b2333; } }
    nav.primary > ul > li a {
      color: white;
      font-size: 18px;
      font-size: 1.125rem; }
      nav.primary > ul > li a.label {
        cursor: default; }
        nav.primary > ul > li a.label:hover {
          text-decoration: none; }
    @media screen and (min-width: 64em) {
      nav.primary > ul > li.active a:before {
        bottom: 12px;
        border-color: #8b2333; } }

nav.footer {
  font-size: 13px;
  font-size: 0.8125rem; }

.utility-section {
  position: relative;
  z-index: 200; }
  @media screen and (min-width: 64em) {
    .utility-section .wrapper {
      max-width: none;
      width: 95%; } }
  @media screen and (min-width: 100em) {
    .utility-section .wrapper {
      max-width: 1300px;
      width: auto; } }

nav.utility {
  padding: 5px 0 20px;
  padding: 0.3125rem 0 1.25rem; }
  @media screen and (min-width: 48em) {
    nav.utility {
      float: right;
      padding: 55px 0 20px;
      padding: 3.4375rem 0 1.25rem; } }
  @media screen and (min-width: 64em) {
    nav.utility {
      margin-right: -20px;
      margin-right: -1.25rem; } }
  nav.utility li {
    float: left;
    width: 20%;
    text-align: center; }
    @media screen and (min-width: 48em) {
      nav.utility li {
        float: left;
        display: inline-block;
        width: auto; } }
    nav.utility li img, nav.utility li svg {
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out; }
      @media screen and (min-width: 30em) {
        nav.utility li img, nav.utility li svg {
          position: absolute;
          margin: auto;
          top: 0;
          left: 0;
          right: 0; } }
      @media screen and (min-width: 64em) {
        nav.utility li img, nav.utility li svg {
          float: left; } }
    nav.utility li:last-child span:before {
      display: none; }
    nav.utility li:hover img, nav.utility li:hover svg {
      -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
      transform: scale(1.3); }
    nav.utility li:hover span {
      opacity: .65; }
  nav.utility a {
    color: white;
    position: relative;
    font-size: 13px;
    font-size: 0.8125rem;
    padding-top: 5px;
    padding-top: 0.3125rem;
    display: block; }
    @media screen and (min-width: 30em) {
      nav.utility a {
        padding-top: 35px;
        padding-top: 2.1875rem; } }
    nav.utility a span {
      display: none;
      -webkit-transition: all 0.35s ease-in-out;
      transition: all 0.35s ease-in-out; }
      @media screen and (min-width: 30em) {
        nav.utility a span {
          display: block;
          padding: 0 15px;
          padding: 0 0.9375rem;
          position: relative;
          line-height: 13px;
          line-height: 0.8125rem; } }
      @media screen and (min-width: 48em) {
        nav.utility a span:before {
          position: absolute;
          height: 100%;
          width: 1px;
          color: #23282a;
          top: 0;
          right: 0;
          display: block;
          content: "";
          border-right: 1px solid #23282a; } }

nav.secondary {
  position: absolute;
  left: -100%;
  top: 0;
  min-height: 100%;
  width: 100%;
  z-index: 10;
  background-color: #23282a;
  padding: 290px 20px 20px 50px;
  padding: 18.125rem 1.25rem 1.25rem 3.125rem;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out; }
  @media screen and (min-width: 30em) {
    nav.secondary {
      width: 400px;
      width: 25rem; } }
  @media screen and (min-width: 48em) {
    nav.secondary {
      padding: 285px 20px 20px 50px;
      padding: 17.8125rem 1.25rem 1.25rem 3.125rem; } }
  @media screen and (min-width: 64em) {
    nav.secondary {
      padding: 250px 2.5% 20px 50px;
      padding: 15.625rem 2.5% 1.25rem 3.125rem; } }
  nav.secondary.active {
    left: 0; }
  nav.secondary ul ul {
    display: none;
    padding-left: 24px;
    padding-left: 1.5rem; }
    nav.secondary ul ul.active {
      display: block; }
  nav.secondary ul li {
    line-height: 1.25;
    position: relative; }
    nav.secondary ul li .toggle-icon {
      position: absolute;
      top: 5px;
      left: -32px;
      cursor: pointer; }
      nav.secondary ul li .toggle-icon:before {
        content: "+";
        color: #8b2333;
        width: 30px;
        height: 20px;
        vertical-align: middle;
        text-align: center;
        font-size: 26px;
        font-size: 1.625rem;
        line-height: 15px;
        line-height: 0.9375rem;
        display: inline-block;
        font-weight: bold; }
    nav.secondary ul li.current > a {
      color: #8b2333; }
    nav.secondary ul li a {
      color: white;
      font-size: 17px;
      font-size: 1.0625rem;
      padding: 5px 0;
      padding: 0.3125rem 0;
      display: inline-block; }
      @media screen and (max-width: 29.9375em) {
        nav.secondary ul li a {
          font-size: 14px;
          font-size: 0.875rem; } }
      nav.secondary ul li a:hover {
        color: #8b2333; }
      nav.secondary ul li a.label {
        cursor: default; }
        nav.secondary ul li a.label:hover {
          text-decoration: none;
          color: white; }
    nav.secondary ul li.active > .toggle-icon {
      top: 3px; }
      nav.secondary ul li.active > .toggle-icon:before {
        content: "-"; }

.accordion-tabs {
  line-height: 1.5;
  margin-bottom: 1.5em;
  padding: 0; }
  .accordion-tabs:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (max-width: 44.375em) {
    .accordion-tabs {
      border-radius: 3px;
      border: 1px solid #bdbfc0; } }
  .accordion-tabs .tab-header-and-content {
    list-style: none; }
    @media screen and (min-width: 44.375em) {
      .accordion-tabs .tab-header-and-content a {
        margin-bottom: 1px;
        margin-bottom: 0.0625rem; } }
    @media screen and (min-width: 44.375em) {
      .accordion-tabs .tab-header-and-content {
        display: inline; } }
    .accordion-tabs .tab-header-and-content:first-child .tab-link {
      border-top-left-radius: 3px;
      border-top-right-radius: 3px; }
      @media screen and (max-width: 44.375em) {
        .accordion-tabs .tab-header-and-content:first-child .tab-link {
          border-top: 0; } }
    @media screen and (max-width: 44.375em) {
      .accordion-tabs .tab-header-and-content:last-child .tab-link {
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px; } }
  .accordion-tabs .tab-link {
    background-color: #fff;
    border-top: 1px solid #bdbfc0;
    color: #333;
    display: block;
    font-weight: bold;
    padding: 0.75em 0.28125em;
    text-decoration: none; }
    @media screen and (min-width: 44.375em) {
      .accordion-tabs .tab-link {
        display: inline-block;
        vertical-align: baseline;
        zoom: 1;
        *display: inline;
        *vertical-align: auto;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        border-top: 0; } }
    .accordion-tabs .tab-link:hover {
      color: #8b2333; }
    .accordion-tabs .tab-link:focus {
      outline: none; }
    .accordion-tabs .tab-link.is-active {
      background-color: #d7d8d9; }
      @media screen and (min-width: 44.375em) {
        .accordion-tabs .tab-link.is-active {
          background-color: #d7d8d9;
          border: 1px solid #bdbfc0;
          border-bottom-color: #d7d8d9;
          margin-bottom: -1px; } }
  .accordion-tabs .tab-content {
    background: #d7d8d9;
    display: none;
    padding: 1.5em 0.5625em;
    width: 100%; }
    @media screen and (min-width: 44.375em) {
      .accordion-tabs .tab-content {
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
        border-top-right-radius: 3px;
        border: 1px solid #bdbfc0;
        float: left; } }

table {
  border-collapse: collapse;
  margin: 0 0 40px;
  table-layout: fixed;
  width: 100%; }
  table tr.highlight {
    background: #23282a !important;
    font-weight: bold;
    color: white; }
  table tfoot td {
    font-weight: bold;
    background: #23282a;
    color: white; }
  table td, table th {
    padding: 6px;
    border: 1px solid #858688;
    text-align: left;
    vertical-align: top; }
  table th {
    border-bottom: 1px solid #96999b;
    background: #8b2333;
    color: white;
    font-weight: bold;
    text-transform: uppercase; }
  table td {
    border-bottom: 1px solid #bdbfc0; }
  table.no-border th, table.no-border td {
    border: none; }

.primary-content:not(.footable) tr:nth-child(odd) {
  background-color: #e9eaea; }

.primary-content:not(.footable) tr:nth-child(even) {
  background-color: white; }

.primary-content table.no-striping tr:nth-child(odd) {
  background-color: white; }

table.footable {
  width: 100% !important; }
  table.footable th {
    text-transform: uppercase; }
    table.footable th.footable-sorted-desc > span.footable-sort-indicator:before {
      content: "\e013" !important; }
    table.footable th.footable-sorted > span.footable-sort-indicator:before {
      content: "\e012" !important; }
  table.footable.colspan-fix-split.phone th, table.footable.colspan-fix-split.tablet th {
    width: 50%; }
  table.footable.colspan-fix-full.phone th, table.footable.colspan-fix-full.tablet th {
    width: 100%; }
  table.footable tr.no-detail .footable-toggle {
    display: none !important; }
  table.footable .footable-row-detail-name {
    text-transform: uppercase;
    display: inline-block; }
  table.footable .footable-row-detail-value {
    display: inline-block; }

.sidebar table th, .sidebar table td {
  border: none; }

form[action^="/University_News/"] table, form[action^="/StudentNews/"] table {
  border: none; }
  form[action^="/University_News/"] table td, form[action^="/University_News/"] table th, form[action^="/University_News/"] table tr, form[action^="/StudentNews/"] table td, form[action^="/StudentNews/"] table th, form[action^="/StudentNews/"] table tr {
    border: none;
    background-color: white; }
  form[action^="/University_News/"] table table table td:last-child, form[action^="/StudentNews/"] table table table td:last-child {
    width: 70%; }
    @media screen and (min-width: 30em) {
      form[action^="/University_News/"] table table table td:last-child, form[action^="/StudentNews/"] table table table td:last-child {
        width: 75%; } }
    @media screen and (min-width: 48em) {
      form[action^="/University_News/"] table table table td:last-child, form[action^="/StudentNews/"] table table table td:last-child {
        width: 85%; } }

form[action^="/StudentNews/"] table {
  border: none; }
  form[action^="/StudentNews/"] table td, form[action^="/StudentNews/"] table th, form[action^="/StudentNews/"] table tr {
    border: none;
    background-color: white; }
  form[action^="/StudentNews/"] table table td:last-child {
    width: 70%; }
    @media screen and (min-width: 30em) {
      form[action^="/StudentNews/"] table table td:last-child {
        width: 75%; } }
    @media screen and (min-width: 48em) {
      form[action^="/StudentNews/"] table table td:last-child {
        width: 85%; } }

.search-footable {
  opacity: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s; }
  .search-footable.footable-loaded {
    opacity: 1; }

.academic-calendar-container {
  position: relative; }
  .academic-calendar-container .preloader {
    z-index: 1; }
  .academic-calendar-container iframe {
    position: relative;
    z-index: 0; }

.preloader {
  height: 42px;
  width: 42px;
  margin: 100px;
  -webkit-animation: preloader_group 5s infinite linear;
          animation: preloader_group 5s infinite linear;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 100px; }
  @media screen and (min-width: 48em) {
    .preloader {
      top: 150px; } }
  @media screen and (min-width: 64em) {
    .preloader {
      top: 200px; } }

.preloader span {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-animation: preloader_single 1.2s infinite linear;
          animation: preloader_single 1.2s infinite linear; }

.preloader span:nth-child(1) {
  background: #23282a; }

.preloader span:nth-child(2) {
  left: 22px;
  background: #8b2333;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s; }

.preloader span:nth-child(3) {
  top: 22px;
  background: #8b2333;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; }

.preloader span:nth-child(4) {
  top: 22px;
  left: 22px;
  background: #23282a;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s; }

@-webkit-keyframes preloader_group {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes preloader_group {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes preloader_single {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); } }

@keyframes preloader_single {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1); }
  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5); } }

.hero {
  background-color: #23282a;
  padding: 0; }
  .hero .wrapper {
    padding: 0;
    margin: 0;
    width: 100%; }
    @media screen and (min-width: 90em) {
      .hero .wrapper {
        margin: 0 auto; } }
  .hero li {
    position: relative; }
    .hero li img {
      float: left; }
    .hero li:nth-child(n+2) {
      display: none; }
  .hero .heading {
    position: absolute;
    left: 50%;
    top: 50%;
    line-height: 1.2;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 0 20px;
    padding: 0 1.25rem;
    text-transform: uppercase;
    width: 100%;
    max-width: 1200px;
    max-width: 75rem;
    font-size: 20px;
    font-size: 1.25rem; }
    @media screen and (min-width: 30em) {
      .hero .heading {
        font-size: 30px;
        font-size: 1.875rem;
        top: 54%; } }
    @media screen and (min-width: 90em) {
      .hero .heading {
        font-size: 46px;
        font-size: 2.875rem; } }

.news {
  padding: 0;
  position: relative;
  top: -6px;
  background: transparent; }
  .news .wrapper {
    max-width: 1460px; }
  @media screen and (min-width: 30em) {
    .news {
      top: -40px; } }
  @media screen and (min-width: 48em) {
    .news {
      top: -50px; } }
  @media screen and (min-width: 64em) {
    .news {
      top: -70px; } }
  @media screen and (min-width: 90em) {
    .news {
      top: -105px; } }
  @media screen and (min-width: 48em) {
    .news .owl-wrapper-outer {
      width: 87%; } }
  .news .owl-controls {
    margin: 10px auto 0;
    margin: 0.625rem auto 0;
    width: 86px;
    width: 5.375rem;
    height: 25px;
    height: 1.5625rem; }
    @media screen and (min-width: 48em) {
      .news .owl-controls {
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top: -10px;
        margin-top: -0.625rem;
        bottom: auto; } }
    @media screen and (min-width: 64em) {
      .news .owl-controls {
        right: 30px; } }
    @media screen and (min-width: 90em) {
      .news .owl-controls {
        right: 60px;
        top: auto;
        margin: 0;
        bottom: 68px; } }
    .news .owl-controls .owl-buttons div {
      float: left;
      width: 50%;
      text-indent: -9999px;
      background-repeat: no-repeat;
      background-size: 25px 18px; }
      .news .owl-controls .owl-buttons div.owl-prev {
        color: #8b2333;
        background-position: top left; }
      .news .owl-controls .owl-buttons div.owl-next {
        color: #8b2333;
        background-position: top right; }

html.svg .owl-controls .owl-prev {
  background-image: url("/images/theme/i_arrow-left-sm.svg"); }

html.svg .owl-controls .owl-next {
  background-image: url("/images/theme/i_arrow-right-sm.svg"); }

html.no-svg .owl-controls .owl-prev {
  background-image: url("/images/theme/i_arrow-left-sm.png"); }

html.no-svg .owl-controls .owl-next {
  background-image: url("/images/theme/i_arrow-right-sm.png"); }

.hero-titles {
  padding: 20px;
  padding: 1.25rem;
  background-color: #8b2333; }
  @media screen and (min-width: 90em) {
    .hero-titles {
      width: 39%;
      margin-right: .5%;
      float: left;
      padding: 75px 80px 65px;
      padding: 4.6875rem 5rem 4.0625rem;
      height: 220px;
      height: 13.75rem; } }
  .hero-titles .line-1, .hero-titles .line-2 {
    display: block;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    color: white; }
    @media screen and (min-width: 48em) {
      .hero-titles .line-1, .hero-titles .line-2 {
        width: 75%;
        text-align: left; } }
  .hero-titles .line-1 {
    display: block;
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 24px;
    line-height: 1.5rem; }
    @media screen and (min-width: 48em) {
      .hero-titles .line-1 {
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 30px;
        line-height: 1.875rem; } }
    @media screen and (min-width: 64em) {
      .hero-titles .line-1 {
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 40px;
        line-height: 2.5rem; } }
    @media screen and (min-width: 90em) {
      .hero-titles .line-1 {
        font-size: 46px;
        font-size: 2.875rem;
        line-height: 46px;
        line-height: 2.875rem; } }
  .hero-titles .line-2 {
    text-transform: uppercase; }
    @media screen and (min-width: 90em) {
      .hero-titles .line-2 {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 18px;
        line-height: 1.125rem; } }

.featured-announcements {
  padding: 20px;
  padding: 1.25rem;
  background-color: #23282a;
  color: white; }
  @media screen and (min-width: 90em) {
    .featured-announcements {
      width: 60.5%;
      float: left;
      height: 220px;
      height: 13.75rem; } }
  .featured-announcements li {
    position: relative;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 30px 15px 0;
    padding: 1.875rem 0.9375rem 0; }
    @media screen and (min-width: 64em) {
      .featured-announcements li {
        width: 33.3333%;
        float: left;
        padding: 30px 110px 0 15px;
        padding: 1.875rem 6.875rem 0 0.9375rem; } }
    @media screen and (min-width: 64em) and (max-width: 89.9375em) {
      .featured-announcements li {
        padding: 30px 100px 0 15px;
        padding: 1.875rem 6.25rem 0 0.9375rem; } }
    @media screen and (min-width: 90em) {
      .featured-announcements li {
        padding: 30px 50px 30px 15px;
        padding: 1.875rem 3.125rem 1.875rem 0.9375rem; } }
    .featured-announcements li a {
      color: white; }
    .featured-announcements li:before {
      position: absolute;
      top: 15px;
      left: 15px;
      width: 30px;
      border-top: 2px solid #8b2333;
      content: "";
      display: block;
      -webkit-transition: all 0.35s ease-in-out;
      transition: all 0.35s ease-in-out; }
    .featured-announcements li:hover:before {
      width: 35%; }
    @media screen and (min-width: 64em) {
      .featured-announcements li p {
        overflow: hidden;
        height: 113px; } }
    @media screen and (min-width: 90em) {
      .featured-announcements li p {
        height: 87px; } }
  .featured-announcements .announcement-title {
    margin: 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6; }

.alumni-feature {
  padding: 0;
  position: relative; }
  @media screen and (min-width: 64em) {
    .alumni-feature {
      padding-bottom: 40px;
      padding-bottom: 2.5rem; } }
  @media screen and (min-width: 90em) {
    .alumni-feature {
      padding-bottom: 60px;
      padding-bottom: 3.75rem; } }
  @media screen and (min-width: 100em) {
    .alumni-feature {
      padding-bottom: 90px;
      padding-bottom: 5.625rem; } }
  .alumni-feature figure {
    margin: 0;
    display: block;
    text-align: center; }
    @media screen and (min-width: 64em) {
      .alumni-feature figure {
        float: left;
        width: 52%; } }
    @media screen and (min-width: 90em) {
      .alumni-feature figure {
        width: 800px; } }
  .alumni-feature .details {
    position: relative;
    z-index: 0;
    padding-right: 10px;
    padding-right: 0.625rem; }
    @media screen and (max-width: 63.9375em) {
      .alumni-feature .details {
        width: 90%;
        margin: 20px auto; } }
    @media screen and (min-width: 64em) {
      .alumni-feature .details {
        margin-left: 60%; } }
    @media screen and (min-width: 90em) {
      .alumni-feature .details {
        padding-top: 20px;
        padding-top: 1.25rem;
        margin-left: 65%;
        padding-right: 50px;
        padding-right: 3.125rem; } }
  .alumni-feature .grad-year {
    font-size: 122px;
    font-size: 7.625rem;
    color: #f1f2f2;
    position: absolute;
    top: -45px;
    z-index: -1;
    left: -50px; }
    @media screen and (min-width: 64em) {
      .alumni-feature .grad-year {
        top: -45px;
        left: -50px; } }
    @media screen and (min-width: 90em) {
      .alumni-feature .grad-year {
        left: -60px; } }
    @media screen and (min-width: 100em) {
      .alumni-feature .grad-year {
        top: -25px;
        left: -80px; } }
  .alumni-feature .block-title {
    font-size: 28px;
    font-size: 1.75rem;
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
    border-bottom: 2px solid #8b2333; }
    @media screen and (min-width: 30em) {
      .alumni-feature .block-title {
        max-width: 340px;
        max-width: 21.25rem; } }
  .alumni-feature .description {
    font-size: 18px;
    font-size: 1.125rem;
    color: #444;/*changed from #858688 by RPS 08/03/16 */ }
    @media screen and (min-width: 48em) {
      .alumni-feature .description p:last-of-type {
        margin-bottom: 20px;
        margin-bottom: 1.25rem; } }
    @media screen and (min-width: 90em) {
      .alumni-feature .description p:last-of-type {
        margin-bottom: 60px;
        margin-bottom: 3.75rem; } }
    @media screen and (min-width: 90em) {
      .alumni-feature .description .button {
        width: 158px;
        width: 9.875rem; } }

.upcoming-events {
  padding: 40px 0;
  padding: 2.5rem 0; }
  @media screen and (min-width: 64em) {
    .upcoming-events {
      padding: 50px 0;
      padding: 3.125rem 0; } }
  @media screen and (min-width: 90em) {
    .upcoming-events {
      padding: 60px 0 75px;
      padding: 3.75rem 0 4.6875rem; } }
  .upcoming-events article {
    background-color: white; }
    @media screen and (max-width: 29.9375em) {
      .upcoming-events article {
        width: 280px;
        width: 17.5rem;
        margin: 0 auto 20px;
        margin: 0 auto 1.25rem; } }
    @media screen and (min-width: 30em) {
      .upcoming-events article {
        width: auto;
        margin-bottom: 20px;
        margin-bottom: 1.25rem; } }
    .upcoming-events article .arrow-left {
      position: absolute;
      bottom: 0;
      right: 50%;
      margin-right: -15px;
      margin-right: -0.9375rem;
      width: 0;
      height: 0;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-bottom: 20px solid white; }
      @media screen and (min-width: 48em) {
        .upcoming-events article .arrow-left {
          top: 50%;
          right: 15px;
          margin-top: -15px;
          margin-top: -0.9375rem;
          width: 0;
          height: 0;
          border-top: 15px solid transparent;
          border-bottom: 15px solid transparent;
          border-right: 20px solid white; } }
    .upcoming-events article figure {
      overflow: hidden;
      margin: 0;
      position: relative; }
      @media screen and (min-width: 30em) {
        .upcoming-events article figure {
          height: 300px; } }
      @media screen and (min-width: 48em) {
        .upcoming-events article figure {
          height: auto;
          float: left;
          margin-right: 30px;
          margin-right: 1.875rem;
          width: 364px; } }
      @media screen and (min-width: 30em) {
        .upcoming-events article figure img {
          width: 100%;
          max-width: none; } }
      @media screen and (min-width: 48em) {
        .upcoming-events article figure img {
          width: auto;
          max-width: 100%;
          float: left; } }
    @media screen and (min-width: 48em) {
      .upcoming-events article.large .details {
        padding-top: 20px;
        padding-top: 1.25rem;
        padding-left: 384px;
        padding-left: 24rem; }
      .upcoming-events article.large .excerpt {
        font-size: 16px;
        font-size: 1rem; } }
    @media screen and (min-width: 64em) {
      .upcoming-events article.large .date {
        font-size: 28px;
        font-size: 1.75rem; }
      .upcoming-events article.large .title {
        font-size: 18px;
        font-size: 1.125rem; }
      .upcoming-events article.large .details {
        padding-top: 70px;
        padding-top: 4.375rem; }
      .upcoming-events article.large .excerpt {
        font-size: 15px;
        font-size: 0.9375rem; } }
    @media screen and (min-width: 100em) {
      .upcoming-events article.large {
        width: 746px;
        width: 46.625rem;
        margin-right: 4px;
        float: left; }
        .upcoming-events article.large figure {
          width: auto; } }
    @media screen and (min-width: 64em) {
      .upcoming-events article.small .details {
        padding: 20px 30px 10px 394px;
        padding: 1.25rem 1.875rem 0.625rem 24.625rem; }
      .upcoming-events article.small .date {
        font-size: 20px;
        font-size: 1.25rem;
        margin: 0 0 5px;
        margin: 0 0 0.3125rem; }
      .upcoming-events article.small .title {
        font-size: 18px;
        font-size: 1.125rem;
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin: 0 0 5px;
        margin: 0 0 0.3125rem; }
      .upcoming-events article.small .excerpt {
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.4; } }
    @media screen and (min-width: 90em) {
      .upcoming-events article.small {
        width: 49.5%;
        float: left;
        margin-right: 1%; }
        .upcoming-events article.small:last-child {
          margin-right: 0; }
        .upcoming-events article.small figure {
          width: 350px; } }
    @media screen and (min-width: 100em) {
      .upcoming-events article.small {
        margin: 0;
        width: 709px;
        width: 44.3125rem;
        height: 224px;
        height: 14rem;
        overflow: hidden; }
        .upcoming-events article.small:last-child {
          margin-top: 5px;
          margin-top: 0.3125rem; }
        .upcoming-events article.small figure {
          width: auto; } }
    .upcoming-events article .details {
      padding: 20px;
      padding: 1.25rem; }
      @media screen and (min-width: 48em) {
        .upcoming-events article .details {
          padding: 30px;
          padding: 1.875rem; } }
    .upcoming-events article .date {
      color: #23282a;
      font-size: 18px;
      font-size: 1.125rem;
      margin-bottom: 10px;
      margin-bottom: 0.625rem; }
      .upcoming-events article .date span {
        color: #8b2333; }
    .upcoming-events article .excerpt {
      font-size: 14px;
      font-size: 0.875rem;
      color: #23282a /*changed from #858688 by RPS 08/26/16*/; }

.featured-articles article {
  background-color: #23282a;
  position: relative;
  padding-bottom: 70px;
  padding-bottom: 4.375rem; }
  .featured-articles article header {
    padding-top: 30px;
    padding-top: 1.875rem; }
    @media screen and (min-width: 48em) {
      .featured-articles article header {
        padding-top: 40px;
        padding-top: 2.5rem; } }
    @media screen and (min-width: 64em) {
      .featured-articles article header {
        padding-top: 60px;
        padding-top: 3.75rem; } }
  .featured-articles article a {
    display: block; }
    .featured-articles article a:hover .title {
      color: #23282a; }
      .featured-articles article a:hover .title:before {
        border-color: white;
        width: 25%; }
    .featured-articles article a:hover header {
      background-color: #8b2333; }
    .featured-articles article a:hover .author {
      color: white; }

.featured-articles .featured-article-title, .featured-articles .author, .featured-articles .excerpt {
  padding: 0 20px;
  padding: 0 1.25rem; }
  @media screen and (min-width: 48em) {
    .featured-articles .featured-article-title, .featured-articles .author, .featured-articles .excerpt {
      padding: 0 30px;
      padding: 0 1.875rem; } }
  @media screen and (min-width: 64em) {
    .featured-articles .featured-article-title, .featured-articles .author, .featured-articles .excerpt {
      padding: 0 35px;
      padding: 0 2.1875rem; } }

.featured-articles .featured-article-title, .featured-articles .author, .featured-articles .featured-article-title:before {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }

.featured-articles .featured-article-title {
  color: white;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 10px;
  margin: 0 0 0.625rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  position: relative; }
  @media screen and (min-width: 64em) {
    .featured-articles .featured-article-title {
      font-size: 28px;
      font-size: 1.75rem; } }
  .featured-articles .featured-article-title:before {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 57px;
    height: 1px;
    border-bottom: 2px solid #8b2333;
    content: "";
    display: block; }
    @media screen and (min-width: 48em) {
      .featured-articles .featured-article-title:before {
        left: 30px; } }
    @media screen and (min-width: 64em) {
      .featured-articles .featured-article-title:before {
        left: 35px;
        top: -15px; } }

.featured-articles .excerpt {
  color: #fff /*changed from #858688 by RPS 08/26/16*/;
  font-size: 15px;
  font-size: 0.9375rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  -webkit-hyphens: none;
     -moz-hyphens: none;
      -ms-hyphens: none;
          hyphens: none; }

.featured-articles .read-more {
  color: #fff /*changed from #858688 by RPS 08/26/16*/;
  display: block;
  border-top: 3px solid #2d2d2e;
  padding: 20px 20px 25px;
  padding: 1.25rem 1.25rem 1.5625rem;
  font-size: 15px;
  font-size: 0.9375rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .featured-articles .read-more {
      padding: 20px 30px 25px;
      padding: 1.25rem 1.875rem 1.5625rem; } }
  @media screen and (min-width: 64em) {
    .featured-articles .read-more {
      padding: 20px 35px 25px;
      padding: 1.25rem 2.1875rem 1.5625rem; } }
  .featured-articles .read-more svg, .featured-articles .read-more img {
    margin-left: 8px;
    margin-left: 0.5rem;
    vertical-align: middle; }

.featured-articles .icon-arrow-right-red-sm {
  width: 19px;
  width: 1.1875rem;
  height: 13px;
  height: 0.8125rem; }
  .featured-articles .icon-arrow-right-red-sm path {
    fill: #8b2333; }

.featured-articles .view-all {
  margin: 20px auto 10px;
  margin: 1.25rem auto 0.625rem;
  display: table; }
  @media screen and (min-width: 48em) {
    .featured-articles .view-all {
      margin: 20px 0 0;
      margin: 1.25rem 0 0;
      float: right;
      display: inline-block; } }

.video-gallery .vid-outer-container {
  position: relative; }

@media screen and (min-width: 48em) {
  .video-gallery .vid-container {
    width: 70%; } }

@media screen and (min-width: 100em) {
  .video-gallery .vid-container {
    width: 1105px;
    width: 69.0625rem; } }

.video-gallery .video-pagination {
  display: table;
  margin: 20px auto;
  margin: 1.25rem auto; }
  @media screen and (min-width: 48em) {
    .video-gallery .video-pagination {
      display: none; } }
  .video-gallery .video-pagination .prev, .video-gallery .video-pagination .next {
    width: 70px;
    width: 4.375rem;
    display: block;
    float: left; }
  .video-gallery .video-pagination .prev {
    text-align: left; }
  .video-gallery .video-pagination .next {
    text-align: right; }
  .video-gallery .video-pagination svg {
    width: 40px;
    width: 2.5rem;
    width: 26px;
    width: 1.625rem; }

@media screen and (max-width: 47.9375em) {
  .video-gallery .vid-list-container {
    display: none; } }

@media screen and (min-width: 48em) {
  .video-gallery .vid-list-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 29%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding-right: 20px;
    padding-right: 1.25rem; } }

@media screen and (min-width: 100em) {
  .video-gallery .vid-list-container {
    width: 340px;
    width: 21.25rem; } }

.video-gallery .vid-item {
  cursor: pointer;
  background-color: white;
  position: relative; }
  @media screen and (min-width: 48em) {
    .video-gallery .vid-item {
      margin-bottom: 15px;
      margin-bottom: 0.9375rem; }
      .video-gallery .vid-item:last-child {
        margin: 0; } }
  .video-gallery .vid-item:hover img, .video-gallery .vid-item.active img {
    opacity: .45;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%); }
  .video-gallery .vid-item:hover .icon-plus, .video-gallery .vid-item.active .icon-plus {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .video-gallery .vid-item img {
    float: left;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out; }
    @media screen and (min-width: 90em) {
      .video-gallery .vid-item img {
        max-height: none; } }
  .video-gallery .vid-item .icon-plus {
    width: 47px;
    width: 2.9375rem;
    height: 47px;
    height: 2.9375rem;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    z-index: 10;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8); }
    .video-gallery .vid-item .icon-plus path {
      fill: #8b2333; }

a.deadline {
  background-color: white;
  display: block;
  padding: 20px;
  padding: 1.25rem; }
  @media screen and (min-width: 48em) {
    a.deadline {
      padding: 30px;
      padding: 1.875rem; } }
  a.deadline .deadline-date {
    color: #23282a;
    font-size: 18px;
    font-size: 1.125rem; }
    @media screen and (min-width: 90em) {
      a.deadline .deadline-date {
        font-size: 28px;
        font-size: 1.75rem; } }
    a.deadline .deadline-date span {
      color: #8b2333; }
  a.deadline .deadline-title {
    font-size: 18px;
    font-size: 1.125rem; }
    @media screen and (min-width: 90em) {
      a.deadline .deadline-title {
        font-size: 28px;
        font-size: 1.75rem; } }
  a.deadline .excerpt {
    font-size: 15px;
    font-size: 0.9375rem;
    color: #858688; }

.read-more {
  color: #8b2333; }

@media screen and (max-width: 47.9375em) {
  .application-steps .icon-application {
    width: 49px;
    width: 3.0625rem;
    height: 55px;
    height: 3.4375rem; }
  .application-steps .icon-submission {
    width: 47px;
    width: 2.9375rem;
    height: 42px;
    height: 2.625rem; }
  .application-steps .icon-interview {
    width: 45px;
    width: 2.8125rem;
    height: 45px;
    height: 2.8125rem; }
  .application-steps .icon-acceptance {
    width: 57px;
    width: 3.5625rem;
    height: 40px;
    height: 2.5rem; } }

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .application-steps .icon-application {
    width: 59px;
    width: 3.6875rem;
    height: 65px;
    height: 4.0625rem; }
  .application-steps .icon-submission {
    width: 57px;
    width: 3.5625rem;
    height: 52px;
    height: 3.25rem; }
  .application-steps .icon-interview {
    width: 55px;
    width: 3.4375rem;
    height: 55px;
    height: 3.4375rem; }
  .application-steps .icon-acceptance {
    width: 67px;
    width: 4.1875rem;
    height: 50px;
    height: 3.125rem; } }

@media screen and (min-width: 64em) and (max-width: 89.9375em) {
  .application-steps {
    margin-bottom: 40px;
    margin-bottom: 2.5rem; } }

@media screen and (min-width: 64em) {
  .application-steps {
    margin-top: 175px;
    margin-top: 10.9375rem;
    padding: 0 25px;
    padding: 0 1.5625rem; } }

@media screen and (min-width: 90em) {
  .application-steps {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 62.9304%;
    margin-top: 135px;
    margin-top: 8.4375rem;
    padding: 0 25px;
    padding: 0 1.5625rem; }
    .application-steps:last-child {
      margin-right: 0; } }

.application-steps li {
  position: relative; }
  @media screen and (max-width: 63.9375em) {
    .application-steps li {
      margin-bottom: 20px;
      margin-bottom: 1.25rem; } }
  @media screen and (min-width: 64em) {
    .application-steps li {
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 32.60073%;
      padding: 0 60px;
      padding: 0 3.75rem; }
      .application-steps li:last-child {
        margin-right: 0; } }
  @media screen and (min-width: 90em) {
    .application-steps li {
      padding: 0 40px;
      padding: 0 2.5rem; } }
  @media screen and (max-width: 63.9375em) {
    .application-steps li svg, .application-steps li img {
      float: left; } }
  @media screen and (min-width: 64em) {
    .application-steps li svg, .application-steps li img {
      position: absolute;
      margin-right: auto;
      margin-left: auto;
      top: -140px;
      left: 0;
      right: 0; } }
  .application-steps li svg.icon-arrow-right-lrg, .application-steps li img.icon-arrow-right-lrg {
    display: none; }
    @media screen and (min-width: 64em) {
      .application-steps li svg.icon-arrow-right-lrg, .application-steps li img.icon-arrow-right-lrg {
        display: block;
        margin-right: 0;
        margin-left: 0;
        top: -100px;
        right: -20px;
        left: auto; } }

.application-steps .title {
  color: #23282a;/*changed from #858688 RPS 5/25/16*/
  position: relative; }
  .application-steps .title span {
    color: #23282a;
    position: absolute;
    display: block;
    width: 15px;
    text-align: right;
    top: 0;
    right: 102%; }
    @media screen and (min-width: 30em) {
      .application-steps .title span {
        right: 101%; } }
    @media screen and (min-width: 48em) {
      .application-steps .title span {
        right: 103%; } }
    @media screen and (min-width: 64em) {
      .application-steps .title span {
        right: 105%; } }
    @media screen and (min-width: 90em) {
      .application-steps .title span {
        right: 108%; } }

@media screen and (max-width: 47.9375em) {
  .application-steps .details {
    margin-left: 85px;
    margin-left: 5.3125rem; } }

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .application-steps .details {
    margin-left: 105px;
    margin-left: 6.5625rem; } }

.application-steps .desc {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #23282a;/*changed from #858688 RPS 5/25/16*/ }

.application-steps-cta, .video-cta {
  padding: 30px 30px 0;
  padding: 1.875rem 1.875rem 0; }
  @media screen and (min-width: 90em) {
    .application-steps-cta, .video-cta {
      position: relative;
      margin-top: -80px;
      float: left;
      display: block;
      margin-right: 1.0989%;
      width: 35.9707%;
      padding: 0 25px 0 65px;
      padding: 0 1.5625rem 0 4.0625rem; }
      .application-steps-cta:last-child, .video-cta:last-child {
        margin-right: 0; } }
  .application-steps-cta .block-title, .video-cta .block-title {
    position: relative;
    font-size: 28px;
    font-size: 1.75rem;
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
    margin-bottom: 35px;
    margin-bottom: 2.1875rem; }
    .application-steps-cta .block-title:before, .video-cta .block-title:before {
      position: absolute;
      left: 0;
      bottom: 0;
      border-bottom: 2px solid #8b2333;
      width: 70%;
      content: ""; }
  .application-steps-cta .desc, .video-cta .desc {
    color: #23282a;/*changed from #858688 RPS 5/25/16*/
    margin-bottom: 30px;
    margin-bottom: 1.875rem; }
    @media screen and (min-width: 48em) and (max-width: 63.9375em) {
      .application-steps-cta .desc, .video-cta .desc {
        font-size: 18px;
        font-size: 1.125rem; } }

@media screen and (min-width: 64em) {
  .video-wrapper {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 45.2381%; }
    .video-wrapper:last-child {
      margin-right: 0; } }

@media screen and (min-width: 90em) {
  .video-wrapper {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 62.9304%; }
    .video-wrapper:last-child {
      margin-right: 0; } }

@media screen and (min-width: 64em) {
  .video-cta {
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 53.663%;
    padding-top: 0; }
    .video-cta:last-child {
      margin-right: 0; } }

@media screen and (min-width: 90em) {
  .video-cta {
    margin-top: auto;
    float: left;
    display: block;
    margin-right: 1.0989%;
    width: 35.9707%; }
    .video-cta:last-child {
      margin-right: 0; } }

.callout-cards .wrapper > div article {
  background-color: white;
  position: relative;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  overflow: hidden; }
  @media screen and (min-width: 30em) {
    .callout-cards .wrapper > div article {
      width: 49%;
      float: left; }
      .callout-cards .wrapper > div article:nth-child(1) {
        width: 100%; }
      .callout-cards .wrapper > div article:nth-child(even) {
        margin-right: 2%; } }
  @media screen and (min-width: 64em) {
    .callout-cards .wrapper > div article {
      width: 48%; }
      .callout-cards .wrapper > div article:nth-child(1) {
        width: 48%; }
      .callout-cards .wrapper > div article:nth-child(even) {
        margin-right: 0; }
      .callout-cards .wrapper > div article:nth-child(odd) {
        margin-right: 2%; }
      .callout-cards .wrapper > div article:last-child {
        margin: 0 auto;
        float: none; } }
  @media screen and (min-width: 90em) {
    .callout-cards .wrapper > div article {
      width: 19%; }
      .callout-cards .wrapper > div article:nth-child(1) {
        width: 19%; }
      .callout-cards .wrapper > div article:nth-child(even) {
        margin-right: 1%; }
      .callout-cards .wrapper > div article:nth-child(odd) {
        margin-right: 1.25%; }
      .callout-cards .wrapper > div article:last-child {
        margin-right: 0;
        float: left; } }
  .callout-cards .wrapper > div article header {
    position: relative;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    padding: 20px 25px;
    padding: 1.25rem 1.5625rem;
    z-index: 1; }
    @media screen and (min-width: 30em) and (max-width: 47.9375em) {
      .callout-cards .wrapper > div article header {
        height: 95px; } }
    @media screen and (min-width: 64em) {
      .callout-cards .wrapper > div article header {
        padding: 25px;
        padding: 1.5625rem; } }
    @media screen and (min-width: 90em) {
      .callout-cards .wrapper > div article header {
        height: 119px; } }
    .callout-cards .wrapper > div article header:before {
      background-color: #8b2333;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      content: "";
      display: block;
      z-index: 0;
      -webkit-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out; }
  .callout-cards .wrapper > div article > a {
    padding-bottom: 48px;
    padding-bottom: 3rem;
    display: block; }
    .callout-cards .wrapper > div article > a:hover header:before {
      opacity: 0; }

.callout-cards .excerpt {
  padding: 20px 25px;
  padding: 1.25rem 1.5625rem; }

.callout-cards .title {
  color: white;
  margin: 0;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-size: 22px;
  font-size: 1.375rem; }
  @media screen and (min-width: 30em) and (max-width: 47.9375em) {
    .callout-cards .title {
      max-width: 180px;
      max-width: 11.25rem; } }
  @media screen and (min-width: 64em) {
    .callout-cards .title {
      font-size: 28px;
      font-size: 1.75rem; } }
  @media screen and (min-width: 90em) {
    .callout-cards .title {
      max-width: 165px;
      max-width: 10.3125rem; } }

.callout-cards .excerpt {
  color: #23282a;/*changed from #858688 RPS 5/25/16*/
  font-size: 15px;
  font-size: 0.9375rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem; }

.callout-cards .read-more {
  color: #23282a;
  display: block;
  border-top: 3px solid #d7d8d9;
  padding: 10px 20px 15px;
  padding: 0.625rem 1.25rem 0.9375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .callout-cards .read-more {
      padding: 10px 30px 15px;
      padding: 0.625rem 1.875rem 0.9375rem; } }
  @media screen and (min-width: 64em) {
    .callout-cards .read-more {
      padding: 10px 35px 15px;
      padding: 0.625rem 2.1875rem 0.9375rem; } }
  .callout-cards .read-more svg, .callout-cards .read-more img {
    margin-left: 8px;
    margin-left: 0.5rem;
    vertical-align: middle; }

.callout-cards .icon-arrow-right-red-sm {
  width: 19px;
  width: 1.1875rem;
  height: 13px;
  height: 0.8125rem; }
  .callout-cards .icon-arrow-right-red-sm path {
    fill: #8b2333; }

.feature-cta {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  background-color: #23282a; }
  .feature-cta:last-child {
    margin-bottom: 0; }
    @media screen and (min-width: 48em) {
      .feature-cta:last-child figure img {
        width: 350px;
        height: 346px;
        max-width: none; } }
    @media screen and (min-width: 48em) {
      .feature-cta:last-child figure {
        width: 350px;
        width: 21.875rem; } }
    @media screen and (min-width: 100em) {
      .feature-cta:last-child figure {
        width: 282px;
        width: 17.625rem; } }
  @media screen and (min-width: 100em) {
    .feature-cta:first-child {
      float: left;
      display: block;
      margin-right: 1.32159%;
      width: 54.91189%; }
      .feature-cta:first-child:last-child {
        margin-right: 0; }
    .feature-cta:last-child {
      float: left;
      display: block;
      margin-right: 1.32159%;
      width: 43.76652%; }
      .feature-cta:last-child:last-child {
        margin-right: 0; } }
  .feature-cta .arrow-left {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-right: -15px;
    margin-right: -0.9375rem;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #23282a; }
    @media screen and (min-width: 48em) {
      .feature-cta .arrow-left {
        top: 50%;
        right: 15px;
        margin-top: -15px;
        margin-top: -0.9375rem;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 20px solid #23282a; } }
  .feature-cta header {
    background-color: white;
    padding: 1px 0;
    padding: 0.0625rem 0; }
  .feature-cta .content .details {
    padding: 20px;
    padding: 1.25rem; }
    @media screen and (min-width: 64em) and (max-width: 89.9375em) {
      .feature-cta .content .details {
        padding: 40px 40px 20px;
        padding: 2.5rem 2.5rem 1.25rem; } }
    @media screen and (min-width: 90em) and (max-width: 99.9375em) {
      .feature-cta .content .details {
        padding: 50px 50px 20px;
        padding: 3.125rem 3.125rem 1.25rem; } }
  .feature-cta .content figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    max-height: 250px;
    max-height: 15.625rem; }
    @media screen and (min-width: 48em) {
      .feature-cta .content figure {
        float: left;
        margin: 0 20px 0 0;
        margin: 0 1.25rem 0 0;
        max-height: none; } }
    @media screen and (min-width: 64em) and (max-width: 89.9375em) {
      .feature-cta .content figure {
        margin: 0 40px 0 0;
        margin: 0 2.5rem 0 0; } }
    @media screen and (min-width: 90em) and (max-width: 99.9375em) {
      .feature-cta .content figure {
        margin: 0 50px 0 0;
        margin: 0 3.125rem 0 0; } }
    .feature-cta .content figure img {
      width: 100%; }
      @media screen and (min-width: 30em) {
        .feature-cta .content figure img {
          margin-top: -100px; } }
      @media screen and (min-width: 48em) {
        .feature-cta .content figure img {
          margin-top: 0;
          width: auto;
          float: left; } }
  .feature-cta .content .title {
    color: white;
    text-transform: uppercase;
    margin: 0; }
    @media screen and (min-width: 48em) {
      .feature-cta .content .title {
        font-size: 28px;
        font-size: 1.75rem; } }
  .feature-cta .content .subtitle {
    color: #d8a462/*changed from #8b2333 by RPS 08/26/16 */; }
    @media screen and (min-width: 48em) {
      .feature-cta .content .subtitle {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 18px;
        line-height: 1.125rem; } }
  .feature-cta .content .desc {
    color: #ffffff;/*color #858688 changed RPS 05/25/16*/
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    font-size: 15px;
    font-size: 0.9375rem; }
    @media screen and (min-width: 48em) and (max-width: 63.9375em) {
      .feature-cta .content .desc {
        overflow: hidden;
        max-height: 110px; } }
    @media screen and (min-width: 64em) {
      .feature-cta .content .desc {
        max-height: 125px;
        max-height: 7.8125rem;
        overflow: hidden; } }
    .feature-cta .content .desc strong {
      color: white; }

.ways-to-give .button.push-right {
  width: 100%;
  margin: 30px 0 0 0;
  margin: 1.875rem 0 0 0; }
  @media screen and (min-width: 30em) {
    .ways-to-give .button.push-right {
      width: auto; } }

.about-shaw-welcome .section-title {
  margin: 0; }

@media screen and (min-width: 64em) {
  .about-shaw-welcome p {
    font-size: 24px;
    font-size: 1.5rem; } }

.about-shaw-academics .section-title {
  margin: 0; }

.notable-alumni .section-title {
  margin: 0; }

.notable-alumni .overview {
  color: white; }

@media screen and (min-width: 90em) {
  .notable-alumni .alum {
    padding-left: 250px;
    padding-left: 15.625rem; } }

.notable-alumni .alum h4 {
  line-height: 1.2;
  margin: 0 0 5px;
  margin: 0 0 0.3125rem;
  text-transform: uppercase; }
  @media screen and (min-width: 30em) {
    .notable-alumni .alum h4 {
      padding-top: 20px;
      padding-top: 1.25rem; } }
  @media screen and (min-width: 48em) {
    .notable-alumni .alum h4 {
      padding-top: 0; } }
  @media screen and (min-width: 64em) {
    .notable-alumni .alum h4 {
      padding-top: 20px;
      padding-top: 1.25rem;
      font-size: 17px;
      font-size: 1.0625rem; } }

.notable-alumni .alum figure {
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem; }
  @media screen and (min-width: 30em) {
    .notable-alumni .alum figure {
      float: left;
      margin-right: 30px;
      margin-right: 1.875rem;
      margin-bottom: 0; } }
  @media screen and (min-width: 48em) {
    .notable-alumni .alum figure {
      float: none;
      margin-bottom: 20px;
      margin-bottom: 1.25rem;
      margin-right: 0; } }
  @media screen and (min-width: 64em) {
    .notable-alumni .alum figure {
      float: left;
      margin-right: 30px;
      margin-right: 1.875rem;
      margin-bottom: 0; } }
  .notable-alumni .alum figure img {
    float: left; }

.notable-alumni .alum .card {
  text-align: center;
  padding-right: 70px;
  padding-right: 4.375rem; }
  @media screen and (min-width: 30em) {
    .notable-alumni .alum .card {
      text-align: left; } }

@media screen and (min-width: 30em) {
  .notable-alumni .alum.stacked-margin .col {
    margin-bottom: 40px;
    margin-bottom: 2.5rem; } }

@media screen and (min-width: 48em) {
  .notable-alumni .alum.stacked-margin .col {
    margin-bottom: 0; } }

.directory-search-container {
  position: relative; }
  .directory-search-container .preloader {
    margin: auto;
    position: absolute;
    left: 0;
    right: 0; }

.footable-search-field {
  padding: 5px;
  padding: 0.3125rem; }
  @media screen and (max-width: 29.9375em) {
    .footable-search-field {
      width: 100%; } }
  @media screen and (min-width: 30em) {
    .footable-search-field {
      width: 75%; } }
  @media screen and (min-width: 48em) {
    .footable-search-field {
      width: 50%; } }

tfoot.footable-pagination tr td {
  background: white;
  border: none;
  padding: 0;
  display: block !important; }

.footable-pagination-container {
  padding-top: spx;
  text-align: center;
  position: relative; }
  .footable-pagination-container ul {
    position: absolute;
    width: 200%;
    padding: 5px 0 0 0;
    padding: 0.3125rem 0 0 0;
    margin: 0 20px 0 0;
    margin: 0 1.25rem 0 0; }
    @media screen and (min-width: 48em) {
      .footable-pagination-container ul {
        margin: 0 30px 0 0;
        margin: 0 1.875rem 0 0; } }
    @media screen and (min-width: 64em) {
      .footable-pagination-container ul {
        margin: 0 80px 0 0;
        margin: 0 5rem 0 0; } }
    .footable-pagination-container ul li {
      display: inline-block;
      float: left;
      text-align: center;
      border: 1px solid #bdbfc0;
      border-right: none;
      background: #23282a; }
      .footable-pagination-container ul li:last-child {
        border: 1px solid #bdbfc0; }
      .footable-pagination-container ul li a {
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        color: white; }
        .footable-pagination-container ul li a:hover {
          background: #8b2333;
          color: white; }
      .footable-pagination-container ul li.active a {
        background: #8b2333; }
      .footable-pagination-container ul li.footable-page-arrow a {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 26px; }
      .footable-pagination-container ul li.footable-page-arrow.disabled {
        opacity: .5; }
      .footable-pagination-container ul li.footable-page {
        display: none; }

.ir {
  display: block;
  overflow: hidden;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  text-indent: -999em;
  direction: ltr;
  *line-height: 0; }
  .ir br {
    display: none; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0; }
  .visuallyhidden.focusable:active,
  .visuallyhidden.focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    margin: 0;
    width: auto;
    height: auto; }

.invisible {
  visibility: hidden; }

.group, body, ul.media-blocks li, .hero li, .video-gallery .vid-item {
  *zoom: 1; }
  .group:before,
  body:before,
  ul.media-blocks li:before,
  .hero li:before,
  .video-gallery .vid-item:before,
  .group:after, body:after, ul.media-blocks li:after, .hero li:after, .video-gallery .vid-item:after {
    display: table;
    content: ""; }
  .group:after, body:after, ul.media-blocks li:after, .hero li:after, .video-gallery .vid-item:after {
    clear: both; }

.clear {
  clear: both; }

img[src*="googleadservices.com"] {
  position: absolute;
  top: 0;
  left: -9000em; }

.push-right {
  float: right; }

.no-margin {
  margin: 0 !important; }

/* Responsive iFrame added by RPS 03/10/16 */
 
.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
 
.responsive-iframe-container iframe,   
.vresponsive-iframe-container object,  
.vresponsive-iframe-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}