@charset "UTF-8";
/*!
Theme Name: WashU WWW
Theme URI: http://wustl.edu
Author: WUSTL PA Digital Team
Author URI: http://wustl.edu
Description: The theme for the primary Washington University in Saint Louis website.
Version: 1.1.0
License: GNU General Public License
License URI: license.txt
Text Domain: wustl-www
Domain Path: /_lang/
Tags: responsive, HTML5

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

**** **** **** **** **** **** **** **** **** **** ****
   WHOA, BUSTER!
   THIS STYLESHEET WAS BUILT USING SASS.
   IF YOU KNOW SASS, AND WANT TO CONTINUE USING
   SASS ON THIS STYLESHEET, DON'T EDIT THIS FILE!

   .scss files are located in _assets/sass/

**** **** **** **** **** **** **** **** **** **** ****

This theme is based on antipasto which is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/
/**
 * Core variables and mixins
 */
/* BS vars & mixins */
/* Globals */
/*------------------------------------*|
    WashU Brand colors, fonts
|*------------------------------------*/
/* *** Official WashU Brand Colors *** */
/* *** Official WashU Brand Fonts *** */
/* CSS Transition
	Usage: @include transition(width,0.3s,ease-out);
 */
/** Grid maker
 * Usage: @include grid(1, 4); // Create a 1/4 width grid unit.
 */
/**
 * RESET
 */
/* Bootstrap Reset */
/* Project Reset */
/* Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}

body {
  background: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

a img {
  border: 0;
}

img {
  max-width: 100%;
}

/**
 * BOOTSTRAP CSS (uncomment as needed)
 */
/* BS Core Styles */
/* BS Components */
/**
 * PROJECT COMPONENTS
 */
