/***************** GENERAL *********************/
:root {
    font-size: calc(12px + (18 - 12) * ( (100vw - 400px) / (900 - 400)));
    font-family:Arial, Verdana, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.sm-margin-bottom {
    margin-bottom: 1rem;
}

.ww-web-site {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.ww-web-site > * {
    flex-grow: 1;
}

.breadcrumb {
    color: rgb(50, 50, 50);
    margin: 0.5rem;
    text-align: right;
}

.breadcrumb__sep {
    margin: 0 0.5rem;
}

.sr-only,
.hidden {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ww-web-purify .ww-post__copy > p {
    margin-top: 1.25rem;
}

.ww-web-btn {
    color: #ECECEC;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    border: none;
    background-color: rgb(202,18,9);
    font-family: Palatino;
}

.ww-web-btn--sm {
    font-size: 1rem;
}

.ww-web-btn--sm + .ww-web-btn--sm {
    margin-left: 0.5rem;
}

.ww-web-btn--button {
    border: none;
}

.ww-web-btn--round {
    border-radius: 50%;
}

.ww-web-btn__text {
    padding: 1rem 2rem;
    display: inline-block;
}

.ww-web-btn__text--sm {
    padding: 0.5rem 1.5rem;
}

.ww-web-btn--animate::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    box-shadow: 0.0833rem 0.0833rem 0.1667rem #999;
    transition: opacity 0.1s cubic-bezier(0,0.41,1,0.57);
}


.ww-web-btn--animate:hover:after {
    opacity: 1;
}

.ww-web--max-50 {
    max-width: 50%;
}

.flex-60 {
    flex: 0 1 60%;
}

.flex-30 {
    flex: 0 1 30%;
}

.ww-web--flex-grow-2 {
    flex: 2;
}

.ww-web--flex-grow-1 {
    flex: 1;
}

.ww-web-background--lt-gray {
    background: #e9e9e9;
}

.linkspacing{
    padding-bottom:7px;
}

.ww-web-form {
    margin-bottom: 1rem;
}

.ww-web-form--block * {
    display: block;
}

.ww-web-form--block > label + label {
    margin-top: 1rem;
}

.ww-web-form__title {
    font-size: 1rem;
}

.ww-web-form__select {
    width: 200px;
    height: 25px;
    font-size: 1rem;
}

/***************** CLIENT COLORS ***************/

.ww-web-backgroundBaseColor {
    background: rgb(50,50,50)}

.ww-web-pageHeaderColor{
    color:#FFFFFF}

.ww-web-headerFontFamily {
    font-family: Palatino}

.ww-web-link,
.ww-web-link:visited,
.ww-web-purify a {
    color: inherit;
}

.ww-web-link--block {
    display: block;
}

.ww-web-link--block + .ww-web-link--block {
    margin-top: 0.5rem;
}

.ww-web-link:hover,
.ww-web-purify a:hover {
    color: rgb(202,18,9)}

/***************** TABLE **********************/
.ww-web-table {
    border-collapse: collapse;
}

.ww-web-table__row--header {
    background: rgb(202,18,9);
    color: #fff;
}

.ww-web-table__row--zebra:nth-child(2n) {
    background: #ececec;
}

.ww-web-table__row--zebra:nth-child(2n+1) {
    background: #FAFAFA;
}
.ww-web-table__cell {
    padding: 0.333rem;
    font-weight: normal;
    border: 1px solid #999;
}

/**
 * Make table headers look like section headers
 */
.ww-web-table__cell--underline {
    text-align: left;
    font-weight: normal;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 1rem;
}

.ww-web-table__cell--underline::before {
    content: '';
    width: 60%;
    bottom: 0.433rem;
    position: absolute;
    height: 0.316rem;
    background-color: rgb(202,18,9);
}

/**
 * Force more spacing between columns
 */
.ww-web-table--spread td + td,
.ww-web-table--spread th + th {
    padding-left: 1.111rem;
}


/***************** HEADER **********************/
.ww-web-header__logo {
    width: 6.75rem;
}

.ww-web-header {
    padding: 0.5rem 1.25rem;
}

.ww-web-header__container {
    margin-left: 1rem;
    width: calc(100% - 8.1rem);
}

.ww-web-header > * {
    display: inline-block;
    vertical-align: middle;
}

.ww-web-header__title > * {
    display: inline-block;
    vertical-align: middle;
}

.ww-web-header__title--flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.ww-web-header__search input[type=text] {
    height:45px;
    width:100%;
    background-color:transparent;
    font-size:1rem;
    padding: 0.5rem;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255,255,255,0.1);
}

/***************** MENU ************************/
.ww-web-nav {
    display: block;
}

.ww-web-nav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}


.ww-web-nav__menu--hidden {
    display: none;
}

.ww-web-nav__menu > *,
.ww-web-nav__btn {
    font-size: 1.43rem;
}

.ww-web-nav__btn {
    border: none;
    background: transparent;
}

.ww-web-nav__anchor {
    text-decoration: none;
}

.ww-web-nav__item {
    display: inline-block;
}

.ww-web-nav__item > *:first-child {
    display: block;
    padding: 0.5rem;
}

/* highlight menu items when hover or focus */
.ww-web-nav__item:hover,
.ww-web-nav__item > *:focus,
.ww-web-subnav__item:hover,
.ww-web-subnav__item > *:focus {
    background: rgb(202,18,9);
}

/* display submenu when hover on parent item */
.ww-web-nav__item:hover > .ww-web-subnav {
    display: block;
}

.ww-web-nav__item + .ww-web-nav__item {
    margin-left: 1.563rem;
}

.ww-web-subnav__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1;
    background: rgba(25,25,25,.95)}

.ww-web-nav__item,
.ww-web-nav__item > *:focus,
.ww-web-subnav__item,
.ww-web-subnav__item > *:focus {
    transition: background 0.1s ease-in-out;
}

.ww-web-subnav__item > * {
    padding: 8px;
    display: block;
}

.ww-web-subnav__item + .ww-web-subnav__item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebarSmall{ /* used on school_body_sidebar_small */
    display:none;
    width:100%;
    padding-top:10px;
    z-index:600;
    font-family:Palatino;
    background-color:rgba(25,25,25,.95);
}

.ww-web-alert-post {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(50, 50, 50, 0.9);
    z-index: 100;
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.ww-web-alert-post--invisible {
    opacity: 0;
}

.ww-web-alert-post--none {
    display: none;
}

.ww-web-alert-post__content {
    position: relative;
    display: inline-block;
    padding: 1rem;
    background: #ECECEC;
    overflow: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50%;
    max-height: 99vh;
}

.ww-web-alert-post__header {
    margin-bottom: 1.5rem;
    display: flex;
}

.ww-web-alert-post__text {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 1rem;
}

.ww-web-alert-post__btn {
    margin-left: auto;
    background: #999999;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    padding-top: 0.125rem;
}

.ww-web-alert-post__btn::after {
    border-radius: 50%;
}

.ww-web-alert-post__img {
    display: block;
    margin: 1rem auto;
    width: 80%;
}

.ww-web-article-banner {
    overflow: hidden;
    position: relative;
    min-height: 32.5vw;
    opacity: 1;
}

.ww-web-article-banner--fade > .ww-hero-banner {
    animation: hero-fade-in 0.2s cubic-bezier(.72,.0,1,0);
}

@keyframes hero-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.ww-web-hero--school {
    margin: 0 auto;
    display: block;
    height: 28.5vw;
    width: 100vw;
    object-fit: cover;
    object-position: 0 80%;
}

.ww-web-spinner-container--within {
    top: 50%;
    transform: translateY(-50%);
}

.ww-web-spinner {
    position: absolute;
    left: 50%;
    transform: translateX( -50% );
    overflow: hidden;
    z-index: 1;
}

.ww-spinner__circle {
    width: 3.333rem;
    height: 3.333rem;
    border-radius: 50%;
    border: solid 0.5rem #ccc;
    border-top-color: rgb(202,18,9);
    border-left-color: rgb(202,18,9);
    animation: spin 1s cubic-bezier(0.56,0,0.47,0.99) infinite;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(720deg);
    }
}
/***************** LINKS ***********************/
.quicklinks{
    color:#000;
    font-size:1.29rem;
}

.ww-web-section {
    color: #000000;
    padding: 1.653rem 3.438rem;
}

.ww-web-section > div + div {
    margin-top: 0.626rem;
}

.ww-web-section * + .ww-web-btn {
    margin-top: 1rem;
}

.ww-web-section--flex {
    display: flex;
}

.ww-web-section__content {
    margin-left: -0.313rem;
    margin-right: -0.313rem;
}

.ww-web-section__content--flex-between {
    display: flex;
    justify-content: space-between;
}

.ww-web-section__content--flex-wrap {
    flex-wrap: wrap;
}

.ww-web-section__content > * {
    margin: 0.313rem;
    vertical-align: top;
}

.ww-web-section__content--inline-block > * {
    display: inline-block;
}

.ww-web-content__group > * + * {
    margin-top: 2.626rem;
}

.ww-web-section-header{
    font-weight:normal;
    font-family:Palatino;
}

/** h2 **/
.ww-web-section-header--body {
    font-size:2.5rem;
    padding-bottom:10px;
}

/** h3 **/
.ww-web-section-header--h3 {
    font-size: 1.75rem;
}

.ww-web-section-header--title {
    font-size: 3rem;
    display: inline-block;
    vertical-align: middle;
}

.ww-web-section-header--nowrap {
    white-space:nowrap;
}