/* Grid
--------------------------------------------------------------*/
.grid, .grid-1-4, .grid-1-3, .grid-1-2, .grid-2-3, .grid-3-4 {
  box-sizing: border-box;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .grid.grid-first, .grid-first.grid-1-4, .grid-first.grid-1-3, .grid-first.grid-1-2, .grid-first.grid-2-3, .grid-first.grid-3-4, .grid:first-child, .grid-1-4:first-child, .grid-1-3:first-child, .grid-1-2:first-child, .grid-2-3:first-child, .grid-3-4:first-child {
    margin-left: 0;
  }
  .grid.not-last, .not-last.grid-1-4, .not-last.grid-1-3, .not-last.grid-1-2, .not-last.grid-2-3, .not-last.grid-3-4 {
    margin-right: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .grid-1-4 {
    float: left;
    width: 23.5%;
    width: calc( 25% - 0.75 * 2rem );
    margin-left: 2%;
    margin-left: calc( 2rem * 0.99 );
  }
}

@media screen and (min-width: 768px) {
  .grid-1-3 {
    float: left;
    width: 32.0%;
    width: calc( 33.33333% - 0.66667 * 2rem );
    margin-left: 2%;
    margin-left: calc( 2rem * 0.99 );
  }
}

@media screen and (min-width: 768px) {
  .grid-1-2 {
    float: left;
    width: 49%;
    width: calc( 50% - 0.5 * 2rem );
    margin-left: 2%;
    margin-left: calc( 2rem * 0.99 );
  }
}

@media screen and (min-width: 768px) {
  .grid-2-3 {
    float: left;
    width: 65.33333%;
    width: calc( 66.66667% - 0.33333 * 2rem );
    margin-left: 2%;
    margin-left: calc( 2rem * 0.99 );
  }
}

@media screen and (min-width: 768px) {
  .grid-3-4 {
    float: left;
    width: 73.5%;
    width: calc( 75% - 0.25 * 2rem );
    margin-left: 2%;
    margin-left: calc( 2rem * 0.99 );
  }
}

/*
 * A utility class for wrapping a row of grid objects.
 */
.grid-row {
  clear: both;
}
.grid-row [class*="grid"]:first-child {
  margin-left: 0;
}

/* Offsets */
@media screen and (min-width: 768px) {
  .offset-right {
    float: right !important;
  }
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
  color: #555;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ddd !important;
  color: inherit;
}

::selection {
  background: #ddd !important;
  color: inherit;
}

::-moz-selection {
  background: #ddd !important;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  margin-top: 1.25em;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1 {
  font-size: 2em;
  line-height: 1;
  /* 36/36 */
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.2em;
  text-transform: uppercase;
}

h2 {
  font-size: 1.6em;
  /* 30/36 */
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #3d3d3d;
}

h3 {
  font-size: 1.3em;
  /* 28/40 */
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.7em;
}

h4 {
  color: #3d3d3d;
  font-size: 1.1em;
  /* 24/25 */
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25em;
}

h5, h6 {
  color: #3d3d3d;
  font-size: 0.875em;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

h5 {
  text-transform: uppercase;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}

a {
  color: #a51417;
}

a:hover,
a:focus {
  text-decoration: underline;
}

p {
  margin-bottom: 1.7em;
  line-height: 1.5;
}

strong, b {
  font-weight: 600;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

.intro {
  color: #a51417;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.25em;
  font-weight: normal;
  line-height: 1.3em;
  letter-spacing: 0.015em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .intro {
    font-size: 1.7em;
    /* 32/40px */
  }
}

.lead {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1em;
  /* 18/27px */
  font-weight: 300;
  line-height: 1.5em;
  margin-top: 25px;
  margin-bottom: 20px;
}

.list-heading {
  color: #3d3d3d;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.875em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.indent {
  margin-left: 25px;
}

.legalese {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 0.75em;
  font-style: italic;
}

ul {
  list-style: disc;
  margin-left: 1.125em;
}

ol {
  list-style: decimal;
  margin-left: 1.125em;
}

ul, ol {
  padding: 0;
  margin: 0 0 40px 25px;
}

ul ul, ul ol, ol ol, ol ul {
  margin-bottom: 0;
}

li {
  line-height: 26px;
}

ul.unstyled, ol.unstyled {
  margin-left: 0;
  list-style: none;
}
ul.unstyled li, ol.unstyled li {
  line-height: 1.25em;
  font-weight: 600;
  margin-bottom: 12px;
}
ul.unstyled ul, ul.unstyled ol, ol.unstyled ul, ol.unstyled ol {
  margin-top: 10px;
}
ul.unstyled a, ol.unstyled a {
  text-decoration: none;
  font-weight: 600;
}
ul.unstyled a:hover, ol.unstyled a:hover {
  text-decoration: underline;
}

.list-inline {
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #fff;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

blockquote {
  border-left: 6px solid #a51417;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.25em;
  font-style: italic;
  font-weight: normal;
  line-height: 1.5em;
  margin-bottom: 1.875em;
  margin: 1.5em 10px;
  padding: 0.5em 0 0.5em 1em;
}
blockquote * {
  margin-bottom: 0;
}

blockquote
blockquote blockquote {
  margin-left: 30px;
  margin-top: 30px;
}

.pullquote {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.5em;
  font-style: italic;
  font-weight: normal;
  line-height: 1.25em;
  margin: 1em 0.75em 0.5em 0.25em;
  padding: 0.5em 0 0.5em 1em;
}

.citation {
  font-size: 0.875em;
  font-weight: 800;
  line-height: 1.923076;
  text-align: left;
  margin: 0em 2em 2em 1em;
}
@media (min-width: 640px) {
  .citation {
    margin: 0 2em 1em;
    text-align: right;
  }
}

cite {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  line-height: 1.5;
}

address {
  margin: 0 0 30px;
}

code,
kbd,
pre,
tt,
var {
  font-family: Inconsolata, monospace;
}

pre {
  background: #eee;
  border-left: 2px solid #3863c1;
  max-width: 100%;
  overflow: auto;
  padding: 30px;
}

abbr,
acronym {
  border-bottom: 1px dotted #222;
  cursor: help;
}

mark,
ins {
  background: #3863c1;
  color: #fff;
  padding: 0 0.2em;
  text-decoration: none;
}

big {
  font-size: 125%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.button {
  display: inline-block;
  color: #3c9492;
  cursor: pointer;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 800;
  line-height: 1em;
  text-decoration: none;
}

.button.red {
  border: 1px solid #fff;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  margin: 0 10px 20px;
  padding: 12px 28px;
  letter-spacing: 0.1em;
  background-color: #a51417;
  border: 1px solid #a51417;
  color: #fff;
  text-decoration: none;
}

.button.grey {
  border: 1px solid #fff;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1em;
  margin: 0 10px 20px;
  padding: 12px 28px;
  letter-spacing: 0.1em;
  background-color: #3c3d3d;
  border: 1px solid #3c3d3d;
  color: #fff;
  text-decoration: none;
}

.button:hover {
  text-decoration: underline;
}

.button.red:hover,
.button.grey:hover {
  background-color: #fff;
  border: 1px solid #a51417;
  color: #a51417;
  text-decoration: none;
}

.button:active {
  position: relative;
  top: 1px;
}

/*--------------------------------------------------------------
# Table
--------------------------------------------------------------*/
table {
  width: 98%;
  margin: 1em 0 1.6em 0;
  border: 1px solid #3c3d3d;
  padding: 1em;
}

td,
th {
  padding: 1em;
  border: 1px solid #dadada;
  color: 78.43137%;
  font-size: 0.866667em;
  line-height: 1.1em;
}

tr:nth-child(odd) {
  background-color: #eeeeee;
}

th,
th > a {
  background-color: #3d3d3d;
  color: #eee;
}

th.name {
  width: 23%;
}

th.title, th.email {
  width: 30%;
}

th.phone {
  width: 17%;
}

/* Navigation
--------------------------------------------------------------*/
/*   *** Menus ***   */
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  display: none;
  float: left;
  left: 0;
  position: absolute;
  top: 1.5em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: 100%;
  top: 0;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul {
  display: block;
}

/*   *** Small Menu ***   */
.menu-toggle {
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 600px) {
  .menu-toggle,
  .main-navigation.toggled .nav-menu {
    display: block;
  }

  .main-navigation ul {
    display: none;
  }
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/* Subnav
--------------------------------------------------------------*/
ul.subnav, ul.subnav ul {
  margin-left: 0;
  list-style: none;
}
ul.subnav > .current_page_ancestor {
  border-top: none;
  border-bottom: 1px solid #c8c8c8;
}
ul.subnav > .current_page_ancestor > a {
  color: #3d3d3d;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.5em;
  padding-bottom: .65em;
}
ul.subnav > .current_page_ancestor > a:hover {
  color: #a51417;
}
ul.subnav ul a {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .875em;
  font-weight: 600;
  line-height: 1.25em;
  padding: 15px 0px 15px 10px;
}
ul.subnav ul .current_page_parent > a, ul.subnav ul .current_page_item > a {
  background-color: #3c3d3d;
  color: #fff;
}
ul.subnav ul ul a {
  padding-left: 30px;
  background-color: #e2e2e2;
}
ul.subnav ul ul .current_page_item > a {
  background-color: #c8c8c8;
  color: #a51417;
}
ul.subnav ul ul a {
  padding-left: 45px;
}
ul.subnav li {
  border-top: 1px solid #c8c8c8;
}
ul.subnav a {
  display: block;
  padding-bottom: 10px;
  padding-top: 10px;
  text-decoration: none;
}
ul.subnav a:hover {
  text-decoration: underline;
}

/* Content
--------------------------------------------------------------*/
/* Container
--------------------------------------------------------------*/
.container {
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .container {
    width: 600px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media screen and (min-width: 840px) {
  .container {
    width: 840px;
  }
}
@media screen and (min-width: 960px) {
  .container {
    width: 840px;
  }
}
@media screen and (min-width: 1080px) {
  .container {
    width: 960px;
  }
}
@media screen and (min-width: 1380px) {
  .container {
    width: 1260px;
  }
}

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

.site-content img {
  width: auto;
  height: auto;
}

/*   *** Posts and pages ***   */
.page .entry-title {
  margin-top: 0;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

a.hover-underline {
  text-decoration: none;
}
a.hover-underline:hover {
  text-decoration: underline;
}

.notice {
  background-color: #ffcc00;
  padding: 5px 10px;
}

.hidden {
  display: none !important;
}

/*   *** Asides ***   */
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
  display: none;
}

.page-child .site-content .container, .page-template-default .site-content .container, .page-template-directory .site-content .container, .error404 .site-content .container {
  padding: 40px 0 40px;
}
@media screen and (min-width: 768px) {
  .page-child .site-content .container, .page-template-default .site-content .container, .page-template-directory .site-content .container, .error404 .site-content .container {
    padding: 60px 0 40px;
  }
}
@media screen and (min-width: 1380px) {
  .page-child .site-content .container, .page-template-default .site-content .container, .page-template-directory .site-content .container, .error404 .site-content .container {
    width: 1260px;
  }
}
.page-child .content-area, .page-template-default .content-area, .page-template-directory .content-area, .error404 .content-area {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .page-child .content-area, .page-template-default .content-area, .page-template-directory .content-area, .error404 .content-area {
    padding: 0 40px;
  }
}
@media screen and (min-width: 840px) {
  .page-child .content-area, .page-template-default .content-area, .page-template-directory .content-area, .error404 .content-area {
    width: 580px;
    float: left;
    padding: 0 40px 0 0;
  }
}
@media screen and (min-width: 960px) {
  .page-child .content-area, .page-template-default .content-area, .page-template-directory .content-area, .error404 .content-area {
    width: 580px;
  }
}
@media screen and (min-width: 1080px) {
  .page-child .content-area, .page-template-default .content-area, .page-template-directory .content-area, .error404 .content-area {
    width: 700px;
  }
}
@media screen and (min-width: 1380px) {
  .page-child .content-area, .page-template-default .content-area, .page-template-directory .content-area, .error404 .content-area {
    padding: 0 40px;
    width: 960px;
  }
}
.page-child .content-area.no-sidebar, .page-template-default .content-area.no-sidebar, .page-template-directory .content-area.no-sidebar, .error404 .content-area.no-sidebar {
  float: none;
  margin: 0 auto;
}
.page-child .content-area.no-sidebar ol li, .page-template-default .content-area.no-sidebar ol li, .page-template-directory .content-area.no-sidebar ol li, .error404 .content-area.no-sidebar ol li {
  margin: 10px 0;
}
.page-child .sidebar, .page-template-default .sidebar, .page-template-directory .sidebar, .error404 .sidebar {
  display: none;
}
@media screen and (min-width: 840px) {
  .page-child .sidebar, .page-template-default .sidebar, .page-template-directory .sidebar, .error404 .sidebar {
    display: block;
    width: 260px;
    float: left;
  }
}
@media screen and (min-width: 960px) {
  .page-child .sidebar, .page-template-default .sidebar, .page-template-directory .sidebar, .error404 .sidebar {
    width: 260px;
  }
}
@media screen and (min-width: 1080px) {
  .page-child .sidebar, .page-template-default .sidebar, .page-template-directory .sidebar, .error404 .sidebar {
    width: 260px;
  }
}
@media screen and (min-width: 1380px) {
  .page-child .sidebar, .page-template-default .sidebar, .page-template-directory .sidebar, .error404 .sidebar {
    width: 300px;
    padding: 0 40px 0 0;
  }
}
.page-child footer, .page-template-default footer, .page-template-directory footer, .error404 footer {
  clear: both;
}

/* Homepage
--------------------------------------------------------------*/
.home .conjunction {
  font-style: italic;
}
.home .keyword {
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.home h2, .home p {
  padding-left: 20px;
  padding-right: 20px;
}
.home .lead {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .home .lead {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 840px) {
  .home #home-video {
    margin-top: -113px;
  }
}
@media screen and (min-width: 1080px) {
  .home #home-video {
    margin-top: -81px;
  }
}

/*   *** Hero ***   */
.hero {
  line-height: 0;
}

#home-video {
  width: 100%;
}

#home-video-image {
  max-width: none;
  width: 100%;
}

/*   *** Landing Page ***   */
@media screen and (max-width: 1079px) {
  .page-template-landing .grid-1-2 {
    float: none;
    width: 100%;
    margin: 0;
  }
  .page-template-landing .grid-1-2 iframe {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
  .page-template-landing .grid-1-4 {
    width: 49%;
    width: calc( 50% - 0.5 * 2rem );
    margin-left: 2%;
    margin-left: calc( 2rem * 1 );
  }
  .page-template-landing .grid-1-4:nth-child(odd) {
    margin-left: 0;
  }
}
@media screen and (min-width: 1380px) {
  .page-template-landing .lead, .page-template-landing .intro {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-landing .site-content .container {
  padding-left: 20px;
  padding-right: 20px;
}
.page-template-landing .entry-header {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  background: none;
  z-index: 2;
}
.page-template-landing .entry-title {
  font-size: 2em;
  letter-spacing: 0.05em;
  font-weight: 200;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 600px) {
  .page-template-landing .entry-title {
    font-size: 3em;
  }
}
@media screen and (min-width: 840px) {
  .page-template-landing .entry-title {
    font-size: 4em;
  }
}
.page-template-landing .featuredImgWrapper {
  line-height: 0;
  position: relative;
}
.page-template-landing .featuredImgWrapper .attachment-post-thumbnail {
  width: 100%;
  height: auto;
}
.page-template-landing .featuredImgWrapper:before {
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
  /* IE6-9 */
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.responsive_image {
  width: 100%;
  height: auto;
}

/*   *** Announcement ***   */
.announcement-banner {
  display: block;
  background-color: #3c9492;
  color: #fff;
  padding: 8px 20px;
  text-align: center;
}
.announcement-banner .heavy {
  font-weight: 600;
}
.announcement-banner a {
  color: #fff;
}

/*   *** Audience ***   */
.audience-nav {
  display: none;
}
@media screen and (min-width: 840px) {
  .audience-nav {
    display: block;
    background-color: #3c3d3d;
    position: relative;
  }
  .audience-nav:after {
    background-image: url("_assets/img/pull-down.png");
    background-repeat: no-repeat;
    content: '';
    height: 40px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    top: 100%;
    width: 87px;
  }
  .audience-nav.expand:after {
    background-image: url("_assets/img/pull-up.png");
  }
  .audience-nav.expand {
    height: 375px;
  }
  .audience-nav.expand .audience ul {
    display: block;
  }
  .audience-nav.expand .audience li:first-of-type ul {
    border-left: #555 solid 1px;
    left: -1px;
  }
}

.audience-nav-list {
  display: none;
  list-style: none;
  margin-left: 0;
}
@media screen and (min-width: 840px) {
  .audience-nav-list {
    display: block;
    text-align: center;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 840px) {
  .audience {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.875em;
    text-transform: uppercase;
  }
  .audience > li {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: #555 solid 1px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1.25em;
    position: relative;
    margin: 20px 0;
    width: 19%;
  }
  .audience > li:first-of-type {
    border-left: #555 solid 1px;
    width: 24%;
  }
  .no-flexbox .audience > li {
    float: left;
    display: block;
  }
  .audience ul {
    background-color: #3c3d3d;
    border-right: #555 solid 1px;
    display: none;
    height: 315px;
    left: 0;
    line-height: 1;
    list-style: none;
    margin-left: 0;
    padding: 20px 20%;
    position: absolute;
    text-align: left;
    top: 100%;
    right: -1px;
    z-index: 1;
  }
  .audience ul a {
    color: #fff;
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1;
    padding: 8px 0;
    display: block;
    text-transform: none;
    letter-spacing: 1px;
  }
  .audience a {
    color: #fff;
    display: inline-block;
    padding: 0 10px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    max-width: 100%;
  }
  .audience a:hover:before, .audience a:hover {
    text-decoration: underline;
  }
  .audience > li > a:before {
    content: 'for\a0';
    display: inline-block;
    font-family: "Libre Baskerville", "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: lowercase;
  }
}
/*   *** Stories ***   */
.stories-intro {
  padding: 30px 0 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .stories-intro {
    padding: 60px 0;
  }
}

.cta {
  color: #fff;
  font-size: 0.875em;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 5px;
  text-transform: uppercase;
}

.stories {
  background-color: #eeeeee;
  padding: 0 0 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .stories {
    padding: 0;
  }
}
.stories .story-wrapper {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .stories .story-wrapper {
    width: 50%;
  }
  .stories .story-wrapper .post {
    margin-right: 30px;
  }
  .stories .story-wrapper:first-child .post {
    margin-left: 30px;
    margin-right: 0;
  }
}
.stories .post {
  position: relative;
  margin: 0 25px;
}
@media screen and (min-width: 768px) {
  .stories .post {
    margin: 0;
  }
}
.stories .post .post-image {
  margin: 0;
  line-height: 0;
}
.stories .post .post-image img {
  position: relative;
  z-index: -1;
  display: block;
  width: 100%;
  max-width: none;
}
.stories .post .post-image .image-wrapper {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.stories .post .post-image .image-wrapper:before {
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.65) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 );
  /* IE6-9 */
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.stories .post .entry-footer {
  background-color: transparent;
  bottom: 0;
  left: 0;
  padding: 0 30px 20px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 1080px) {
  .stories .post .entry-footer {
    padding: 0 30px 30px;
  }
}
.stories .post .entry-footer h3 {
  line-height: 1.4em;
  margin-top: 0;
}
@media screen and (max-width: 1080px) {
  .stories .post .entry-footer h3 {
    margin-bottom: 0.3em;
  }
}
@media screen and (max-width: 420px) {
  .stories .post .entry-footer h3 {
    font-size: 1.1em;
  }
}
.stories .container {
  position: relative;
  top: 50px;
}
@media screen and (min-width: 768px) {
  .stories .container {
    top: -50px;
  }
}
.stories .cta-source {
  background-image: url("_assets/img/static/sourcebox-blue.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
  -ms-background-size: cover;
  background-size: cover;
  color: #fff;
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 0.875em;
  font-style: italic;
  min-height: 100px;
  margin: 0 auto;
  padding: 15px 25px;
  position: absolute;
  left: 0;
  right: 0;
  top: -90px;
  width: 80%;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .stories .cta-source {
    font-size: 1em;
    height: 220px;
    padding: 25px;
    top: -30px;
    width: 250px;
  }
}
@media screen and (min-width: 840px) {
  .stories .cta-source {
    font-size: 1.2em;
    height: 280px;
    padding: 50px 15px;
  }
}
.stories .cta-source .explore {
  color: #fff;
  display: block;
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .stories .cta-source .explore {
    padding-top: 40px;
  }
}

.slice-intro .keyword {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.slice-intro h2 {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-weight: 500;
  text-transform: none;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .slice-intro {
    margin: 0 auto 60px;
  }
}
@media screen and (min-width: 1080px) {
  .slice-intro {
    width: 960px;
  }
}

/* Variables for the size of boxes */
.pannel-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* edit: added z-index */
  z-index: 10;
  /* edit: fixes overlap error in IE7/8,
   make sure you have an empty gif */
  background-image: url("_assets/img/transparent.gif");
}
.pannel-link:hover {
  background-color: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  opacity: 0.3;
}

.pannel-text {
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  top: -10px;
}

/**
* social: the largest container of the social part;
*
*/
.social {
  padding: 40px 0 0;
  background-color: #eeeeee;
  color: #fff;
  margin: auto;
  /* The red part under each box*/
}
@media screen and (min-width: 768px) {
  .social {
    padding: 0;
  }
}
.social .container {
  margin-bottom: -40px;
  line-height: 0;
  position: relative;
}
.social h2 {
  color: #fff;
}
.social h2 .keyword {
  color: #fff;
}
.social .bold {
  font-weight: 600;
}
.social .italics {
  font-style: italic;
}
.social .social-text {
  line-height: 1.25em;
  overflow: hidden;
}
.social .social-source {
  font-size: 0.7em;
  font-weight: 800;
  line-height: 2.5em;
  padding: 2px 15px 0;
  height: 40px;
  width: 100%;
  color: #fff;
}

.social-share {
  background-color: #fff;
  padding: 80px 0 40px;
  /* Where social network logos are */
}
.social-share .sns {
  text-align: center;
}
.social-share .social-icons {
  display: inline-block;
}

/* The third box styling */
.social-item.item2 {
  position: relative;
  margin: 0;
  overflow: hidden;
  /* The inner container that include .happenings and .social-event */
}
.social-item.item2 .item2-container {
  padding: 2%;
}
.social-item.item2 .happenings-title {
  display: inline-block;
  width: 100%;
}
.social-item.item2 .social-happenings {
  display: inline-block;
  color: #3c3d3d;
  float: left;
  width: 100%;
  /* if greater than this break, align inner divs side by side. Otherwise, align vertically */
}
@media screen and (min-width: 768px) {
  .social-item.item2 .social-happenings {
    width: 47%;
    height: 100%;
  }
}
.social-item.item2 .social-event {
  width: 100%;
  display: inline-block;
  position: relative;
  /* if greater than this break, align inner divs side by side. Otherwise, align vertically */
}
.social-item.item2 .social-event .social-event-img {
  background-color: #3c3d3d;
  overflow: hidden;
}
.social-item.item2 .social-event .social-event-summary {
  padding: 15px 10px 15px 10px;
  line-height: 110%;
  background-color: #3c3d3d;
}
@media screen and (min-width: 768px) {
  .social-item.item2 .social-event {
    float: right;
    width: 47%;
  }
}
.social-item.item2 .happenings {
  font-weight: bold;
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.social-item.item2 .events {
  padding: 10px 0;
  line-height: 130%;
  height: 25%;
  overflow: hidden;
  display: block;
}
@media screen and (min-width: 1080px) and (max-width: 1380px) {
  .social-item.item2 .events {
    padding: 5px 0 10px;
    font-size: 0.85em;
  }
}
.social-item.item2 .events a {
  color: #555;
}
.social-item.item2 .events a:hover {
  color: #a51417;
}
.social-item.item2 .events .date {
  color: #a51417;
  float: left;
  width: 20%;
  text-align: center;
  font-weight: 200;
}
.social-item.item2 .events .date .month {
  font-size: 1.2em;
  text-transform: uppercase;
}
.social-item.item2 .events .date .day {
  font-size: 2em;
  line-height: 1em;
}
.social-item.item2 .events .schedule {
  padding-left: 5%;
  padding-right: 10px;
  float: right;
  width: 80%;
  text-align: left;
  line-height: 1.125em;
}
.social-item.item2 .events .schedule .time {
  font-size: 0.9em;
  line-height: 1.5em;
}
.social-item.item2 hr {
  margin: 0;
  color: #c8c8c8;
}

/*Default Size: 250*400*/
.social-item {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 1080px) {
  .social-item {
    margin-bottom: 0;
  }
}
.social-item .social-img {
  background-color: #000;
}
.social-item .social-text {
  padding-top: 5%;
  height: 120px;
}

.item1 .social-text {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  line-height: 1.5;
}

.social-embed {
  background-color: #105f86;
}

.social-athletics {
  background-color: #a51417;
}

.social-events {
  background-color: #fff;
}
.social-events .social-source {
  background-color: #eeeeee;
  color: #a51417;
}
@media screen and (min-width: 768px) {
  .social-events .social-source {
    padding-right: 50%;
  }
}

/* First box and second box img ratio */
/* img ratio= width/height */
/* Third box ratio is set as 1:1; */
.social-container {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-size: 16px;
  /*Default font size*/
}
.social-container .leftalign {
  float: left;
}
.social-container .rightalign {
  float: right;
}
.social-container .social-img {
  overflow: hidden;
}
.social-container .social-item {
  margin-right: auto;
  margin-left: auto;
  width: 280px;
}
.social-container .social-item .social-img {
  height: 280px;
}
.social-container .social-item .social-text {
  display: inline-block;
  padding: 15px;
}
.social-container .item2 {
  width: 280px;
  display: block;
}
.social-container .item2 .social-happenings {
  margin-left: 10px;
  margin-bottom: 20px;
}
.social-container .item2 .social-event-img {
  height: 268.8px;
}
.social-container .item2 .social-event-summary {
  text-align: center;
}
.social-container .event-location {
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 0.5em;
  text-transform: uppercase;
}
.social-container .event-title {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1em;
  font-style: italic;
  line-height: 1.5em;
  padding-bottom: 0.5em;
}
.social-container .event-date {
  font-size: 1em;
}
@media screen and (min-width: 600px) {
  .social-container .social-item {
    float: none;
    width: 336px;
  }
  .social-container .social-item .social-img {
    height: 336px;
  }
  .social-container .item2 {
    width: 336px;
    margin-right: auto;
    margin-left: auto;
  }
  .social-container .item2 .social-event-img {
    height: 314.0352px;
  }
  .social-container .item2 .social-happenings {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .social-container .social-item {
    width: 280px;
  }
  .social-container .social-item .social-img {
    height: 280px;
  }
  .social-container .item0 {
    float: left;
    margin-left: 94px;
  }
  .social-container .item1 {
    float: right;
    margin-right: 94px;
  }
  .social-container .item2 {
    float: none;
    width: 580px;
    margin-right: auto;
    margin-left: auto;
  }
  .social-container .item2 .item2-container {
    height: 400px;
  }
  .social-container .item2 .social-event-img {
    height: 261.696px;
  }
  .social-container .item2 .social-event-summary {
    height: 152px;
  }
  .social-container .item2 .social-happenings {
    margin-bottom: 0px;
    height: 388px;
  }
}
@media screen and (min-width: 840px) {
  .social-container .item0 {
    float: left;
    margin-left: 130px;
  }
  .social-container .item1 {
    float: right;
    margin-right: 130px;
  }
}
@media screen and (min-width: 1080px) {
  .social-container .social-item {
    width: 224px;
  }
  .social-container .social-item .social-img {
    height: 224px;
  }
  .social-container .item0, .social-container .item1 {
    float: left;
    margin-left: 0px;
    margin-right: 20px;
  }
  .social-container .item2 {
    float: none;
    width: 472px;
  }
  .social-container .item2 .item2-container {
    height: 344px;
  }
  .social-container .item2 .social-event-img {
    height: 209.3568px;
  }
  .social-container .item2 .social-event-summary {
    height: 153px;
  }
  .social-container .item2 .social-happenings {
    height: 339.21999px;
  }
}
@media screen and (min-width: 1380px) {
  .social-container .social-item {
    width: 280px;
  }
  .social-container .social-item .social-img {
    height: 280px;
  }
  .social-container .item0 {
    float: left;
    margin-left: 0px;
    margin-right: 50px;
  }
  .social-container .item1 {
    float: left;
    margin-right: 50px;
  }
  .social-container .item2 {
    position: relative;
    width: 600px;
  }
  .social-container .item2 .item2-container {
    height: 400px;
  }
  .social-container .item2 .social-event-img {
    height: 276.08928px;
  }
  .social-container .item2 .social-event-summary {
    height: 136px;
  }
  .social-container .item2 .social-happenings {
    height: 360px;
  }
}

/*Image URL*/
#facebook {
  display: inline-block;
  height: 21px;
  width: 12px;
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets/img/social-icons-small/icon-facebook-sm.png");
  margin-left: 10px;
  margin-right: 15px;
}

#facebook:hover {
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets//img/social-icons-small/icon-facebook-sm-hover.png");
}

#twitter {
  display: inline-block;
  margin-right: 15px;
  height: 21px;
  width: 21px;
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets/img/social-icons-small/icon-twitter-sm.png");
}

#twitter:hover {
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets//img/social-icons-small/icon-twitter-sm-hover.png");
}

#instagram {
  margin-right: 15px;
  display: inline-block;
  height: 21px;
  width: 21px;
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets/img/social-icons-small/icon-instagram-sm.png");
}

#instagram:hover {
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets//img/social-icons-small/icon-instagram-sm-hover.png");
}

#youtube {
  margin-right: 15px;
  display: inline-block;
  height: 21px;
  width: 21px;
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets/img/social-icons-small/icon-youtube-sm.png");
}

#youtube:hover {
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets//img/social-icons-small/icon-youtube-sm-hover.png");
}

#flickr {
  margin-right: 15px;
  display: inline-block;
  height: 21px;
  width: 21px;
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets/img/social-icons-small/icon-flickr-sm.png");
}

#flickr:hover {
  background-image: url("http://wustl.dev/wp-content/themes/wustl_edu/_assets//img/social-icons-small/icon-flickr-sm-hover.png");
}

/*   *** Campaign ***   */
.campaign {
  color: #fff;
  padding: 40px 0;
  position: relative;
  text-align: center;
  background-color: #a51417;
  background-image: url("_assets/img/static/bg-campaign-narrow.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .campaign {
    background-image: url("_assets/img/static/bg-campaign-wide.png");
  }
}
@media screen and (min-width: 768px) {
  .campaign {
    text-align: left;
  }
}
.campaign .container {
  padding: 0 20px;
}
@media screen and (min-width: 1380px) {
  .campaign .container {
    width: 960px;
  }
}
.campaign .leading-together {
  padding-bottom: 40px;
  width: 407px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .campaign .leading-together {
    border-right: #fff solid 1px;
    float: left;
    margin-right: 30px;
    padding: 30px 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .campaign .leading-together {
    padding: 44px 30px;
  }
}
.campaign h3 {
  padding-left: 10px;
  margin-top: 0;
}
.campaign p {
  line-height: 1.25em;
  margin-bottom: 0;
}

/*   *** Thought Leadership ***   */
.thought-leadership {
  padding: 30px 0 55px;
}
@media screen and (min-width: 768px) {
  .thought-leadership {
    padding: 40px 0;
  }
}
.thought-leadership .slice-intro {
  text-align: center;
}

.people {
  background-color: #eeeeee;
}
.people .container {
  padding: 0 25px;
  position: relative;
  top: -50px;
}
@media screen and (min-width: 768px) {
  .people .container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 1380px) {
  .people .grid-1-2 {
    margin-left: 6.5%;
    margin-left: calc( 8rem * 1 );
    width: 46.75%;
    width: calc( 50% - 0.5 * 8rem );
  }
}
.people .wu-expert {
  background-color: #3c9492;
  color: #fff;
  min-height: 460px;
  position: relative;
}
.people .wu-expert .expert-image {
  line-height: 0;
  margin: 0;
  height: 400px;
  max-height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 1080px) {
  html:not(.no-rgb) .people .wu-expert .expert-image {
    height: 100%;
    max-height: none;
    overflow: hidden;
    position: absolute;
    width: 50%;
  }
}
.people .wu-expert .expert-content {
  padding: 20px;
}
@media screen and (min-width: 1080px) {
  html:not(.no-rgb) .people .wu-expert .expert-content {
    float: right;
    width: 50%;
  }
}
.people .wu-expert .expert-content .expert-title {
  line-height: 1.35em;
  margin-top: 0;
}
.people .wu-expert .expert-content p {
  margin-bottom: 20px;
  padding: 0;
}
.people .wu-expert a {
  color: #fff;
}
.people .wu-people {
  background-color: #ffcc00;
  min-height: 460px;
  padding: 20px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.people .wu-people a {
  color: #555;
}
.people .wu-people .duoquo {
  background-color: rgba(0, 0, 0, 0.1);
  font-family: "Libre Baskerville", "Times New Roman", serif;
  height: 50px;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  width: 50px;
}
.people .wu-people .duoquo:after {
  color: #fff;
  content: '\201C';
  font-size: 3em;
  left: 13px;
  position: relative;
  top: 5px;
}
.people .wu-people .people-quote {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1.25em;
  font-style: italic;
  max-width: 100%;
  padding: 45px 15px 125px;
}
@media screen and (min-width: 768px) {
  .people .wu-people .people-quote {
    padding: 40px 40px 110px;
  }
}
.people .wu-people .people-footer {
  background-color: transparent;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 420px) {
  .people .wu-people .people-footer {
    padding-right: 20px;
  }
}
.people .wu-people .person-image {
  float: left;
  line-height: 0;
  margin: 0 15px 0 0;
  width: 40%;
}
@media screen and (min-width: 420px) {
  .people .wu-people .person-image {
    width: 150px;
    margin: 0 20px 0 0;
  }
}
.people .wu-people .person-name {
  color: #555;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.25;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 420px) {
  .people .wu-people .person-name {
    padding-top: 10px;
  }
}
@media screen and (min-width: 600px) {
  .people .wu-people .person-name {
    padding-top: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .people .wu-people .person-name {
    padding-top: 20px;
  }
}
.people .wu-people .person-accolades {
  color: #555;
  font-size: 0.875em;
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0;
}

/*   *** BTN ***   */
.btn {
  padding: 0 15px 60px;
  position: relative;
  text-align: center;
  background-color: #eeeeee;
  margin-bottom: 40px;
}

.btn-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 420px;
  margin: 0 auto;
}
@media screen and (min-width: 840px) {
  .btn-flex {
    max-width: 960px;
  }
}
.no-flexbox .btn-flex {
  text-align: center;
}

.bythenumbers {
  display: inline-block;
  line-height: 1em;
  padding: 5px;
  vertical-align: top;
  width: 155px;
  text-align: center;
}
.bythenumbers a:hover .btn-teaser {
  color: #a51417;
}
.bythenumbers .btn-teaser {
  color: #3c3d3d;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8em;
  line-height: 1em;
}
.bythenumbers .number {
  margin-bottom: 5px;
}

/*   *** Community ***   */
.community {
  color: #fff;
  line-height: 0;
  padding: 50px 0;
  text-align: center;
  display: block;
  background-color: #a51417;
  background-image: url("_assets/img/static/bg-cta-narrow.png");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .community {
    background-image: url("_assets/img/static/bg-cta-wide.png");
  }
}
@media screen and (min-width: 768px) {
  .community .grid-1-2 {
    margin-bottom: 0;
  }
}
.community .cta {
  border: #fff solid 1px;
  color: #fff;
  display: block;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 30px;
  padding: 50px;
  text-transform: uppercase;
}
.community .cta .fancy {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
}

/*   *** University Council ***   */
.ucouncil {
  margin-bottom: 25px;
}

/*   *** Webcams ***   */
.webcam-list {
  list-style: none;
  margin: 0 -3px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.webcam-list li {
  width: 33.3333%;
  padding: 0px 3px 6px;
  text-align: center;
}
.no-flexbox .webcam-list li {
  float: left;
}
@media screen and (min-width: 600px) {
  .webcam-list li {
    width: 20%;
  }
}

/*   *** Directory ***   */
#dirform label {
  display: inline-block;
  width: 180px;
}
@media screen and (max-width: 600px) {
  #dirform label {
    width: 100%;
  }
}

#dirform input[type="text"] {
  margin: 5px 0;
  width: 328px;
  -webkit-appearance: none;
  padding: 2px 5px;
  border-radius: 0;
  border: 1px solid #c8c8c8;
}
@media screen and (max-width: 420px) {
  #dirform input[type="text"] {
    width: 100%;
  }
}

#dirform .button {
  margin: 10px 0 0 184px;
}
#dirform .button:hover {
  text-decoration: none;
}
#dirform .button input {
  margin: 0;
  -webkit-appearance: none;
}
@media screen and (max-width: 600px) {
  #dirform .button {
    margin-left: 0;
  }
}