.headerBorder{
    position:relative;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.headerBorder::before{
    content:"";
    position:absolute;
    border-bottom-width:7.5px;
    border-bottom-style:solid;
    bottom:0;
    left:0;
    width:100px;
    border-bottom-color:rgb(202,18,9);
}
.miniheaderBorder{
    position:relative;
    font-weight:bold;
    font-size: 1rem;
    padding-bottom: .2rem;
    margin-bottom: .2rem;
}
.miniheaderBorder::before{
    content:"";
    position:absolute;
    border-bottom-width:3px;
    border-bottom-style:solid;
    bottom:0;
    left:0;
    width:50px;
    border-bottom-color:rgb(202,18,9);
}

.anchor-list--two-col {
    column-count: 2;
}

/***************** CALENDER EVENTS *************/
.eventbox {
    background: #ECECEC;
    flex: 1 1 20.625rem;
    overflow: hidden;
}

.eventbox__events {
    padding: 0 30px;
}

.eventbox__date {
    padding: 1.3rem;
    text-align: center;
    color: #ECECEC;
    font-size: 1.5rem;
    white-space: nowrap;
    background: rgb(202,18,9);
    font-family: Palatino;
}

.event__title,
.event__location {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event__location {
    margin-left: 0.625rem;
}

/***************** FOOTER **********************/
.ww-web-footer {
    padding: 1.562rem 3.125rem;
}

.ww-web-footer--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ww-web-footer--flex > * {
    flex:0 1 auto;
    padding:0.313rem;
    display: inline-block; /* fallback if no flex support */
    vertical-align: top; /* fallback if no flex support */
}

.ww-web-footer--mission {
    display:inline-block;
    width: 21.875rem;
}

.ww-web-link__social {
    display: inline-block;
}

.ww-web-link__social + .ww-web-link__social {
    margin-left: 0.313rem;
}

.ww-web-link__social--icon{
    width:3.125rem;
}

.ww-web-copyright {
    font-size: 0.75rem;
    margin-top: 1.125rem;
}


/***************** NEWS ARCHIVE ****************/
.ww-post__copy {
    width: 90%;
    line-height: 1.3rem;
}
.ww-post__date {
    font-style: italic;
    margin: 1rem 0;
}

.ww-web-post {
    flex: 0 1 32%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ww-web-post__title {
    width: 100%;
    font-size: 1.1rem;
    margin-bottom: 0.625rem;
}

.ww-web-post__img {
    width: 100%;
    display: block;
}

.ww-web-alert {
border-width: 2px;
border-style: solid;
padding: 8px;
box-sizing: border-box;
}

.ww-web-alert--error{
background-color: #F6CECE;
border-color: #F5A9A9;
color: #6e0000;
}

.ww-web-alert--warning{
background-color: #fff6c7;
color: #634E2A;
border-color: #faebcc;
}

.ww-web-alert--info{
background-color: #c0e4f6;
color: #224E64;
border-color: #ACCDDD;
}

.ww-web-alert--success{
background-color: #caecbc;
color: #2A522A;
border-color: #B5D4A9;
}

.ww-web-alert--ib {
    display: inline-block;
}

.u-font-size--medium {
    font-size: 1.2rem !important;
}

/***************** RESPONSIVE DESIGN ***********/
@media screen and (min-width: 900px) {
    :root {
        font-size: 18px;
    }
}

@media screen and (max-width: 400px) {
    :root {
        font-size: 12px;
    }
}

@media screen and (max-width: 940px) {
    /* set the alert post to be full screen */
    .ww-web-alert-post__content {
        max-width: 80vw;
    }

    .ww-web-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Change to column layout but not for the event */
    .ww-web-section__content--flex-between:not(.ww-web-section__content--events) {
        flex-direction: column;
    }

    .ww-web-section__content > * {
        margin-top: 3rem;
    }

    /*
        1. allow content to start wrapping on small screens
        2. center flex children
    */
    .ww-web-section__content--events {
        flex-wrap: wrap; /* [1] */
        justify-content: space-around; /* [2] */
    }

    /* stop event boxes from growing on small screens */
    .eventbox {
        flex-grow: 0;
    }

    /*
        The default margin-top for this screen size is 3rem set by the
        .ww-web-section__content > * rule.  We want the first two event boxes
        to be aligned at the top
    */
    .eventbox:nth-last-child(n+4) {
        margin-top: 0;
    }

    .ww-web-footer {
        padding-left: 0.687rem;
        padding-right: 0.687rem;
    }
}

.miniBioFilter {width: 65%;}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class="miniBioFilter"] {
    width: 100%;
    }
}

.miniBio {width: 80%;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class="miniBio"] {
    width: 100%;
    }
}
      

@media screen and (max-width: 667px) {
    /* We only need the first event box top aligned at this screen size */
    .eventbox:nth-child(2) {
        margin-top: 3rem;
    }
}

/* Printed Calendars
==============================================================================*/
@media print {
    header,
    footer {
        display: none;
    }

    section {
        font-size: 11px;
        padding: 0 !important;
    }
}