.entry {
  margin: 20px 0px;
}
.entry .name {
  font-weight: 600;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.alignleft,
.alignright {
  margin: 0 0 1.5em;
}

@media screen and (min-width: 420px) {
  .alignleft {
    display: inline;
    float: left;
    margin: 0.4em 1.5em 1em 0;
    max-width: 45%;
  }

  .alignright {
    display: inline;
    float: right;
    margin: 0.4em 0 1em 1.5em;
    max-width: 45%;
  }
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.5em;
}

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  background-color: #c8c8c8;
  margin: 0 5px;
}

.site-main .gallery {
  margin-bottom: 1.5em;
}

.site-main .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}

.site-main .gallery dd,
.site-main .gallery figcaption {
  margin: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
  max-width: 100%;
}

/* Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

/* Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
  max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
  display: none;
}

/* Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
  display: block;
}

header .masthead {
  background-color: #a51417;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 840px) {
  header .masthead {
    background-color: #3c3d3d;
  }
}
@media screen and (min-width: 840px) {
  .home header .masthead {
    background: rgba(0, 0, 0, 0.5);
    position: relative;
  }
}
@media screen and (min-width: 1080px) {
  .home header .masthead {
    height: 81px;
  }
}

.head-logo {
  padding: 18px 70px 9px 13px;
}
.head-logo .head-logo-image {
  width: auto;
}
@media screen and (min-width: 1080px) and (max-width: 1380px) {
  .head-logo .head-logo-image {
    width: 300px;
  }
}
@media screen and (min-width: 1380px) {
  .head-logo .head-logo-image {
    width: auto;
  }
}
.head-logo .head-logo-image[src$=".png"] {
  max-width: none;
  height: auto;
}
.home .head-logo {
  background-color: transparent;
}
@media screen and (min-width: 840px) {
  .head-logo {
    background-color: transparent;
    display: block;
    text-align: center;
    padding: 0;
  }
  .head-logo a {
    height: 56px;
    display: inline-block;
  }
  .head-logo a .head-logo-image {
    margin-top: 13px;
  }
  .home .head-logo a .head-logo-image {
    margin-top: 18px;
  }
}
@media screen and (min-width: 1080px) {
  .head-logo {
    display: inline-block;
    text-align: left;
    float: left;
  }
  .home .head-logo a .head-logo-image {
    margin: 24px 0 0;
  }
}

.masthead-top {
  background-color: #a51417;
  display: none;
}
.masthead-top .directory, .masthead-top .tactical, .masthead-top .physicians {
  display: none;
}
@media screen and (min-width: 840px) {
  .masthead-top {
    display: block;
    font-size: 0.85em;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 3px;
  }
  .masthead-top a {
    color: #fff;
    padding: 0 10px;
    text-decoration: none;
  }
  .masthead-top a:hover {
    text-decoration: underline;
  }
  .masthead-top .directory {
    float: right;
    padding-right: 0;
  }
  .masthead-top .directory:before {
    content: url(_assets/img/icon-directory.svg);
    width: 26px;
    height: 20px;
    display: inline-block;
    padding-right: 6px;
    vertical-align: middle;
  }
  .no-svg .masthead-top .directory:before {
    content: url(_assets/img/icon-directory.png);
  }
  .masthead-top .physicians {
    float: right;
    padding-left: 0;
  }
  .masthead-top .physicians:before {
    content: '|';
    display: inline-block;
    padding: 0 20px;
    position: relative;
    top: -1px;
  }
  .masthead-top .physicians:hover:before {
    text-decoration: none;
  }
  .masthead-top .tactical, .masthead-top .directory, .masthead-top .physicians {
    display: block;
    text-transform: uppercase;
  }
}

html.stick {
  overflow: hidden;
}

.home .cd-dropdown-wrapper {
  z-index: 1;
}
.cd-dropdown-wrapper a {
  color: #fff;
  text-decoration: none;
}
.cd-dropdown-wrapper a:hover {
  text-decoration: underline;
}
.cd-dropdown-wrapper .current_page_ancestor > a:not(.child-nav), .cd-dropdown-wrapper .current_page_item > a:not(.child-nav) {
  text-decoration: underline;
}
.cd-dropdown-wrapper .cd-secondary-dropdown {
  background-color: #3c3d3d;
}
@media screen and (min-width: 840px) {
  .cd-dropdown-wrapper {
    float: none;
    text-align: center;
    position: relative;
  }
  .cd-dropdown-wrapper .cd-secondary-dropdown {
    background-color: transparent;
    width: auto;
  }
  .cd-dropdown-wrapper .cd-secondary-dropdown > li {
    white-space: nowrap;
  }
  .cd-dropdown-wrapper .desktop-search #nav-search {
    display: none;
  }
  .cd-dropdown-wrapper .desktop-search #search-li {
    display: block;
    padding-right: 70px;
    position: absolute;
    width: 100%;
    height: 60px;
    z-index: 1;
  }
  .cd-dropdown-wrapper .desktop-search #search-li input {
    background: #3c3d3d;
    border: #c8c8c8 solid 1px;
    color: #fff;
    outline: none;
    -webkit-appearance: none;
    padding: 10px;
    width: 100%;
    margin: 5px 0 20px 9px;
    z-index: 1;
  }
  .cd-dropdown-wrapper .desktop-search .desktop-search-close {
    background-color: #3c3d3d;
    display: block;
    font-size: 1.25em;
    position: absolute;
    right: 0;
    top: 0;
    padding: 11px 16px 11px;
    cursor: pointer;
    line-height: 24px;
    height: 48px;
    margin-top: 5px;
    transition: all 0.1s;
  }
  .cd-dropdown-wrapper .desktop-search .desktop-search-close img {
    margin-bottom: -4px;
    max-width: none;
  }
  .home .cd-dropdown-wrapper .desktop-search .desktop-search-close {
    background-color: transparent;
  }
  .cd-dropdown-wrapper .desktop-search .desktop-search-close:hover {
    text-decoration: none;
    background-color: #555;
  }
  .cd-dropdown-wrapper .nav-search {
    cursor: pointer;
  }
  .cd-dropdown-wrapper .nav-search img {
    margin-bottom: -4px;
    max-width: none;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content {
    text-align: center;
    margin: 0;
    list-style: none;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content a {
    color: #fff;
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.875em;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links {
    background-color: #3c3d3d;
    display: inline-block;
    position: relative;
    padding: 15px 20px;
    height: 57px;
    transition: all 0.1s;
  }
  .home .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links {
    background-color: transparent;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links:hover {
    background: #555;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links > a {
    font-family: "Libre Baskerville", "Times New Roman", serif;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul {
    margin: 0;
    padding: 5px 0 15px;
    background: #555;
    position: absolute;
    top: 57px;
    left: 0;
    font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transiton: all 0.1s;
    transition: all 0.1s;
    z-index: 1;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul.last-dropdown {
    right: 0;
    left: auto;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul li.nav-main-item {
    background: #555;
    display: block;
    color: #fff;
    text-shadow: 0 -1px 0 #000;
    text-align: left;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul li.nav-main-item a {
    padding: 1px 20px 5px;
    display: block;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul li.nav-main-item a:hover {
    background: #666;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul li.nav-main-item .child-nav {
    display: none;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul li.school {
    background: #4b4c4c;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul li.school a {
    padding-left: 30px;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul li.school:last-child {
    margin-bottom: -15px;
    padding-bottom: 15px;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links ul .separator:before {
    content: 'Schools';
    background: #4b4c4c;
    width: 100%;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0 4px 20px;
    display: block;
    font-size: 0.8em;
  }
}
@media screen and (min-width: 1080px) {
  header .cd-dropdown-wrapper {
    display: inline-block;
    float: right;
    text-align: left;
  }
  .cd-dropdown-wrapper .head-logo-image {
    width: auto;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content.desktop-search {
    margin-right: 45px;
    text-align: left;
  }
  .cd-dropdown-wrapper .desktop-search input {
    margin-top: 5px;
  }
  .cd-dropdown-wrapper .desktop-search .desktop-search-close {
    margin: 5px 5px 20px;
  }
  .home .cd-dropdown-wrapper #search-li {
    margin: 10px 0;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links {
    padding: 15px;
  }
  .home .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1380px) {
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links {
    padding: 15px 20px;
  }
  .cd-dropdown-wrapper ul.cd-dropdown-content li.main-links > a {
    font-size: 0.95em;
  }
}

@media screen and (min-width: 840px) {
  .mobile-only, .child-nav, .cd-dropdown-wrapper ul ul ul {
    display: none;
  }
}

@media screen and (max-width: 839px) {
  	/* --------------------------------
  
  	Customizations
  
  	-------------------------------- */
  .cd-dropdown-wrapper ul {
    margin-left: 0px;
  }
  .cd-dropdown-wrapper ul a {
    text-decoration: none;
  }
  .cd-dropdown-wrapper ul a:hover {
    text-decoration: underline;
  }

  .audiance {
    text-transform: uppercase;
  }
  .audiance a:before {
    content: 'for\a0';
    display: inline-block;
    text-transform: lowercase;
    font-style: italic;
  }
  .audiance a:hover:before {
    text-decoration: underline;
  }

  .nav-search, .cd-dropdown-content .audiance ul, .cd-dropdown-content .desktop-search-close {
    display: none;
  }

  	/* --------------------------------
  
  	Primary style
  
  	-------------------------------- */
  /* remove “X” from search input field */
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }

  input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
  }

  input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
  }

  	/* --------------------------------
  
  	Main Components
  
  	-------------------------------- */
  header {
    background: #fff;
  }
  header .container {
    position: relative;
  }

  .cd-dropdown-wrapper {
    display: inline-block;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .cd-dropdown-trigger {
    display: block;
    position: relative;
    padding: 23px 20px;
    background-color: #a51417;
    color: #fff;
    font-size: 1.25em;
  }
  .cd-dropdown-trigger img {
    display: block;
  }
  .cd-dropdown-wrapper .cd-dropdown-trigger:hover {
    text-decoration: none;
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .cd-dropdown-trigger {
    font-size: 1.5rem;
  }
  .cd-dropdown-trigger.dropdown-is-active {
    background-color: #a51417;
  }
  .no-touch .cd-dropdown-trigger.dropdown-is-active:hover {
    background-color: #bc171a;
  }
  .cd-dropdown-trigger.dropdown-is-active::before, .cd-dropdown-trigger.dropdown-is-active::after {
    /* transform the arrow into a 'X' */
    width: 14px;
  }
  .cd-dropdown-trigger.dropdown-is-active::before {
    /* transform the arrow into a 'X' */
    -webkit-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .cd-dropdown-trigger.dropdown-is-active::after {
    /* transform the arrow into a 'X' */
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 839px) {
  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 839px) and (min-width: 768px) {
  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    height: 60px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a {
    height: 50px;
    line-height: 50px;
  }
}

@media screen and (max-width: 839px) {
  .cd-dropdown h2,
  .cd-dropdown-content a,
  .cd-dropdown-content ul a,
  .cd-dropdown-content .cd-divider {
    padding: 0 20px;
  }

  .admin-bar #wpadminbar {
    position: fixed;
  }

  .cd-dropdown {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3c3d3d;
    color: #fff;
    visibility: hidden;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: -webkit-transform 0.5s 0s, visibility 0s 0.5s;
    transition: transform 0.5s 0s, visibility 0s 0.5s;
  }
  .admin-bar .cd-dropdown {
    top: 40px;
  }
  .cd-dropdown h2 {
    /* dropdown title - mobile version only */
    position: relative;
    z-index: 1;
    color: #767777;
    background-color: #3c3d3d;
    border-bottom: 1px solid #4b4c4c;
  }
  .cd-dropdown .cd-close {
    /* 'X' close icon - mobile version only */
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
  }
  .cd-dropdown .cd-close::after, .cd-dropdown .cd-close::before {
    /* this is the 'X' icon */
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    height: 20px;
    width: 2px;
    background-color: #fff;
  }
  .cd-dropdown .cd-close::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .cd-dropdown .cd-close::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .cd-dropdown .tactical-mobile .cd-close {
    padding: 0;
  }
  .cd-dropdown.dropdown-is-active {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: -webkit-transform 0.5s 0s, visibility 0s 0s;
    transition: transform 0.5s 0s, visibility 0s 0s;
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .cd-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    /* reset style*/
    height: auto;
    width: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background-color: #fff;
    color: #3c3d3d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
  }
  .open-to-left .cd-dropdown {
    /* use the .open-to-left class if you want to open the dropdown on the left */
    right: 0;
    left: auto;
  }
  .cd-dropdown h2, .cd-dropdown .cd-close {
    /* on desktop - hide title and 'X' */
    display: none;
  }
  .cd-dropdown.dropdown-is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: opacity 0.3s 0s, visibility 0.3s 0s, -webkit-transform 0.3s 0s;
    transition: opacity 0.3s 0s, visibility 0.3s 0s, transform 0.3s 0s;
  }
}

@media screen and (max-width: 839px) {
  .cd-dropdown-content, .cd-dropdown-content ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: auto;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
  }
  .cd-dropdown-content a, .cd-dropdown-content ul a {
    display: block;
    color: #fff;
    /* truncate text with ellipsis if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-top-width: 1px;
    border-color: #4b4c4c;
    border-style: solid;
  }
  .cd-dropdown-content .separator:before, .cd-dropdown-content ul .separator:before {
    content: 'Schools';
    background: #4b4c4c;
    width: 100%;
    left: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0px 2px 20px;
    display: block;
    font-size: 0.8em;
  }
  .cd-dropdown-content .school, .cd-dropdown-content ul .school {
    background: #4b4c4c;
  }
  .cd-dropdown-content .school a, .cd-dropdown-content ul .school a {
    padding-left: 30px;
    height: 45px;
    line-height: 45px;
  }
  .cd-dropdown-content .school:last-child, .cd-dropdown-content ul .school:last-child {
    padding-bottom: 15px;
  }
  .cd-dropdown-content .tactical-mobile, .cd-dropdown-content ul .tactical-mobile {
    background-color: #a51417;
    padding-left: 10px;
    font-size: 0.75em;
    font-weight: 800;
    letter-spacing: 1.5px;
  }
  .cd-dropdown-content .tactical-mobile a, .cd-dropdown-content ul .tactical-mobile a {
    border-top-width: 0;
    display: inline;
    color: #fff;
    padding: 0 15px;
    text-decoration: none;
    text-transform: uppercase;
  }
  .cd-dropdown-content .tactical-mobile a:hover, .cd-dropdown-content ul .tactical-mobile a:hover {
    text-decoration: underline;
  }
  .cd-dropdown-content li:first-of-type > a, .cd-dropdown-content ul li:first-of-type > a {
    border-top-width: 0;
  }
  .cd-dropdown-content li:last-of-type > a, .cd-dropdown-content ul li:last-of-type > a {
    border-bottom-width: 1px;
  }
  .cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #2a2a2a;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #767777;
    text-transform: uppercase;
  }
  .cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
    border-top-width: 0;
  }
  .cd-dropdown-content a, .cd-dropdown-content .cd-search, .cd-dropdown-content .cd-divider, .cd-dropdown-content ul a, .cd-dropdown-content ul .cd-search, .cd-dropdown-content ul .cd-divider {
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
  }
  .cd-dropdown-content.is-hidden, .cd-dropdown-content ul.is-hidden {
    /* push the secondary dropdown items to the right */
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
    /* lower down the dropdown items opacity - when secondary dropdown slides in or for dropdown items hidden on the right */
    opacity: 0;
  }
  .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out .audiance > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out .audiance > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
    /* push the dropdown items to the left when secondary dropdown slides in */
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .dropdown-is-active .cd-dropdown-content, .dropdown-is-active .cd-dropdown-content ul {
    -webkit-overflow-scrolling: touch;
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .cd-dropdown-content, .cd-dropdown-content ul {
    padding-top: 0;
    overflow: visible;
  }
  .cd-dropdown-content a, .cd-dropdown-content ul a {
    color: #3c3d3d;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    border-color: #ebebeb;
  }
  .cd-dropdown-content .cd-divider, .cd-dropdown-content ul .cd-divider {
    background-color: transparent;
    color: #b3b3b3;
    border-top: 1px solid #ebebeb;
  }
  .cd-dropdown-content .cd-divider + li > a, .cd-dropdown-content ul .cd-divider + li > a {
    border-top-width: 1px;
  }
  .cd-dropdown-content.is-hidden > li > a, .cd-dropdown-content.is-hidden > li > .cd-search, .cd-dropdown-content.is-hidden > .cd-divider, .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider, .cd-dropdown-content ul.is-hidden > li > a, .cd-dropdown-content ul.is-hidden > li > .cd-search, .cd-dropdown-content ul.is-hidden > .cd-divider, .cd-dropdown-content ul.move-out > li > a, .cd-dropdown-content ul.move-out > li > .cd-search, .cd-dropdown-content ul.move-out > .cd-divider {
    /* reset mobile style */
    opacity: 1;
  }
}

@media screen and (max-width: 839px) {
  .cd-dropdown-content .see-all a {
    /* different style for the See all links */
    color: #a51417;
  }
  .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    /* items with picture (or icon) and title */
    height: 80px;
    line-height: 80px;
  }
  .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item h3, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
    /* truncate text with ellipsis if too long */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
    padding-left: 90px;
  }
  .cd-dropdown-content .cd-dropdown-gallery img {
    position: absolute;
    display: block;
    height: 40px;
    width: auto;
    left: 20px;
    top: 50%;
    margin-top: -20px;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    padding-left: 75px;
    position: relative;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
    color: #3c3d3d;
    font-size: 1.3rem;
    /* hide description on small devices */
    display: none;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
    /* item icon */
    content: '';
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-1::before {
    background-image: url("../img/nucleo-icon-1.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-2::before {
    background-image: url("../img/nucleo-icon-2.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-3::before {
    background-image: url("../img/nucleo-icon-3.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-4::before {
    background-image: url("../img/nucleo-icon-4.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-5::before {
    background-image: url("../img/nucleo-icon-5.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-6::before {
    background-image: url("../img/nucleo-icon-6.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-7::before {
    background-image: url("../img/nucleo-icon-7.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-8::before {
    background-image: url("../img/nucleo-icon-8.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-9::before {
    background-image: url("../img/nucleo-icon-9.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-10::before {
    background-image: url("../img/nucleo-icon-10.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-11::before {
    background-image: url("../img/nucleo-icon-11.svg");
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item.item-12::before {
    background-image: url("../img/nucleo-icon-12.svg");
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .cd-dropdown-content {
    /* reset mobile style */
    position: static;
    height: auto;
    width: 280px;
  }
  .cd-dropdown-content > li:last-of-type a {
    border-bottom: none;
  }
  .no-touch .cd-dropdown-content > li:not(.has-children) a:hover {
    color: #a51417;
  }
  .cd-dropdown-content.move-out > li > a, .cd-dropdown-content.move-out > li > .cd-search, .cd-dropdown-content.move-out > .cd-divider {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-dropdown-content .cd-secondary-dropdown, .cd-dropdown-content .cd-dropdown-gallery, .cd-dropdown-content .cd-dropdown-icons {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    left: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  }
  .cd-dropdown-content .cd-secondary-dropdown::after, .cd-dropdown-content .cd-dropdown-gallery::after, .cd-dropdown-content .cd-dropdown-icons::after {
    clear: both;
    content: "";
    display: table;
  }
  .open-to-left .cd-dropdown-content .cd-secondary-dropdown, .open-to-left .cd-dropdown-content .cd-dropdown-gallery, .open-to-left .cd-dropdown-content .cd-dropdown-icons {
    /* use the .open-to-left class if you want to open the dropdown on the left */
    left: auto;
    right: 100%;
  }
  .cd-dropdown-content .cd-secondary-dropdown.is-hidden, .cd-dropdown-content .cd-dropdown-gallery.is-hidden, .cd-dropdown-content .cd-dropdown-icons.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-dropdown-content .cd-secondary-dropdown.fade-in, .cd-dropdown-content .cd-dropdown-gallery.fade-in, .cd-dropdown-content .cd-dropdown-icons.fade-in {
    /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
    -webkit-animation: cd-fade-in 0.2s;
    animation: cd-fade-in 0.2s;
  }
  .cd-dropdown-content .cd-secondary-dropdown.fade-out, .cd-dropdown-content .cd-dropdown-gallery.fade-out, .cd-dropdown-content .cd-dropdown-icons.fade-out {
    /* animate secondary dropdown items when hovering over of of the .cd-dropdown-content list items */
    -webkit-animation: cd-fade-out 0.2s;
    animation: cd-fade-out 0.2s;
  }
  .cd-dropdown-content .cd-secondary-dropdown > .go-back, .cd-dropdown-content .cd-dropdown-gallery > .go-back, .cd-dropdown-content .cd-dropdown-icons > .go-back {
    display: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown > .see-all, .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
    position: absolute;
    bottom: 20px;
    height: 45px;
    text-align: center;
  }
  .cd-dropdown-content .cd-secondary-dropdown > .see-all a, .cd-dropdown-content .cd-dropdown-gallery > .see-all a, .cd-dropdown-content .cd-dropdown-icons > .see-all a {
    margin: 0;
    height: 100%;
    line-height: 45px;
    background: #ebebeb;
    pointer-events: auto;
    transition: color 0.2s, background-color 0.2s;
  }
  .no-touch .cd-dropdown-content .cd-secondary-dropdown > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-gallery > .see-all a:hover, .no-touch .cd-dropdown-content .cd-dropdown-icons > .see-all a:hover {
    color: #fff;
    background-color: #3c3d3d;
  }
  .cd-dropdown-content .cd-secondary-dropdown .cd-dropdown-item, .cd-dropdown-content .cd-secondary-dropdown a, .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-gallery a, .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item, .cd-dropdown-content .cd-dropdown-icons a {
    border: none;
  }
  .cd-dropdown-content .cd-dropdown-gallery, .cd-dropdown-content .cd-dropdown-icons {
    padding: 20px 30px 100px;
  }
  .cd-dropdown-content .cd-dropdown-gallery > .see-all, .cd-dropdown-content .cd-dropdown-icons > .see-all {
    width: calc(100% - 60px);
  }
  .cd-dropdown-content .cd-dropdown-icons > li, .cd-dropdown-content .cd-secondary-dropdown > li {
    width: 50%;
    float: left;
  }
  .cd-dropdown-content .cd-secondary-dropdown {
    overflow: hidden;
    width: 550px;
    padding-bottom: 65px;
  }
  .cd-dropdown-content .cd-secondary-dropdown::before {
    /* this is the separation line in the middle of the .cd-secondary-dropdown element */
    position: absolute;
    content: '';
    top: 290px;
    left: 15px;
    height: 1px;
    width: 520px;
    background-color: #ebebeb;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > a {
    color: #a51417;
    font-size: 1.6rem;
    margin-bottom: 10px;
    line-height: 30px;
    height: 30px;
    pointer-events: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > a::after, .cd-dropdown-content .cd-secondary-dropdown > li > a::before {
    /* hide the arrow */
    display: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown.move-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-dropdown-content .cd-secondary-dropdown > li {
    margin: 20px 0;
    border-right-width: 1px;
    border-color: #ebebeb;
    border-style: solid;
    padding: 0 30px;
    height: 250px;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li:nth-of-type(2n) {
    border-right-width: 0;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > ul {
    /* reset mobile style */
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    position: relative;
    height: auto;
  }
  .cd-dropdown-content .cd-secondary-dropdown > li > ul > .go-back {
    display: none;
  }
  .cd-dropdown-content .cd-secondary-dropdown a {
    line-height: 25px;
    height: 25px;
    font-size: 1.3rem;
    padding-left: 0;
  }
  .no-touch .cd-dropdown-content .cd-secondary-dropdown a:hover {
    color: #a51417;
  }
  .cd-dropdown-content .cd-secondary-dropdown ul {
    padding-bottom: 25px;
    overflow: hidden;
    height: auto;
  }
  .cd-dropdown-content .cd-secondary-dropdown .go-back a {
    padding-left: 20px;
    color: transparent;
  }
  .no-touch .cd-dropdown-content .cd-secondary-dropdown .go-back a:hover {
    color: transparent;
  }
  .cd-dropdown-content .cd-secondary-dropdown .go-back a::before, .cd-dropdown-content .cd-secondary-dropdown .go-back a::after {
    left: 0;
  }
  .cd-dropdown-content .cd-secondary-dropdown .see-all {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .cd-dropdown-content .cd-dropdown-gallery {
    width: 600px;
    padding-bottom: 100px;
  }
  .cd-dropdown-content .cd-dropdown-gallery > li {
    width: 48%;
    float: left;
    margin-right: 4%;
  }
  .cd-dropdown-content .cd-dropdown-gallery > li:nth-of-type(2n) {
    margin-right: 0;
  }
  .cd-dropdown-content .cd-dropdown-gallery .cd-dropdown-item {
    padding: 0;
    height: auto;
    line-height: normal;
    color: #a51417;
    margin-bottom: 2em;
  }
  .cd-dropdown-content .cd-dropdown-gallery > li:nth-last-of-type(2) a,
  .cd-dropdown-content .cd-dropdown-gallery > li:last-of-type a {
    margin-bottom: 0;
  }
  .cd-dropdown-content .cd-dropdown-gallery img {
    position: static;
    height: auto;
    width: 100%;
    margin: 0 0 0.6em;
  }
  .cd-dropdown-content .cd-dropdown-icons {
    width: 600px;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item {
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item:hover {
    background: #ebebeb;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item h3 {
    color: #a51417;
    font-weight: bold;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item p {
    display: block;
    font-size: 1.2rem;
  }
  .cd-dropdown-content .cd-dropdown-icons .cd-dropdown-item::before {
    left: 25px;
  }
  .cd-dropdown-content > .has-children > ul {
    visibility: hidden;
  }
  .cd-dropdown-content > .has-children > ul.is-active {
    /* when hover over .cd-dropdown-content items - show subnavigation */
    visibility: visible;
  }
  .cd-dropdown-content > .has-children > .cd-secondary-dropdown.is-active > li > ul {
    /* if .cd-secondary-dropdown is visible - show also subnavigation */
    visibility: visible;
  }
  .cd-dropdown-content > .has-children > a.is-active {
    /* hover effect for .cd-dropdown-content items with subnavigation */
    box-shadow: inset 2px 0 0 #a51417;
    color: #a51417;
  }
  .cd-dropdown-content > .has-children > a.is-active::before, .cd-dropdown-content > .has-children > a.is-active::after {
    background: #a51417;
  }
  .open-to-left .cd-dropdown-content > .has-children > a.is-active {
    box-shadow: inset -2px 0 0 #a51417;
  }
}

@media screen and (max-width: 839px) {
  @-webkit-keyframes cd-fade-in {
    0% {
      opacity: 0;
      visibility: visible;
    }
    100% {
      opacity: 1;
      visibility: visible;
    }
  }
  @keyframes cd-fade-in {
    0% {
      opacity: 0;
      visibility: visible;
    }
    100% {
      opacity: 1;
      visibility: visible;
    }
  }
  @-webkit-keyframes cd-fade-out {
    0% {
      opacity: 1;
      visibility: visible;
    }
    100% {
      opacity: 0;
      visibility: visible;
    }
  }
  @keyframes cd-fade-out {
    0% {
      opacity: 1;
      visibility: visible;
    }
    100% {
      opacity: 0;
      visibility: visible;
    }
  }
  .cd-search input[type="search"] {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #4b4c4c;
    color: #fff;
    border: none;
    border-radius: 0;
  }
  .cd-search input[type="search"]::-webkit-input-placeholder {
    color: #fff;
  }
  .cd-search input[type="search"]::-moz-placeholder {
    color: #fff;
  }
  .cd-search input[type="search"]:-moz-placeholder {
    color: #fff;
  }
  .cd-search input[type="search"]:-ms-input-placeholder {
    color: #fff;
  }
  .cd-search input[type="search"]:focus {
    background: #fff;
    color: #3c3d3d;
    outline: none;
  }
  .cd-search input[type="search"]:focus::-webkit-input-placeholder {
    color: rgba(60, 61, 61, 0.4);
  }
  .cd-search input[type="search"]:focus::-moz-placeholder {
    color: rgba(60, 61, 61, 0.4);
  }
  .cd-search input[type="search"]:focus:-moz-placeholder {
    color: rgba(60, 61, 61, 0.4);
  }
  .cd-search input[type="search"]:focus:-ms-input-placeholder {
    color: rgba(60, 61, 61, 0.4);
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .cd-search input[type="search"] {
    background-color: #ebebeb;
  }
  .cd-search input[type="search"]::-webkit-input-placeholder {
    color: #b3b3b3;
  }
  .cd-search input[type="search"]::-moz-placeholder {
    color: #b3b3b3;
  }
  .cd-search input[type="search"]:-moz-placeholder {
    color: #b3b3b3;
  }
  .cd-search input[type="search"]:-ms-input-placeholder {
    color: #b3b3b3;
  }
}

@media screen and (max-width: 839px) {
  .has-children > a:not(.url), .go-back a {
    position: relative;
  }
  .has-children > a:not(.url)::before, .has-children > a:not(.url)::after, .go-back a::before, .go-back a::after {
    /* arrow icon in CSS - for element with nested unordered lists */
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    display: inline-block;
    height: 2px;
    width: 10px;
    background: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .has-children > a:not(.url)::before, .go-back a::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .has-children > a:not(.url)::after, .go-back a::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .has-children > a:not(.url)::before, .has-children > a:not(.url)::after, .go-back a::before, .go-back a::after {
    background: #b3b3b3;
  }
}

@media screen and (max-width: 839px) {
  .has-children {
    border-top-width: 1px;
    border-color: #4b4c4c;
    border-style: solid;
  }
  .has-children > a.url {
    float: left;
  }
  .has-children > a:not(.url):hover {
    text-decoration: none;
  }

  .has-children > a {
    padding-right: 40px;
    border-top: none;
    overflow: hidden;
  }
  .has-children > a::before, .has-children > a::after {
    /* arrow goes on the right side - children navigation */
    right: 20px;
    -webkit-transform-origin: 9px 50%;
    -ms-transform-origin: 9px 50%;
    transform-origin: 9px 50%;
  }

  .move-out .has-children {
    border: none;
  }
}
@media only screen and (max-width: 839px) and (min-width: 840px) {
  .open-to-left .cd-dropdown-content > .has-children > a {
    padding-left: 40px;
    padding-right: 20px;
  }
  .open-to-left .cd-dropdown-content > .has-children > a::before, .open-to-left .cd-dropdown-content > .has-children > a::after {
    right: auto;
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
  }
}
@media screen and (max-width: 839px) {
  .cd-dropdown-content .go-back a {
    padding-left: 40px;
  }
  .cd-dropdown-content .go-back a::before, .cd-dropdown-content .go-back a::after {
    /* arrow goes on the left side - go back button */
    left: 20px;
    -webkit-transform-origin: 1px 50%;
    -ms-transform-origin: 1px 50%;
    transform-origin: 1px 50%;
  }

  .cd-main-content {
    background-color: #e6e6e6;
    min-height: calc(100vh - 100px);
    padding: 2em 5%;
    line-height: 2;
  }

  .no-js .cd-dropdown-wrapper:hover .cd-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .no-js .cd-dropdown-wrapper .cd-close {
    display: none;
  }
}
/* --------------------------------

Footer

-------------------------------- */
footer {
  background-color: #3c3d3d;
  color: #fff;
  margin: 0;
}
footer a {
  color: #fff;
}
footer .container {
  margin: 0 auto;
}
footer .footer-washu {
  font-family: "Libre Baskerville", "Times New Roman", serif;
  font-size: 1em;
  display: inline-block;
}
@media screen and (min-width: 1380px) {
  footer .footer-washu {
    display: block;
  }
}
footer .footer-address {
  padding-bottom: 10px;
  display: inline-block;
}
@media screen and (min-width: 1380px) {
  footer .footer-address {
    display: block;
  }
}
footer .footer-danforth, footer .footer-medical {
  display: inline-block;
}
@media screen and (min-width: 1380px) {
  footer .footer-danforth, footer .footer-medical {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1379px) {
  footer .footer-medical:before, footer .footer-address:before {
    content: " | ";
    padding: 0 10px;
  }
}
footer .social-icons {
  padding: 20px 0 40px;
}
footer .footer-nav {
  padding-top: 30px;
  padding: 30px 20px 20px;
}
@media screen and (min-width: 420px) {
  footer .footer-nav {
    padding: 30px 50px 20px;
  }
}
footer .footer-nav:before {
  display: block;
  content: '';
  background: #555;
  height: 1px;
  margin: 0 0 20px;
}
footer .footer-nav a {
  text-decoration: none;
  line-height: 1em;
}
footer .footer-nav a:hover {
  text-decoration: underline;
}
footer .footer-nav .show ul.menu {
  display: block;
}
footer .footer-nav ul.menu {
  display: none;
  margin: 0 0 20px;
  list-style: none;
}
@media screen and (min-width: 768px) {
  footer .footer-nav ul.menu {
    display: block;
  }
}
footer .footer-nav ul.menu li {
  padding: 10px 50px 10px 20px;
  font-size: 0.875em;
  line-height: 1.125em;
}
@media screen and (min-width: 768px) {
  footer .footer-nav ul.menu li {
    padding: 5px 20px 5px 0;
  }
}
footer .leading-together {
  background-color: #a51417;
  clear: both;
  text-align: center;
  padding: 10px 10px 5px;
}
@media screen and (min-width: 1380px) {
  footer .leading-together .leading-logo {
    float: left;
  }
}
footer .copyright {
  font-size: 0.7em;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 5px 0 10px;
}
@media screen and (min-width: 1380px) {
  footer .copyright {
    float: right;
    line-height: 46px;
    margin: 0;
  }
}
footer .copyright .policies {
  font-weight: 600;
  display: block;
}
@media screen and (min-width: 600px) {
  footer .copyright .policies {
    display: inline;
  }
  footer .copyright .policies:before {
    content: " | ";
    padding: 0 15px 0 10px;
    display: inline-block;
  }
}
footer .site-info {
  text-align: center;
}
@media screen and (min-width: 1380px) {
  footer .site-info {
    float: left;
    padding-top: 10px;
    text-align: left;
    width: 36%;
  }
}
footer .footer-nav-list {
  border-top-width: 1px;
  border-color: #4b4c4c;
  border-style: solid;
}
footer .footer-nav-list.last {
  border-bottom-width: 1px;
  margin-bottom: 20px;
}
@media screen and (max-width: 420px) {
  footer .footer-nav-list {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-nav-list {
    border: none;
    float: left;
    width: 33%;
  }
}
@media screen and (min-width: 1380px) {
  footer .footer-nav-list {
    width: 21.333333%;
  }
}
footer .nav-label {
  font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
}
@media screen and (min-width: 768px) {
  footer .nav-label {
    cursor: auto;
  }
}
footer .nav-label:after {
  content: "+";
  float: right;
  padding-right: 20px;
  font-size: 2em;
}
@media screen and (min-width: 768px) {
  footer .nav-label:after {
    content: '';
  }
}
footer .show .nav-label:after {
  content: "-";
}

/* Icons
--------------------------------------------------------------*/
.wustl-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  background-size: 100%;
  background-position: top left;
}
.wustl-icon > svg {
  width: 100%;
  height: 100%;
}
.wustl-icon:hover {
  background-position: bottom left;
}

.social-icon-list {
  margin: 0;
}
.social-icon-list .list-item {
  padding: 0;
  margin-right: 6px;
}
.social-icon-list .list-item:last-child {
  margin-right: 0;
}

.social-icon {
  display: inline-block;
  height: 42px;
  overflow: hidden;
  margin-right: 5px;
}

.wustl-icon-facebook {
  background-image: url("_assets/img/social-icons/icon-facebook.svg");
}
.no-svg .wustl-icon-facebook {
  background-image: url("_assets/img/social-icons/icon-facebook.png");
}

.wustl-icon-twitter {
  background-image: url("_assets/img/social-icons/icon-twitter.svg");
}
.no-svg .wustl-icon-twitter {
  background-image: url("_assets/img/social-icons/icon-twitter.png");
}

.wustl-icon-instagram {
  background-image: url("_assets/img/social-icons/icon-instagram.svg");
}
.no-svg .wustl-icon-instagram {
  background-image: url("_assets/img/social-icons/icon-instagram.png");
}

.wustl-icon-youtube {
  background-image: url("_assets/img/social-icons/icon-youtube.svg");
}
.no-svg .wustl-icon-youtube {
  background-image: url("_assets/img/social-icons/icon-youtube.png");
}

.wustl-icon-flickr {
  background-image: url("_assets/img/social-icons/icon-flickr.svg");
}
.no-svg .wustl-icon-flickr {
  background-image: url("_assets/img/social-icons/icon-flickr.png");
}

.wustl-icon-snapchat {
  background-image: url("_assets/img/social-icons/icon-snapchat.svg");
}
.no-svg .wustl-icon-snapchat {
  background-image: url("_assets/img/social-icons/icon-snapchat.png");
}

/*# sourceMappingURL=style.css.map */