/********************************************
    Custom Styles for Mt. Hood
    Prepared by Ceterius, Inc
    Last Updated by DJ Hughes - Aug 2018
*********************************************


/* to Target IE10.. use the following syntax
    html[data-useragent*='MSIE 10.0'] classname {
      color: #FFF;
    }
*/
/* to Target IE11.. use the following syntax
    html[data-useragent*='rv:11.0'] classname {
        color: #FFF;
    }
*/

/******************************
    Typography 
******************************/
/* font-family: 'Arvo', serif; */
/* font-family: 'Lato', sans-serif; */

/****************  
    Base Styles 
*****************/
html {
    font-size: 62.5%;
}

body {
    background: #FFF;
    color: #222222;
    padding: 0;
    margin: 0;
    font: 14px/18px 'Lato', sans-serif;
    font: 1.4rem/1.8rem 'Lato', sans-serif;
	
	/* added 03/23/2018 to fix Google Font issue - DHB */
	-webkit-animation-delay: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

/* added 03/23/2018 to fix Google Font issue - DHB */
@-webkit-keyframes fontfix {
    from { opacity: 1; }
    to   { opacity: 1; }
}

a {
    color: #3a64a9;
    line-height: inherit;
}

.preFooter a,
.primaryFocusBox a,
.callToActionBox a,
.callToActionWidget a {
    color: #9b0a0a;
}

a:active, a:focus, a:hover, * a:hover {
    color: #277ca6;
    cursor: pointer;
    text-decoration: underline;
}

.pageContent a:hover,
.pageContent a:active,
.pageContent a:focus {
    background: #f9f9d1;
    color: #9b0a0a;
}

a img {
    border: none;
}

p {
    line-height: 1.4;
    text-rendering: optimizeLegibility;
    margin: 5px 0 10px 0;
}

iframe {
    border: none;
}
/* Default header styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Arvo', sans-serif;
    font-style: normal;
    color: #9b0a0a;
    text-rendering: optimizeLegibility;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}

    h1.grey, h2.grey, h3.grey, h4.grey, h5.grey, h6.grey {
        color: #565656;
    }

    h1.black, h2.black, h3.black, h4.black, h5.black, h6.black {
        color: #222;
    }

h1 {
    font-size: 32px;
    font-size: 3.2rem;
}

h2 {
    font-size: 22px;
    font-size: 2.2rem;
    color: #222;
}

h3 {
    font-size: 20px;
    font-size: 2rem;
    color: #565656;
}

h4 {
    font-size: 20px;
    font-size: 2rem;
    font-weight: normal;
}

h5 {
    font-size: 18px;
    font-size: 1.8rem;
    color: #565656;
    font-style: italic;
}

h6 {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
}

hr {
    border: solid #ccc;
    border-width: 1px 0 0;
    clear: both;
    margin: 25px 0;
    height: 0;
}

.greyTxt {
    color: #565656;
}

.blackTxt {
    color: #222;
}

ul li, ol li {
    margin-bottom: 10px;
    list-style-type: disc;
}
/*Dev fix - fix for the nested list - inner ul showes the numbers issue*/
ol > li {
    list-style-type: decimal;
}

ol li ol li {
    list-style-type: lower-latin;
}

a.lighterBlue {
    color: #0099ff;
}

/***********************
   Grid Layouts
***********************/
.large-1 {
    width: 8.33333%;
}

.large-2 {
    width: 16.66667%;
}

.large-3 {
    width: 25%;
}

.large-4 {
    width: 33.33333%;
}

.large-5 {
    width: 41.66667%;
}

.large-6 {
    width: 50%;
}

.large-7 {
    width: 58.33333%;
}

.large-8 {
    width: 66.66667%;
}

.large-9 {
    width: 75%;
}

.large-10 {
    width: 83.33333%;
}

.large-11 {
    width: 91.66667%;
}

.large-12 {
    width: 100%;
}

.column {
    float: left;
}

.swapCols {
    float: left;
}

.leftCol {
    float: left;
    padding-right: 65px;
}

.sidebar.sidebarLeft {
    float: left;
}

.sidebar.sidebarRight {
    float: left;
}

ul.block-grid-3 li {
    width: 33%;
}

ul.block-grid-4 li {
    width: 25%;
}

.show-on-small-only, .show-for-small-only {
    display: none;
}



/**************************
    Helper Classes
***************************/
.outerWrapper {
    width: 100%;
    min-width: 320px;
    margin: 0 auto;
    max-width: 1280px;
    overflow: hidden;
    position: relative;
}

.row {
    width: 100%;
    margin: 0 auto;
    max-width: 1170px;
}

.outerWrapper {
    width: 100%;
    margin: 0 auto;
    max-width: 1360px;
}

.pageOutline {
    border-left: 2px solid #d6d6d6;
    border-right: 2px solid #d6d6d6;
}

.clearfix {
    *zoom: 1;
    clear: both;
}

    .clearfix:before,
    .clearfix:after {
        content: " ";
        display: table;
    }

    .clearfix:after {
        clear: both;
    }

.center {
    text-align: center;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.pull-left figure {
    padding: 0 10px 10px 0;
}

.pull-right figure {
    padding: 0 0 10px 10px;
}

.padding-x {
    padding: 0 10px !important;
}

.padding-right {
    padding-right: 10px !important;
}

.padding-left {
    padding-left: 10px !important;
}

.no-padding-x {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.no-padding-right {
    padding-right: 0 !important;
}

.no-padding-left {
    padding-left: 0 !important;
}

.no-margin-x {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.no-margin-right {
    margin-right: 0 !important;
}

.no-margin-left {
    margin-left: 0 !important;
}

.marginBottom15 {
    margin-bottom: 15px;
}

.marginBottom20 {
    margin-bottom: 20px;
}

.marginBottom25 {
    margin-bottom: 25px;
}

.hidden {
    display: none;
}

.wcagHidden {
    position: absolute;
    left: 0;
    top: -500px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.floatLeft {
    float: left;
}

.floatRight {
    float: right;
}

img.floatLeft {
    display: inline-block;
    margin: 0 10px 10px 0;
}

img.floatRight {
    display: inline-block;
    margin: 0 0 10px 10px;
}

ul.no-bullets, ul.no-bullets li, ol.no-bullets, ol.no-bullets li {
    list-style-type: none;
}

.clear-ul, .clearUL {
    margin: 0;
    padding: 0;
}

ul.list-inline > li, ul.inline-list > li {
    float: left;
    /*margin-right:10px;*/
    margin-right: 10px;
}

    ul.list-inline > li:last-child, ul.inline-list > li:last-child {
        margin-right: 0;
    }

.videoContainer {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .videoContainer iframe,
    .videoContainer object,
    .videoContainer embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.genericTabs .titlesWrapper {
    text-align: center;
}

.genericTabs .tabTitles {
    padding: 5px 20px 0 20px;
    position: relative;
    z-index: 2;
    display: inline-block;
}

    .genericTabs .tabTitles li {
        cursor: pointer;
        float: left;
        color: #565656;
        text-transform: uppercase;
        font: 30px/16px 'Arvo', sans-serif;
        font: 3rem/1.6rem 'Arvo', sans-serif;
        box-shadow: 0 7px 0 #ddd1bc, 0 0 7px #DFDFDF;
        margin-right: 10px;
        padding: 25px 75px;
        background: #f9f4ed;
    }

        .genericTabs .tabTitles li:hover {
            color: #7E7373;
        }

        .genericTabs .tabTitles li:last-child {
            margin-right: 0;
        }

        .genericTabs .tabTitles li.active {
            background: #ddd1bc;
            color: #9d0404;
        }

    .genericTabs .tabTitles.rounded li {
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }

.genericTabs .tabsContent {
    position: relative;
    z-index: 1;
}

    .genericTabs .tabsContent > li {
        display: none;
        padding: 20px 0;
        margin-top: 3px;
    }

        .genericTabs .tabsContent > li.active {
            display: block;
        }

.mobileImg {
    display: none;
}

.show-for-small-only {
    display: none;
}

table {
    margin-bottom: 10px;
    width: 100%;
}
/***** Cell Styles ******/
td.cellCenter {
    text-align: center;
}

td.cellRight {
    text-align: right;
    text-align: -moz-right;
    text-align: -webkit-right;
}


/***********/

table tr {
    background: #fafafa;
}

table.programTable tr:nth-child(odd) {
    background: #fbfbfb;
}

table.programTable tr:nth-child(even) {
    background: #eceff6;
}

thead th {
    font-weight: normal;
    font-size: 16px;
}

table td {
    border: 1px solid #fafafa;
}

table tr th, table tr td {
    padding: 10px;
    color: #222;
    text-align: left;
}

table thead tr th, table thead tr td {
    padding: 10px
}

table thead tr th, table tfoot tr th,
table tfoot tr td, table tbody tr th,
table tbody tr td, table tr td {
    display: table-cell;
    line-height: 16px;
}

table.programTable tbody {
    border-bottom: 1px solid #d3d3d3;
}

.responsiveTable.programTable thead {
    background: #3b4140;
    color: #fff;
    border: none;
}

.responsiveTable tbody a:hover,
.responsiveTable tbody a:focus,
.responsiveTable tbody a:active {
    background: #f9f9d1;
    color: #9b0a0a;
}

.tableDescription {
    color: #565656;
}

.responsiveTable.programTable thead th {
    background: #3c4140;
    color: #FFF;
    border: none;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px 10px 5px 10px;
    border: none;
}

.responsiveTable tbody td {
    border: 1px solid #d3d3d3;
    position: relative;
}

.responsiveTable.programTable tbody tr {
    border-left: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
}

.responsiveTable.programTable thead tr, .responsiveTable.programTable tbody td {
    border: none;
}

.responsiveTable.programTable thead th:first-child {
    -webkit-border-radius: 10px 0 0 0;
    -moz-border-radius: 10px 0 0 0;
    border-radius: 10px 0 0 0;
}

.responsiveTable.programTable thead th:last-child {
    -webkit-border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    border-radius: 0 10px 0 0;
}

.radius10, .round10 {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.radius15, .round15 {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.border {
    border: 1px solid #c5c8cb;
}

ul.list-dash li {
    list-style-type: none;
    position: relative;
}

    ul.list-dash li a:before {
        content: '-';
        float: left;
        color: #FFF;
        position: absolute;
        left: -15px;
        top: 4px;
    }

.padding-x-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.padding-x-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.padding-y-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.redGradient {
    background: #af1212; /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FmMTIxMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4NzAyMDIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #af1212 0%, #870202 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#af1212), color-stop(100%,#870202)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #af1212 0%,#870202 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #af1212 0%,#870202 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #af1212 0%,#870202 100%); /* IE10+ */
    background: linear-gradient(to bottom, #af1212 0%,#870202 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#af1212', endColorstr='#870202',GradientType=0 ); /* IE6-8 */
}

.dividerPadding {
    padding: 0 10px;
}

.doubleLinesDivider {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    height: 2px;
    width: 100%;
    margin: 0 0 15px 0;
    padding-bottom: 5px;
}

li.endUtilityNav:after {
    content: '';
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    height: 2px;
    width: 100%;
    margin: 10px 0 15px 0;
    padding-bottom: 5px;
    display: block;
}

.divider {
    background: url(../images/designFiles/divider.png);
    background-repeat: no-repeat;
    width: 100%;
    max-width: 880px;
    height: 7px;
    margin: 0 auto;
}

.yellowDoubleDivider {
    border-top: 1px solid #dea31e;
    border-bottom: 1px solid #dea31e;
    padding-bottom: 2px;
    width: 100%;
    height: 2px;
}

.redTxt, a.redTxt {
    color: #9d0404;
}

hr.tall3px {
    border: 2px solid #ccc;
}




/******************
    Buttons 
******************/
.button {
    padding: 8px 15px;
    color: #FFF;
    border-style: solid;
    border-width: 0px;
    cursor: pointer;
    font-weight: normal;
    line-height: normal;
    margin: 0;
    position: relative;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    -webkit-transition: background-color 300ms ease-out;
    -moz-transition: background-color 300ms ease-out;
    transition: background-color 300ms ease-out;
    -webkit-appearance: none;
    border: none;
}

    .button:hover {
        color: #006c90;
    }

    .button.red {
        background: #9d0404;
        margin-bottom: 16px;
        margin-bottom: 1.6rem;
    }

        .button.red:hover, .button.red:focus, .button.red:active {
            background: #660505;
            color: #FFF !important;
        }

span.arrow {
    font-size: 17px;
    font-size: 1.7rem;
    padding-left: 3px;
}

.button.arrowWhiteRight:after, .button.arrowRight:after {
    content: '';
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -109px -55px;
    width: 9px;
    height: 14px;
    display: inline-block;
    margin-left: 7px;
    position: relative;
    top: 3px;
}

.arrowRedCircle:after {
    content: '';
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -284px -19px;
    width: 14px;
    height: 12px;
    display: inline-block;
    margin-left: 7px;
    position: relative;
    top: 2px;
}

.arrowWhiteCircle:after {
    content: '';
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -283px -40px;
    width: 14px;
    height: 12px;
    display: inline-block;
    margin-left: 7px;
    position: absolute;
    top: 4px;
}

.arrowWhiteCircle:hover:after {
    opacity: .7;
}

.arrowBlueCircle:after {
    content: '';
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -284px -4px;
    width: 14px;
    height: 12px;
    display: inline-block;
    margin-left: 7px;
    position: relative;
    top: 2px;
}

.arrowBlueCircle:hover {
    color: #277ca6;
}

    .arrowBlueCircle:hover:after {
        opacity: .7;
        background-position: -303px -4px;
    }

img.border {
    border: 2px solid #bbb2a1;
}

/*************
    Forms
*************/
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        margin-left: 0;
        display: block;
        float: left;
        background: none;
    }

input::-webkit-input-placeholder,
input:-moz-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
textarea::-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder {
    color: #565656;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="time"]:focus, input[type="url"]:focus, textarea:focus {
    -webkit-box-shadow: 0 0 5px #555;
    -moz-box-shadow: 0 0 5px #555;
    box-shadow: 0 0 5px #555;
    border: 2px solid #e3ae20;
    background: #e3ae20;
    color: #FFF;
}

input[type="submit"]:focus, input[type="button"]:focus {
    outline: #000 thin dotted;
}

::-webkit-input-placeholder {
    color: #000;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #000;
}

:-ms-input-placeholder {
    color: #000;
}

/*************
    Header
*************/
header.pageHeader .logoRow {
    padding: 15px 0 20px 0;
    position: relative;
}

header.pageHeader .logo {
    display: inline-block;
    margin: 0;
    float: left;
}

    header.pageHeader .logo span {
        text-indent: -9999px;
        display: block;
        height: 0;
    }

    header.pageHeader .logo a {
        display: inline-block;
    }

.logo img.mobileImg {
    display: none;
}

.menuHeader {
    background: #FFF;
    text-align: center;
    padding: 10px 0;
}




/**************
    Footer 
***************/
footer.pageFooter {
    color: #FFF;
    width: 100%;
}

@-moz-document url-prefix() {
    footer.pageFooter {
        position: relative;
        margin-top: -13px;
    }
}

html[data-useragent*='MSIE 10.0'] footer.pageFooter,
html[data-useragent*='rv:11.0'] footer.pageFooter {
    position: relative;
    margin-top: -13px;
}

.pageFooter a:active, .pageFooter:focus {
    outline-color: #fff thin dotted;
}

footer.pageFooter .socialRow {
    background: #9e2926;
    height: 55px;
    padding: 10px 0;
}

footer.pageFooter .socialIconsRow {
    height: 55px;
    background: #9e2926;
    padding: 10px 0;
}

    footer.pageFooter .socialIconsRow .socialIcons {
        float: left;
        width: 70%;
    }

        footer.pageFooter .socialIconsRow .socialIcons ul li.connectWithUs {
            margin-right: 35px;
            font-size: 18px;
            margin-top: 8px;
        }

        footer.pageFooter .socialIconsRow .socialIcons ul li.facebook a {
            background-position: -138px -37px;
        }

            footer.pageFooter .socialIconsRow .socialIcons ul li.facebook a:hover,
            footer.pageFooter .socialIconsRow .socialIcons ul li.facebook a:focus,
            footer.pageFooter .socialIconsRow .socialIcons ul li.facebook a:active {
                background-position: -169px -110px;
            }

        footer.pageFooter .socialIconsRow .socialIcons ul li.twitter a {
            background-position: -174px -37px;
        }

            footer.pageFooter .socialIconsRow .socialIcons ul li.twitter a:hover,
            footer.pageFooter .socialIconsRow .socialIcons ul li.twitter a:focus,
            footer.pageFooter .socialIconsRow .socialIcons ul li.twitter a:active {
                background-position: -205px -110px;
            }

        footer.pageFooter .socialIconsRow .socialIcons ul li.linkedIn a {
            background-position: -208px -37px;
        }

            footer.pageFooter .socialIconsRow .socialIcons ul li.linkedIn a:hover,
            footer.pageFooter .socialIconsRow .socialIcons ul li.linkedIn a:focus,
            footer.pageFooter .socialIconsRow .socialIcons ul li.linkedIn a:active {
                background-position: -239px -110px;
            }

        footer.pageFooter .socialIconsRow .socialIcons ul li.youTube a {
            background-position: -243px -37px
        }

            footer.pageFooter .socialIconsRow .socialIcons ul li.youTube a:hover,
            footer.pageFooter .socialIconsRow .socialIcons ul li.youTube a:focus,
            footer.pageFooter .socialIconsRow .socialIcons ul li.youTube a:active {
                background-position: -274px -110px;
            }
        footer.pageFooter .socialIconsRow .socialIcons ul li.instagram a {
            background-position: -1px -249px;
        }

            footer.pageFooter .socialIconsRow .socialIcons ul li.instagram a:hover,
            footer.pageFooter .socialIconsRow .socialIcons ul li.instagram a:focus,
            footer.pageFooter .socialIconsRow .socialIcons ul li.instagram a:active {
                background-position: -40px -249px;
            }

        footer.pageFooter .socialIconsRow .socialIcons ul {
            float: left;
        }

footer.pageFooter .footerSearch {
    float: right;
    width: 20%;
    position: relative;
}

    footer.pageFooter .footerSearch input {
        width: 100%;
        height: 30px;
        padding: 5px;
        font-size: 12px;
        font-size: 1.2rem;
    }

.searchIconBtn {
    position: absolute;
    background: #eeeeee url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -87px 0px;
    width: 31px;
    height: 30px;
    right: 0;
    top: 0;
}

.footerSearch .searchIconBtn {
    background: #eee url(../images/designFiles/footerSearchIcon.png);
    background-repeat: no-repeat;
}

.footerSearch input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.searchIconBtn:hover, .searchIconBtn:focus, .searchIconBtn:active {
    opacity: .7;
}

footer.pageFooter .linksRow {
    padding: 25px 0;
}

    footer.pageFooter .linksRow .logoBox {
        float: left;
        width: 15%;
        margin-right: 25px;
    }

    footer.pageFooter .linksRow article {
        float: left;
        width: 13%;
        margin-right: 15px;
    }

        footer.pageFooter .linksRow article.giveNow {
            width: 16%;
        }

        footer.pageFooter .linksRow article:last-child {
            margin-right: 0;
        }

footer.pageFooter .logoBox p {
    margin: 0 0 10px 0;
    line-height: 1;
    font-style: normal;
}

footer.pageFooter .linksRow article h3 {
    color: #FFF;
    font: 16px/16px 'Lato', sans-serif;
    font: 1.6rem/1.6rem 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

footer.pageFooter .linksRow article.giveNow h3 {
    color: #FFF;
}

footer.pageFooter .linksRow article.giveNow p {
    margin-top: 0;
}

footer.pageFooter .linksRow article ul li {
    margin-bottom: 20px;
}

    footer.pageFooter .linksRow article ul li a {
        color: #FFF;
        display: block;
        font-size: 12px;
        font-size: 1.2rem;
    }

        footer.pageFooter .linksRow article ul li a:hover, footer.pageFooter .linksRow article ul li a:focus, footer.pageFooter .linksRow article ul li a:active,
        footer.pageFooter .linksRow .moreInfo:hover, footer.pageFooter .linksRow .moreInfo:focus, footer.pageFooter .linksRow .moreInfo:active,
        footer.pageFooter address a:hover, footer.pageFooter address a:focus, footer.pageFooter address a:active {
            color: #eee;
            background: #680202;
        }

footer.pageFooter .linksRow .moreInfo {
    position: relative;
    color: #FFF;
}

footer.pageFooter img.footerLogo {
    margin-bottom: 15px;
}

    footer.pageFooter img.footerLogo:hover {
        opacity: .7;
    }

footer.pageFooter .copyrightRow {
    background: #333837;
    padding: 15px 0 5px 0;
    -webkit-box-shadow: inset 0px 7px 9px 0px rgba(36,41,41,1);
    -moz-box-shadow: inset 0px 7px 9px 0px rgba(36,41,41,1);
    box-shadow: inset 0px 7px 9px 0px rgba(36,41,41,1);
}

footer.pageFooter .yellowDoubleDivider {
    margin-bottom: 15px;
}

footer.pageFooter address a {
    color: #FFF;
}

footer.pageFooter .copyright {
    float: left;
	padding-bottom: 22px;
}

footer.pageFooter .copyrightRow .privacy {
    float: right;
}

    footer.pageFooter .copyrightRow .privacy ul li a {
        color: #FFF;
    }

        footer.pageFooter .copyrightRow .privacy ul li a:active {
            color: #e3ae20;
        }

        footer.pageFooter .copyrightRow .privacy ul li a:after {
            content: '|';
            padding-left: 5px;
            color: #FFF;
        }

    footer.pageFooter .copyrightRow .privacy ul li:last-child a:after {
        display: none;
    }

#non-discrimination {
	padding-top:35px;
	}
	
#non-discrimination a {
	color:#FCFACD;
	}
	




/************************
    Homepage 
************************/
@-moz-document url-prefix() {
    .homepage {
        position: relative;
        top: -13px;
    }
}

html[data-useragent*='MSIE 10.0'] .homepage {
    position: relative;
    top: -13px;
}

html[data-useragent*='rv:11.0'] .homepage {
    position: relative;
    top: -13px;
}

.hero {
    position: relative;
}

@-moz-document url-prefix() {
    .hero {
        top: 1.3rem;
    }
}

html[data-useragent*='MSIE 10.0'] .hero {
    top: 1.3rem;
}

.heroSlider .item {
    height: 470px;
    background-size: cover;
    background-position: center top;
    position: relative;
}

    .heroSlider .item a {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

        .heroSlider .item a:focus, .heroSlider .item a:active {
            border: 2px solid #0077FF;
        }

.owl-controls, .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
}

.sliderMargin {
    margin: 0 40px;
}

.hero .imageContainer {
    position: relative;
}

.hero .headlineWrapper, .hero .headlineWrapper.left {
    position: absolute;
    bottom: 65px;
    left: 120px;
    background: url(../images/designFiles/captionBG.png) repeat;
    padding: 10px;
}

    .hero .headlineWrapper.center {
        left: 30%;
    }

    .hero .headlineWrapper.right {
        right: 120px;
        left: auto;
        text-align: right;
    }

.owl-controls .owl-buttons div .leftArrow,
.owl-controls .owl-buttons div .rightArrow,
.owl-nav .leftArrow,
.owl-nav .rightArrow {
    position: absolute;
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    width: 21px;
    height: 31px;
    display: inline-block;
}

.sliderMargin .owl-controls .owl-buttons div .leftArrow,
.sliderMargin .owl-nav .leftArrow {
    left: -25px;
}

.sliderMargin .owl-controls .owl-buttons div .rightArrow,
.sliderMargin .owl-nav .rightArrow {
    right: -25px;
}

.owl-controls .owl-buttons div .leftArrow,
.owl-nav .leftArrow {
    background-position: -3px -37px;
    left: 20px;
}

    .owl-controls .owl-buttons div .leftArrow:hover,
    .owl-nav .leftArrow:hover {
        background-position: -3px -71px;
    }

.owl-controls .owl-buttons div .rightArrow,
.owl-nav .rightArrow {
    background-position: -29px -37px;
    right: 20px;
}

    .owl-controls .owl-buttons div .rightArrow:hover,
    .owl-nav .rightArrow:hover {
        background-position: -30px -71px;
    }

.hero .headlineWrapper .headline {
    font: 50px/50px 'Arvo', sans-serif;
    font: 5rem/5rem 'Arvo', sans-serif;
    color: #FFF;
    text-shadow: 3px 5px 5px #3D3D3D;
    margin-bottom: 10px;
    letter-spacing: -.5px;
}

    .hero .headlineWrapper .headline span.yellowTxt {
        color: #e3ae20;
    }

.hero .headlineWrapper .subHeadline {
    font: 28px/28px 'Arvo', sans-serif;
    font: 2.8rem/2.8rem 'Arvo', sans-serif;
    color: #FFF;
    text-shadow: 3px 5px 5px #3D3D3D;
}

    .hero .headlineWrapper .subHeadline.overlay {
        padding: 10px;
        display: inline-block;
    }

.hero .socialIconsRow {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.alertInnerWrapper {
    position: relative;
}

.alertRow {
    position: absolute;
    top: 0;
    width: 100%;
}

.alertInnerWrapper .alertRow {
    position: relative;
}

.alertBox {
    position: relative;
    z-index: 2;
    background: #d8d8d8;
    padding: 10px 50px;
    -webkit-border-radius: 0 0 15px 15px;
    -moz-border-radius: 0 0 015px 15px;
    border-radius: 0 0 15px 15px;
    border: 1px solid #798ea8;
    font-weight: 700;
    color: #000;
    font-size: 15px;
    font-size: 1.5rem;
}

.alertIcon {
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -133px -107px;
    width: 32px;
    height: 33px;
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.alertBox .message {
    float: left;
    width: 85%;
    margin-top: 5px;
}

.alertBox .warning {
    color: #e11b36;
    font-weight: 700;
}

span.red {
    color: #e11b36;
}

.socialIconsRow .row {
    position: relative;
}

.hero .socialIcons {
    background: url(../images/designFiles/captionBG.png) repeat;
    padding: 5px 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

@-moz-document url-prefix() {
    .hero .socialIcons {
        bottom: 12px;
    }
}

.socialIcons ul li {
    margin-right: 30px;
    margin-bottom: 0;
}

    .socialIcons ul li:last-child {
        margin-right: 0;
    }

    .socialIcons ul li a {
        display: inline-block;
        background: url(../images/designFiles/sprites.png);
        background-repeat: no-repeat;
        width: 33px;
        height: 33px;
    }

    .socialIcons ul li.facebook a {
        background-position: -169px -110px;
    }

        .socialIcons ul li.facebook a:hover, .socialIcons ul li.facebook a:focus, .socialIcons ul li.facebook a:active {
            background-position: -138px -37px;
        }

    .socialIcons ul li.twitter a {
        background-position: -205px -110px;
    }

        .socialIcons ul li.twitter a:hover, .socialIcons ul li.twitter a:focus, .socialIcons ul li.twitter a:active {
            background-position: -174px -37px;
        }

    .socialIcons ul li.linkedIn a {
        background-position: -239px -110px;
    }

        .socialIcons ul li.linkedIn a:hover, .socialIcons ul li.linkedIn a:focus, .socialIcons ul li.linkedIn a:active {
            background-position: -208px -37px;
        }

    .socialIcons ul li.youTube a {
        background-position: -274px -110px;
    }

        .socialIcons ul li.youTube a:hover, .socialIcons ul li.youTube a:focus, .socialIcons ul li.youTube a:active {
            background-position: -243px -37px;
        }
    .socialIcons ul li.instagram a {
        background-position: -40px -248px;
    }

        .socialIcons ul li.instagram a:hover, .socialIcons ul li.instagram a:focus, .socialIcons ul li.instagram a:active {
            background-position: -1px -248px;
        }

.socialIconsRowLinks {
    margin-left: 0;
}

    .socialIconsRowLinks li {
        list-style: none;
        float: left;
        margin-right: 10px;
    }

        .socialIconsRowLinks li a img {
            border: solid 1px #ddd1bc;
        }

        .socialIconsRowLinks li a:hover img,
        .socialIconsRowLinks li a:active img,
        .socialIconsRowLinks li a:focus img {
            opacity: 0.7;
        }

.hero .playStop .controlIcons {
    background: url(../images/designFiles/captionBG.png) repeat;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.hero .playStop .icon {
    cursor: pointer;
    display: inline-block;
    color: #FFF;
    background: url(../images/designFiles/sprites.png) no-repeat;
    width: 32px;
    height: 31px;
    margin-top: 3px;
    margin-right: 25px;
}

.hero .playStop .play {
    width: 31px;
    height: 31px;
    background-position: -54px -174px;
}
/*.hero .playStop .play.active { background-position: -54px -207px; }*/
.hero .playStop .stop {
    background-position: -10px -174px;
}

    .hero .playStop .stop.active {
        background-position: -10px -208px;
    }

.hero .playStop .icon:hover {
    opacity: .8;
}

.welcomeRow {
    width: 100%;
    height: 9.3rem;
    margin-bottom: 45px;
    border-top: 3px solid #cccccc;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(171,171,171,1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(171,171,171,1);
    box-shadow: 0px 3px 5px 0px rgba(171,171,171,1);
}

    .welcomeRow .welcomeBlock {
        background: url(../images/designFiles/welcomeArrow.png);
        background-repeat: no-repeat;
        min-height: 10.8rem;
        padding: 23px 10px 15px 80px;
        display: inline-block;
        width: 29%;
        box-sizing: border-box;
        float: left;
        /*max-width: 368px;   */
        /*margin-right:25px; */
    }

    .welcomeRow .CTAs {
        width: 68%;
        float: left;
        box-sizing: border-box;
    }

    .welcomeRow .outerWrapper {
        margin-top: -9px;
    }

    .welcomeRow .welcomeBlock h1 {
        color: #FFF;
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: 700;
        display: inline-block;
        border-bottom: 1px solid #f4f4f4;
        padding-bottom: 2px;
        margin-bottom: 10px;
    }

    .welcomeRow .welcomeBlock .getStarted {
        color: #FFF;
        font-size: 22px;
        font-size: 2.2rem;
    }

    .welcomeRow .callToAction {
        float: left;
        width: 25%;
        padding: 20px 25px 0 0;
        height: 80px;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }

        .welcomeRow .callToAction a, .welcomeRow .callToAction a:hover {
            text-decoration: none;
        }

        .welcomeRow .callToAction:last-child {
            margin-right: 0;
            padding-right: 0;
        }

    .welcomeRow.chatEnabled .callToAction {
        width: 13.5%;
    }

.callToAction h2 {
    color: #FFF;
    font: 18px/22px 'Lato', sans-serif;
    font: 1.8rem/2.2rem 'Lato', sans-serif;
    font-weight: 700;
    margin: 0 0 5px 0;
}

    .callToAction h2 span.arrow {
        background: url(../images/designFiles/sprites.png);
        background-repeat: no-repeat;
        background-position: -109px -55px;
        width: 9px;
        height: 14px;
        display: inline-block;
        margin-left: 7px;
        position: relative;
        top: 2px;
    }

.welcomeRow .callToAction .desc {
    color: #FFF;
    font: 14px/16px 'Lato', sans-serif;
    font: 1.4rem/1.6rem 'Lato', sans-serif;
    margin: 0 0 5px 0;
}

.welcomeRow .callToAction a:hover h2, .welcomeRow .callToAction a:hover .desc,
.welcomeRow .callToAction a:focus h2, .welcomeRow .callToAction a:focus .desc,
.welcomeRow .callToAction a:active h2, .welcomeRow .callToAction a:active .desc {
    color: #eecd73;
}

    .welcomeRow .callToAction a:hover h2 span.arrow, .welcomeRow .callToAction a:focus h2 span.arrow,
    .welcomeRow .callToAction a:active h2 span.arrow {
        background-position: -109px -36px;
    }

.welcomeRow.chatEnabled .callToAction.chat {
    width: 18%;
    margin: 25px 0 0 0;
    display: block;
}

.welcomeRow .callToAction.chat {
    display: none;
}

    .welcomeRow .callToAction.chat .chatIcon {
        float: left;
        margin-right: 5px;
    }

.socialMobile .socialIcons {
    display: inline-block;
    margin-bottom: 15px;
}

    .socialMobile .socialIcons ul li.facebook a:hover {
        background-position: -145px -2px;
        opacity: .7;
    }

    .socialMobile .socialIcons ul li.twitter a:hover {
        background-position: -180px -2px;
        opacity: .7;
    }

    .socialMobile .socialIcons ul li.linkedIn a:hover {
        background-position: -213px -2px;
        opacity: .7;
    }

    .socialMobile .socialIcons ul li.youTube a:hover {
        background-position: -246px -2px;
        opacity: .7;
    }

.courses {
    margin-bottom: 75px;
}

    .courses h2 {
        text-transform: uppercase;
        ;
        color: #222;
        font: 38px/42px 'Arvo', sans-serif;
        font: 3.8rem/4.2rem 'Arvo', sans-serif;
        text-align: center;
        margin-bottom: 20px;
    }

        .courses h2 span.red {
            color: #9d0404;
        }

    .courses h3 {
        font-size: 22px;
        font-size: 2.2rem;
        color: #222;
    }

    .courses .intro {
        color: #565656;
        font: 20px/24px 'latoRegular', sans-serif;
        font: 2rem/2.4rem 'latoRegular', sans-serif;
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center;
        letter-spacing: .5px
    }

    .courses .divider {
        margin-bottom: 20px;
    }

ul.coursesList > li {
    width: 31.8%;
    margin-right: 25px;
}

    ul.coursesList > li:last-child {
        margin-right: 0;
    }

ul.coursesList li .photo {
    margin-bottom: 25px;
}

    ul.coursesList li .photo img {
        border: 3px solid #ddd1bc;
    }

ul.coursesList li .info ul li {
    margin-bottom: 20px;
    list-style-position: inside;
    list-style-type: disc;
    color: #565656;
}

    ul.coursesList li .info ul li:last-child {
        margin-bottom: 0;
    }

    ul.coursesList li .info ul li a {
        color: #565656;
        font-size: 16px;
        font-size: 1.6rem;
        border: 1px solid transparent;
    }

        ul.coursesList li .info ul li a:hover, ul.coursesList li .info ul li a:focus,
        ul.coursesList li .info ul li a:active {
            background: #f9f9d1;
            color: #9b0a0a;
            border-top: 1px solid #e6e1d7;
            border-bottom: 1px solid #e6e1d7;
            border-radius: 5px;
        }

ul.coursesList li .info {
    margin-bottom: 20px;
}

.factsRow {
    background: #f2f2f2;
    padding: 30px 0 90px 0;
}

    .factsRow h2 {
        color: #222;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 60px;
        letter-spacing: .5px;
        font-size: 32px;
        font-size: 3.2rem;
    }

.factsSlider .item {
    text-align: center;
    margin: 0 20px;
}

    .factsSlider .item a {
        color: #9d0404;
    }

        .factsSlider .item a:hover {
            opacity: .7;
        }

.factsSlider .icon {
    margin-bottom: 30px;
}

    .factsSlider .icon:hover {
        opacity: .7;
    }

.factsSlider h3 {
    color: #9d0404;
    text-align: center;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    font-size: 2.4rem;
}

    .alertBox .warning a:hover, .alertBox .warning a:focus, .alertBox .warning a:active,
    .factsSlider h3:hover, .factsSlider h3:focus, .factsSlider h3:active {
        background: #f9f9d1;
        color: #9b0a0a;
        border-top: 1px solid #e6e1d7;
        border-bottom: 1px solid #e6e1d7;
        border-radius: 5px;
    }

.factsSlider .text {
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
}

.factsSlider .owl-controls .owl-buttons div .leftArrow {
    background-position: -3px -137px;
}

    .factsSlider .owl-controls .owl-buttons div .leftArrow:hover {
        background-position: -55px -137px;
    }

.factsSlider .owl-controls .owl-buttons div .rightArrow {
    background-position: -30px -137px;
}

    .factsSlider .owl-controls .owl-buttons div .rightArrow:hover {
        background-position: -82px -137px;
    }

.factsSlider .owl-carousel .owl-wrapper, .factsSlider .owl-carousel .owl-item {
    padding: 0 20px;
}

.archive {
    color: #3a64a9;
    font-size: 16px;
    font-size: 1.6rem;
}

.newsEventsTabs {
    background: #ddd1bc;
    padding: 0 0 30px 0;
    position: relative;
}

    .newsEventsTabs .tabTitlesBG {
        position: absolute;
        z-index: 1;
        top: 0;
        background: #f2f2f2;
        height: 71px;
        width: 100%;
    }

@-moz-document url-prefix() {
    .newsEventsTabs .tabTitlesBG {
        height: 74px;
    }
}

.newsEventsSlider {
    margin-bottom: 30px;
}

    .newsEventsSlider .item {
        background: #FFF;
        padding: 30px;
        margin: 3px 20px 3px 3px;
        min-height: 475px;
        -webkit-box-shadow: 0px 0px 2px 2px rgba(188,188,188,1);
        -moz-box-shadow: 0px 0px 2px 2px rgba(188,188,188,1);
        box-shadow: 0px 0px 2px 2px rgba(188,188,188,1);
    }

    .newsEventsSlider .photo {
        margin-bottom: 20px;
    }

    .newsEventsSlider a {
        color: #9d0404;
    }

        .newsEventsSlider a:hover .photo, .newsEventsSlider a:hover h2 .newsEventsSlider .photo:hover {
            opacity: .7;
        }

    .newsEventsSlider h4 {
        margin-bottom: 10px;
        color: #9d0404;
        font-size: 18px;
        font-size: 1.8rem;
        border: 1px solid transparent;
    }

        .newsEventsSlider h4:hover, .newsEventsSlider a:focus h4, .newsEventsSlider a:active h4,
        .newsEventsSlider .readMore:hover, .newsEventsSlider .readMore:focus, .newsEventsSlider .readMore:active,
        footer.pageFooter .copyrightRow .privacy ul li a:hover, footer.pageFooter .copyrightRow .privacy ul li a:focus, footer.pageFooter .copyrightRow .privacy ul li a:active {
            background: #f9f9d1;
            color: #9b0a0a;
            border-top: 1px solid #e6e1d7;
            border-bottom: 1px solid #e6e1d7;
            border-radius: 5px;
        }

    .newsEventsSlider .date {
        margin-bottom: 10px;
        text-transform: uppercase;
        font-weight: 700;
    }

    .newsEventsSlider .text {
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .newsEventsSlider .readMore {
        float: right;
        border: 1px solid transparent;
    }

.newsEventsTabs .tabsContent .sliderMargin {
    margin: 0 65px;
}

.newsEventsTabs .sliderMargin .owl-controls .owl-buttons div .leftArrow {
    left: -65px;
}

.newsEventsTabs .sliderMargin .owl-controls .owl-buttons div .rightArrow {
    right: -65px;
}

.newsEventsTabs .owl-controls .owl-buttons div .leftArrow:hover {
    background-position: -3px -137px;
}

.newsEventsTabs .owl-controls .owl-buttons div .rightArrow:hover {
    background-position: -30px -137px;
}

.newsEventsSlider .owl-wrapper-outer {
    max-width: 1200px;
}

.newsEventsTabs .moreEvents {
    float: right;
    margin-right: 94px;
}

.whatsHappening {
    background: #f2f2f2;
    padding: 20px 0;
}

    .whatsHappening h2 {
        font-size: 36px;
        font-size: 3.6rem;
        font-weight: 400;
        color: #222;
        text-align: center;
        margin-bottom: 45px;
    }

        .whatsHappening h2 span {
            color: #9b0a0a;
        }

    .whatsHappening h3 {
        border-bottom: 1px solid #222;
        padding-bottom: 5px;
        margin-bottom: 15px;
        font-size: 2.2rem;
        color: #222;
    }

    .whatsHappening .colGroup {
        padding-right: 25px;
    }

        .whatsHappening .colGroup:last-child {
            padding-right: 0;
        }

.widget-calendar article {
    border-bottom: 1px solid #FFF;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

    .widget-calendar article:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }

.widget-calendar .date {
    color: #9b0a0a;
}

.widget-calendar .title a {
    color: #222;
}

    .widget-calendar .title a:hover {
        background: #f9f9d1;
        color: #9b0a0a;
        border-top: 1px solid #e6e1d7;
        border-bottom: 1px solid #e6e1d7;
        border-radius: 5px;
    }

.widget-social .socialToggles ul {
    margin: 0;
    padding: 0;
}

.widget-social .socialToggles li {
    display: inline-block;
    background: url('../images/designFiles/sprites.png');
    background-repeat: no-repeat;
    width: 36px;
    height: 37px;
    margin-right: 25px;
}

    .widget-social .socialToggles li:last-child {
        margin-right: 0;
    }

    .widget-social .socialToggles li:hover {
        cursor: pointer;
        opacity: .8;
    }

    .widget-social .socialToggles li.facebook {
        background-position: -111px -152px;
    }

    .widget-social .socialToggles li.twitter {
        background-position: -171px -152px;
    }

    .widget-social .socialToggles li.linkedIn {
        background-position: -232px -152px;
    }

    .widget-social .socialToggles li.youtube {
        background-position: -292px -152px;
    }
    .widget-social .socialToggles li.instagram {
        background-position: -111px -238px;
    }

.widget-social .socialContent article {
    display: none;
}

.widget-calendar .viewAll {
    float: right;
}

.widget-news ul {
    margin: 0;
    padding: 0;
}

.widget-news li {
    margin-bottom: 20px;
    list-style: none;
    border-bottom: 1px solid #FFF;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

    .widget-news li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .widget-news li a {
        color: #222;
    }

        .widget-news li a:hover {
            background: #f9f9d1;
            color: #9b0a0a;
            border-top: 1px solid #e6e1d7;
            border-bottom: 1px solid #e6e1d7;
            border-radius: 5px;
        }

.widget-news .viewAll {
    float: right;
}

/*************************
    Breadcrumbs 
*************************/
.breadcrumbs {
    margin: 30px 0;
    min-height: 41px;
}

    .breadcrumbs > ul {
        position: relative;
        background: #f6f6f6;
        border: 1px solid #d2d3d4;
    }

        .breadcrumbs > ul > li {
            margin-bottom: 0;
            max-height: 65px;
            position: relative;
            padding-left: 20px;
        }

            .breadcrumbs > ul > li:first-child {
                border-left: 1px solid #d2d3d4;
            }

            .breadcrumbs > ul > li:after {
                content: '';
                background: url(../images/designFiles/breadcrumbArrow.png);
                background-repeat: no-repeat;
                width: 24px;
                height: 40px;
                display: inline-block;
                position: absolute;
                top: 0;
                right: -24px;
            }

            .breadcrumbs > ul > li:first-child {
                z-index: 5;
                padding-left: 0;
                left: 0;
            }

            .breadcrumbs > ul > li:nth-child(2n+0) {
                z-index: 4;
                /*left:-10px;*/
            }

            .breadcrumbs > ul > li:nth-child(3n+0) {
                z-index: 3;
                /*left:-20px;*/
            }

            .breadcrumbs > ul > li:nth-child(4n+0) {
                z-index: 2;
                /*left:-30px;*/
            }

            .breadcrumbs > ul > li:nth-last-child(2):after {
                background: url(../images/designFiles/breadcrumbArrow2.png);
                background-repeat: no-repeat;
            }

            .breadcrumbs > ul > li:last-child {
                z-index: 1;
                background: #f6f6f6;
                padding-left: 10px;
            }

                .breadcrumbs > ul > li:last-child:after {
                    display: none;
                }

            .breadcrumbs > ul > li > a {
                color: #FFF;
                padding: 12px;
                display: inline-block;
                font: 13px/15px 'Lato', sans-serif;
                font: 1.3rem/1.5em 'Lato', sans-serif;
                position: relative;
                height: 40px;
            }

                .breadcrumbs > ul > li > a:hover {
                    color: #eecd73;
                }

                .breadcrumbs > ul > li > a:focus,
                .breadcrumbs > ul > li > a:active {
                    background-color: #680202;
                    color: #fff;
                }

            .breadcrumbs > ul > li.current > a {
                color: #222;
            }

                .breadcrumbs > ul > li.current > a:active,
                .breadcrumbs > ul > li.current > a:focus,
                .breadcrumbs > ul > li.current > a:hover {
                    background: #f9f9d1;
                    color: #9b0a0a;
                }

            .breadcrumbs > ul > li .arrow {
                content: '';
                background: url(../images/designFiles/sprites.png);
                background-repeat: no-repeat;
                background-position: -157px -94px;
                width: 15px;
                height: 9px;
                margin-right: 5px;
                display: inline-block;
            }

            .breadcrumbs > ul > li.current > a:before,
            .breadcrumbs > ul > li.current > a:after {
                display: none;
            }

            .breadcrumbs > ul > li.open .arrow {
                background-position: -57px -80px;
                position: relative;
                left: 1px;
                height: 12px;
                top: 1px;
            }

    /* Breadcrumb Dropdown */
    .breadcrumbs ul.dropDown {
        display: none;
        width: 300px;
        position: absolute;
        z-index: 2;
        background: #ebebeb;
        margin-left: -22px;
        margin-top: 2px;
        -webkit-box-shadow: 1px 1px 3px 0px rgba(204,204,204,1);
        -moz-box-shadow: 1px 1px 3px 0px rgba(204,204,204,1);
        box-shadow: 1px 1px 3px 0px rgba(204,204,204,1);
    }

    .breadcrumbs ul li:first-child .dropDown {
        margin-left: 0px;
    }

    .breadcrumbs ul.dropDown:before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 15px 10px;
        border-color: transparent transparent #ebebeb transparent;
        position: absolute;
        top: -14px;
        left: 10%;
    }

    .breadcrumbs ul.dropDown li {
        border-bottom: 1px solid #ccc;
    }

        .breadcrumbs ul.dropDown li:last-child {
            border-bottom: none;
        }

        .breadcrumbs ul.dropDown li a {
            display: block;
            padding: 20px 15px 20px 30px;
        }

            .breadcrumbs ul.dropDown li a:hover {
                color: #9d0404 !important;
            }

                .breadcrumbs ul.dropDown li a:hover:before {
                    content: '';
                    background: url(../images/designFiles/sprites.png);
                    background-repeat: no-repeat;
                    background-position: -130px -78px;
                    width: 9px;
                    height: 11px;
                    margin-right: 5px;
                    display: inline-block;
                    margin-left: -14px;
                }

/***********************
    Generic Content 
***********************/
.dropCap {
    font: 54px/54px 'Lato', sans-serif;
    font: 5.4rem/4.9rem 'Lato', sans-serif;
    float: left;
}

.introTxt {
    font-size: 18px;
    font-size: 1.8rem;
    width: 100%;
    margin-right: 20px;
    float: left;
}

.landingIntroRow .introTxt {
    width: 48%;
}

.blockQuoteSamples {
    margin-top: 20px;
}

    .blockQuoteSamples .column:first-child {
        margin-right: 60px;
    }

blockquote {
    background: #f9f4ed;
    padding: 20px 35px;
    color: #222;
    font-size: 26px;
    font-size: 2.6rem;
    border-left: none;
    position: relative;
}

    blockquote:before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 27px 23px 0 0;
        border-color: transparent #f9f4ed transparent transparent;
        position: absolute;
        left: -23px;
        top: 20%;
    }

    blockquote.darkGrey {
        background: #dcdcdc;
    }

        blockquote.darkGrey:before {
            border-color: transparent #dcdcdc transparent transparent;
        }

figcaption {
	position: relative !important;
    background: #d6d7d7;
    color: #222;
    font-style: italic;
    padding: 5px;
    text-align: center;
}

.genericAccordion .item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

    .genericAccordion .item:last-child {
        border-bottom: none;
    }

    .genericAccordion .item .title {
        color: #222;
    }

        .genericAccordion .item .title:before {
            content: '';
            background: url(../images/designFiles/sprites.png);
            background-repeat: no-repeat;
            background-position: -274px -73px;
            width: 22px;
            height: 21px;
            display: inline-block;
            margin-right: 20px;
            position: relative;
            top: 5px;
        }

    .genericAccordion .item.open .title:before, .genericAccordion.iconRight .item.open .title:after {
        background-position: -247px -73px;
    }

.genericAccordion.iconRight .item .title:before {
    display: none;
}

.genericAccordion.iconRight .item .title:after {
    content: '';
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -274px -73px;
    width: 22px;
    height: 21px;
    display: inline-block;
    margin-right: 0;
    position: relative;
    float: right;
}

.genericAccordion .item .content {
    display: none;
    margin-left: 45px;
    margin-top: 15px;
}

.genericAccordion.iconRight .item .content {
    margin-left: 100px;
    margin-right: 70px;
}

.twoCols .column, .threeCols .column, .fourCols .coloumn, .manualBreak .column {
    padding-right: 30px;
    margin-bottom: 20px;
}

    .twoCols .column:last-child, .threeCols .column:last-child, .fourCols .coloumn:last-child, .manualBreak .column:last-child {
        margin-right: 0;
    }

.shareIcons {
    min-height: 25px;
}

.stButton .stFb, .stButton .stTwbutton, .stButton .stMainServices, .stButton .stButton_gradient {
    height: 23px !important;
}

.st_fb_like_button .stButton_gradient, .st_fb_like_button .stButton_gradient:hover, .st_fb_like_vcount .stButton_gradient, .st_fb_like_vcount .stButton_gradient:hover, .st_fb_like_hcount .stButton_gradient, .st_fb_like_hcount .stButton_gradient:hover, .st_facebook_button .stButton_gradient, .st_facebook_button .stButton_gradient:hover, .st_facebook_vcount .stButton_gradient, .st_facebook_vcount .stButton_gradient:hover, .st_facebook_hcount .stButton_gradient, .st_facebook_hcount .stButton_gradient:hover,
.st_twitter_button .stButton_gradient, .st_twitter_button .stButton_gradient:hover, .st_twitter_vcount .stButton_gradient, .st_twitter_vcount .stButton_gradient:hover, .st_twitter_hcount .stButton_gradient, .st_twitter_hcount .stButton_gradient:hover,
.stButton .stHBubble {
    height: 22px !important;
}

.callToActionBox {
    background: #ddd1bc;
    padding: 25px;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5);
}

    .callToActionBox.iconCTA {
        padding: 15px 5px;
    }

    .callToActionBox.ctaRightCol {
        width: 72%;
        float: right;
        padding-left: 15px;
        margin-bottom: 30px;
    }

    .callToActionBox .photo {
        float: left;
        margin-right: 20px;
        width: 45%;
        max-width: 250px;
        width: auto;
    }

    .callToActionBox.iconCTA .photo {
        max-height: 45px;
        float: left;
        margin-right: 20px;
    }

    .callToActionBox.iconCTA .info {
        margin-top: 18px;
    }

        .callToActionBox.iconCTA .info a {
            color: #385e9d;
        }

            .callToActionBox.iconCTA .info a:hover,
            .callToActionBox.iconCTA .info a:focus,
            .callToActionBox.iconCTA .info a.active {
                background: #e8e8e8;
                color: #9b0a0a;
                border-top: 1px solid #d2d2d2;
                border-bottom: 1px solid #d2d2d2;
                border-radius: 5px;
                box-sizing: border-box;
            }

    .callToActionBox .info {
        float: left;
        width: 60%;
        font-size: 16px;
        font-size: 1.6rem;
    }

/*** Sidebar Widgets ***/
.sidebar aside {
    background: #dcdcdc;
    border: 2px solid #cfcfcf;
    padding: 25px;
    margin-bottom: 35px;
}

    .sidebar aside a:active, .sidebar aside a:focus, .sidebar aside a:hover {
        background: #e8e8e8;
        color: #9b0a0a;
        border-top: 1px solid #d2d2d2;
        border-bottom: 1px solid #d2d2d2;
        border-radius: 5px;
        box-sizing: border-box;
    }

.sidebar ul li a {
    color: #222;
}

.callToActionWidget .photo {
    margin-bottom: 20px;
}

    .callToActionWidget .photo img {
        border: 3px solid #cfcfcf;
    }

.callToActionWidget a {
    display: block;
}

.genericHTMLWidget h4 {
    font-size: 18px;
    font-size: 1.8rem;
}

.sidebar aside.yellow {
    background: #ddd1bc;
}

.sidebar aside.grey {
    background: #dcdcdc;
}

.sidebar aside.yellow a {
    color: #305186;
}

    .sidebar aside.yellow a:active, .sidebar aside.yellow a:focus, .sidebar aside.yellow a:hover {
        background: #e8dfd0;
        color: #9b0a0a;
        border-top: 1px solid #c9b491;
        border-bottom: 1px solid #c9b491;
        border-radius: 5px;
        box-sizing: border-box;
    }

.sidebar aside.lightTan {
    background: #faf5ef;
    border-color: #cacaca;
}

    .sidebar aside.lightTan a {
        text-decoration: underline;
    }

        .sidebar aside.lightTan a:active, .sidebar aside.lightTan a:focus, .sidebar aside.lightTan a:hover {
            background: #fcf9f6;
            color: #9b0a0a;
            border-top: 1px solid #eae1d7;
            border-bottom: 1px solid #eae1d7;
            border-radius: 5px;
            box-sizing: border-box;
        }

.sidebar aside.darkGrey {
    background: #c6c6c6;
}

    .sidebar aside.darkGrey a:active, .sidebar aside.darkGrey a:focus, .sidebar aside.darkGrey a:hover {
        background: #dadada;
        color: #9b0a0a;
        border-top: 1px solid #bfbfbf;
        border-bottom: 1px solid #bfbfbf;
        border-radius: 5px;
        box-sizing: border-box;
    }

/***************************
    Landing Page 
***************************/
.pageTitle {
    margin: 10px 0 25px 0;
    border-top: 3px solid #ccc;
    border-bottom: 3px solid #ccc;
}

    .pageTitle h1 {
        color: #FFF;
        font-size: 38px;
        font-size: 3.8rem;
        margin: 0;
        padding: 20px 0;
    }

.landingIntroRow {
    margin-bottom: 45px;
}

    .landingIntroRow article {
        width: 48%;
        float: left;
        margin-right: 20px;
    }

        .landingIntroRow article:last-child {
            margin-right: 0;
        }

.primaryFocusBox {
    background: #dcdcdc;
    padding: 20px 15px;
    border: 2px solid #cfcfcf;
    font-size: 16px;
    font-size: 1.6rem;
}

.landingIntroRow article.primaryFocusBox {
    width: 50%;
}

.primaryFocusBox h2 {
    color: #9b0a0a;
    font-size: 21px;
    font-size: 2.1rem;
}

.primaryFocusBox .photo {
    float: left;
    width: 25%;
    max-width: 121px;
    margin-right: 20px;
}

    .primaryFocusBox .photo img {
        border: 3px solid #babbbb;
    }

.primaryFocusBox .info {
    float: left;
    width: 70%;
}

.primaryFocusBox a:hover,
.primaryFocusBox a:focus,
.primaryFocusBox a:active {
    background: #f9f9d1;
    color: #9b0a0a;
}

.pageBlock {
    background: #f9f4ed;
    padding: 35px;
    float: left;
    margin-right: 25px;
    margin-bottom: 50px;
    width: 31.9%;
    border: 2px solid #ebe8e3;
}

    .pageBlock:nth-child(3n+0) {
        margin-right: 0;
    }

    .pageBlock:hover {
        background: #f4e8d6;
    }

    .pageBlock .photo {
        margin-bottom: 20px;
    }

        .pageBlock .photo img {
            border: 3px solid #d1cec9;
        }

    .pageBlock h1, .pageBlock h2 {
        font-size: 24px;
        font-size: 2.4rem;
        margin-bottom: 15px;
        color: #9b0a0a;
        text-decoration: underline;
    }

    .pageBlock .summary {
        color: #565656;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .pageBlock a:focus h2,
    .pageBlock a:active h2 {
        background: #f9f9d1;
        color: #9b0a0a;
    }

.dividerLines {
    background: url(../images/designFiles/dividerLines.png);
    background-repeat: repeat-x;
    position: relative;
    text-align: left;
}

    .dividerLines h1, .dividerLines h2 {
        background: #ddd1bc;
        display: inline-block;
        font-size: 20px;
        font-size: 2rem;
        padding-right: 10px;
        margin-top: -2px;
        margin-bottom: 25px;
        text-transform: uppercase;
        color: #9b0a0a;
    }

.preFooter {
    background: #ddd1bc;
    padding: 45px 0 0 0;
}

    .preFooter aside {
        float: left;
        width: 31.9%;
        margin-right: 25px;
        margin-bottom: 20px;
    }

    .preFooter p {
        line-height: 1.7;
    }

    .preFooter aside:nth-child(3n+0) {
        margin-right: 0;
    }

    .preFooter.videoHasQuote aside:nth-child(3n+0) {
        margin-right: 25px;
    }

    .preFooter.videoHasQuote aside.videoSpotlightWidget {
        width: 65%;
    }

.videoSpotlightWidget .vid {
    width: 100%;
    float: none;
    margin-right: 30px;
    padding-right: 0;
}

.preFooter.videoHasQuote .videoSpotlightWidget .vid {
    width: 50%;
    float: left;
}

.preFooter a:hover,
.preFooter a:focus,
.preFooter a:active {
    background: #f9f9d1;
    color: #9b0a0a;
}

    .preFooter a:hover h2,
    .preFooter a:focus h2,
    .preFooter a:active h2 {
        background: #f9f9d1;
        color: #9b0a0a;
    }

.videoSpotlightWidget .pullQuote {
    float: left;
    width: 45%;
}

.videoSpotlightWidget blockquote {
    font-style: italic;
    line-height: 1.2;
}

.preFooter.videoHasQuote aside.genericHTMLWidget {
    margin-right: 0;
}

.sidebarRight .videoSpotlightWidget .pullQuote {
    width: 100%;
    margin-top: 35px;
    float: none;
}

.sidebarRight .videoSpotlightWidget {
    float: none;
}

    .sidebarRight .videoSpotlightWidget blockquote {
        padding: 20px 25px;
        margin-bottom: 30px;
        font-size: 20px;
        font-size: 2rem;
    }

        .sidebarRight .videoSpotlightWidget blockquote:before {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 27px 0 0 27px;
            border-color: transparent transparent transparent #f9f4ed;
            position: absolute;
            left: 40px;
            top: -27px;
        }

.factsWidget {
    text-align: center;
}

    .factsWidget .item {
        float: left;
        width: 45%;
        margin-right: 30px;
    }

        .factsWidget .item:last-child {
            margin-right: 0;
        }

    .factsWidget .icon {
        max-width: 105px;
        margin: 0 auto 10px auto;
    }

    .factsWidget h2 {
        color: #9d0404;
        font-size: 16px;
        font-size: 1.6rem;
    }

.preFooter.videoHasQuote aside.workshopsWidget {
    margin-right: 0;
}

.learningCommunityWidget img {
    float: left;
    padding: 0 15px 15px 0;
}


/*********************
    Program Page 
**********************/
.sidebarLeft {
}

.filterListWrapper .sidebarHeader {
    background: #ddd1bc;
    padding: 15px 20px;
    font-size: 18px;
    font-size: 1.8rem;
    border: 1px solid #cbc0ac;
    text-transform: none;
    margin-bottom: 0;
    font-family: 'Arvo', serif;
    font-weight: normal;
    width: 100%;
}

.filterListWrapper legend.sidebarHeader {
}

.sidebarHeader .toggleArrow {
    display: none;
}

.sidebarPadding {
    padding: 25px 15px;
}

.sidebarLeft .pageIntro {
    background: #FFF;
    padding: 20px 0;
}

.filterListWrapper {
    background: #faf5ef;
    border: 1px solid #cbc0ac;
    margin-bottom: 30px;
}

    .filterListWrapper h2,
    .filterListWrapper legend {
        font-size: 18px;
        font-size: 1.8rem;
        font-family: 'Lato', sans-serif;
        margin-bottom: 15px;
    }

    .filterListWrapper h2 {
        font-size: 22px;
        font-size: 2.2rem;
        color: #222;
        font-family: 'Arvo', sans-serif;
    }

    .filterListWrapper input[type="checkbox"] + label, .filterListWrapper input[type="radio"] + label {
        margin-bottom: 0;
    }

.programKeywordBox {
    position: relative;
}

    .programKeywordBox input {
        width: 100%;
        margin-bottom: 25px;
        padding-left: 35px;
        font-size: 14px;
        font-size: 1.4rem;
        color: #565656;
    }

    .programKeywordBox .keyIcon {
        background: url(../images/designFiles/sprites.png);
        background-repeat: no-repeat;
        background-position: -4px -109px;
        width: 18px;
        height: 10px;
        display: inline-block;
        margin-right: 5px;
        position: absolute;
        top: 13px;
        left: 10px;
        margin-right: 5px;
    }

label:hover {
    cursor: pointer;
}

input[type='checkbox'] {
    margin-bottom: 15px;
    width: 15px;
    height: 15px;
}

.filterType input {
    float: left;
}

    .filterType input[type="submit"],
    .filterType input[type="button"] {
        float: right;
    }

.filterType label {
    width: 85%;
}

.filterType fieldset {
    border: none;
    margin-bottom: 10px;
}

.updateListBtn {
    float: right;
}

.programContent {
    float: left;
    padding-left: 30px;
    margin-bottom: 30px;
}

.filterType fieldset ul li, .jobFieldFilter fieldset ul li {
    clear: both;
    margin-bottom: 10px;
}

.programContent .pageIntro p {
    font-size: 16px;
    font-size: 1.6rem;
}

.tooltip {
    background: url(../images/designFiles/sprites.png);
    background-repeat: no-repeat;
    background-position: -302px -23px;
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-left: 5px;
    position: relative;
    top: 2px;
    position: relative;
    cursor: pointer;
}

.tooltipModal {
    display: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #f8f8f8;
    padding: 12px;
    position: absolute;
    left: 3000px;
    top: 3000px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 220px;
    border: 2px solid #ccc;
    z-index: 100;
}

    .tooltipModal:after, .tooltipModal:before {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .tooltipModal:after {
        border-color: rgba(248, 248, 248, 0);
        border-top-color: #f8f8f8;
        border-width: 10px;
        margin-left: -10px;
    }

    .tooltipModal:before {
        border-color: rgba(204, 204, 204, 0);
        border-top-color: #ccc;
        border-width: 13px;
        margin-left: -13px;
    }

.tooltipClose {
    float: right;
    float: right;
    background: url(../images/designFiles/closeBtn.png);
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.showAllPrograms {
    float: right;
    margin-bottom: 25px;
}

.filterIcons {
    float: right;
}

    .filterIcons a:active,
    .filterIcons a:focus {
        border: 1px solid #fff;
    }

    .filterIcons .topArrow, .filterIcons .bottomArrow {
        background: url(../images/designFiles/sprites.png);
        background-repeat: no-repeat;
        width: 12px;
        height: 8px;
        display: block;
        margin-bottom: 3px;
    }

    .filterIcons .topArrow {
        background-position: -112px -107px;
    }

    .filterIcons .bottomArrow {
        background-position: -112px -120px;
    }

        .filterIcons .topArrow:hover, .filterIcons .bottomArrow:hover {
            opacity: .7;
        }

/* Main Content Area */
.mainContentArea {
    float: left;
    padding-left: 30px;
    position: relative;
}

.mainContentFullWidth {
    float: none;
    padding-left: 0;
}

.mainContentArea h1 {
    text-transform: uppercase;
}

    .mainContentArea p a:active, .mainContentArea p a:focus, .mainContentArea p a:hover,
    .mainContentArea h1 a:active, .mainContentArea h1 a:focus, .mainContentArea h1 a:hover,
    .mainContentArea h2 a:active, .mainContentArea h2 a:focus, .mainContentArea h2 a:hover,
    .mainContentArea h3 a:active, .mainContentArea h3 a:focus, .mainContentArea h3 a:hover,
    .mainContentArea h4 a:active, .mainContentArea h4 a:focus, .mainContentArea h4 a:hover,
    .mainContentArea h5 a:active, .mainContentArea h5 a:focus, .mainContentArea h5 a:hover,
    .mainContentArea h6 a:active, .mainContentArea h6 a:focus, .mainContentArea h6 a:hover {
        background: #f9f9d1;
        color: #9b0a0a;
        border-top: 1px solid #e6e1d7;
        border-bottom: 1px solid #e6e1d7;
        border-radius: 5px;
    }

/* Two Column Left Layout */
.twoColLeft .mainContentArea {
    float: right;
}

    .twoColLeft .mainContentArea a {
        text-decoration: underline;
    }

        .twoColLeft .mainContentArea a.button {
            text-decoration: none;
        }

            .twoColLeft .mainContentArea a.button:hover,
            .twoColLeft .mainContentArea a.button:focus,
            .twoColLeft .mainContentArea a.button:active {
                text-decoration: underline;
            }

/* Three Column Layout */
.threeCol .threeTwoColWrapper {
    float: left;
}

.threeCol .mainContentArea {
    float: right;
}

.threeCol .sidebar.sidebarLeft {
    float: left;
}

.threeCol .sidebar.sidebarRight {
    float: left;
    padding-left: 30px;
}

/* People List */
.peopleList {
    margin: 5px 0 30px 0;
}

    .peopleList li {
        list-style-type: none;
        padding: 10px;
    }

        .peopleList li:nth-child(even) {
            background: #eceff6;
        }

        .peopleList li:last-child {
            border-bottom: 0;
        }

    .peopleList .personImage {
        float: left;
        width: 70px;
        margin: 0 10px 10px 0;
    }

    .peopleList .personInfo {
        margin-left: 80px;
    }

    .peopleList li.no-bioPic .personInfo {
        margin-left: 0;
    }

    .peopleList p {
        margin: 0;
    }

    .peopleList .title {
        font-weight: 700;
    }

    .peopleList h3 {
        font-family: 'Lato', sans-serif;
        margin-bottom: 5px;
        font-size: 16px;
        font-size: 1.6rem;
    }

/* People Detail */
.peopleDetail {
    margin: 30px 0;
}

    .peopleDetail .personImage {
        float: left;
        width: 105px;
        margin: 0 10px 10px 0;
    }

    .peopleDetail .personInfo {
        margin-left: 115px;
    }

    .peopleDetail h2 {
        font-size: 18px;
        font-size: 1.8rem;
        font-family: 'Lato', sans-serif;
        margin-top: 16px;
    }
/* News List */

.newsListIntro,
.newsList {
    margin-left: 28%;
}

.newsList {
    min-height: 580px;
}

.newsFilter {
    float: left;
    position: absolute;
    top: 0;
    width: 25%;
}

.newsKeywordBox {
    position: relative;
}

    .newsKeywordBox input {
        width: 100%;
        margin-bottom: 25px;
        padding-left: 35px;
        font-size: 14px;
        font-size: 1.4rem;
        color: #565656;
    }

    .newsKeywordBox .keyIcon {
        background: url(../images/designFiles/sprites.png);
        background-repeat: no-repeat;
        background-position: -4px -109px;
        width: 18px;
        height: 10px;
        display: inline-block;
        margin-right: 5px;
        position: absolute;
        top: 13px;
        left: 10px;
        margin-right: 5px;
    }

.newsList .newsMonthHeader {
    font-size: 16px;
    font-size: 1.6rem;
    background-color: #eceff6;
    padding: 8px 0;
}

    .newsList .newsMonthHeader span {
        display: inline-block;
        width: 160px;
        text-align: right;
    }

.newsList .newsMonth ul {
    margin-left: 0;
}

.newsList .newsMonth li {
    list-style: none;
    clear: both;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
}

    .newsList .newsMonth li:last-child {
        border-bottom: 0;
        padding-bottom: 5px;
    }

    .newsList .newsMonth li:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }

.newsList .newsMonth .newsDate {
    float: left;
    width: 160px;
    text-align: right;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: 'Lato', sans-serif;
    color: #000;
    font-weight: normal;
}

.newsList .newsMonth .newsSummary {
    margin-left: 180px;
}

.newsList .newsMonth .newsTitle {
    font-size: 18px;
    font-size: 1.8rem;
    font-family: 'Lato', sans-serif;
    color: #000;
}

    .newsList .newsMonth .newsTitle a:active,
    .newsList .newsMonth .newsTitle a:focus,
    .newsList .newsMonth .newsTitle a:hover {
        background: #f9f9d1;
        color: #9b0a0a;
        border-top: 1px solid #e6e1d7;
        border-bottom: 1px solid #e6e1d7;
        border-radius: 5px;
    }

.newsList .newsMonth .newsImageThumb {
    float: right;
    margin: 0 0 5px 15px;
    border: 3px solid #d6d7d7;
    width: 170px;
}

    .newsList .newsMonth .newsImageThumb:hover {
        opacity: .7;
    }
/* Course Search */

.courseListIntro {
    width: 75%;
    float: right;
    padding-left: 30px;
}

.courseFilter {
    width: 25%;
    float: left;
}

.courseResults {
    width: 75%;
    float: right;
    padding-left: 30px;
}

    .courseResults .genericAccordion {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #ccc;
    }

.courseSidebar {
    width: 25%;
    float: left;
    clear: left;
}

.courseKeywordBox {
    position: relative;
}

    .courseKeywordBox input {
        width: 100%;
        margin-bottom: 25px;
        padding-left: 35px;
        font-size: 14px;
        font-size: 1.4rem;
        color: #565656;
    }

    .courseKeywordBox .keyIcon {
        background: url(../images/designFiles/sprites.png);
        background-repeat: no-repeat;
        background-position: -4px -109px;
        width: 18px;
        height: 10px;
        display: inline-block;
        margin-right: 5px;
        position: absolute;
        top: 13px;
        left: 10px;
        margin-right: 5px;
    }

.iconLink {
    clear: both;
    margin-bottom: 15px;
}

.courseResults ul {
    margin-left: 0;
}

    .courseResults ul li {
        list-style: none;
    }

.courseResults .courseName {
    color: #222;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    font-size: 1.4rem;
    padding-right: 50px;
    display: inline-block;
}

    .courseResults .courseName:active, .courseResults .courseName:focus, .courseResults .courseName:hover {
        cursor: pointer;
    }

.courseResults .courseNumber {
    display: inline-block;
    width: 90px;
    float: left;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
}

.courseResults .course {
    margin-left: 100px;
    display: block;
}

.courseResults .courseInfo {
    padding: 1rem 0;
    margin-left: 100px;
}

/* Course Accordion Plugin Styles */
.a11yAccordion .a11yAccordionItem {
    margin: 0 auto;
    padding: 1rem;
    list-style-type: none;
    border-bottom: 1px solid #ccc;
}

    .a11yAccordion .a11yAccordionItem:first-child {
        border-top: 1px solid #ccc;
    }

    .a11yAccordion .a11yAccordionItem .accordionHeader {
        position: relative;
        overflow: auto;
    }

        .a11yAccordion .a11yAccordionItem .accordionHeader .a11yAccordionItemHeaderLink {
            position: absolute;
            top: 0;
            right: 0;
            width: 22px;
            height: 22px;
            overflow: hidden;
        }

            .a11yAccordion .a11yAccordionItem .accordionHeader .a11yAccordionItemHeaderLink:active,
            .a11yAccordion .a11yAccordionItem .accordionHeader .a11yAccordionItemHeaderLink:focus,
            .a11yAccordion .a11yAccordionItem .accordionHeader .a11yAccordionItemHeaderLink:hover {
                border-radius: 0;
                border-top: 0;
                border-bottom: 0;
            }

        .a11yAccordion .a11yAccordionItem .accordionHeader .a11yAccordionItemHeaderLinkShowLabel {
            width: 22px;
            height: 22px;
            background: url(../images/designFiles/sprite-accordion.png) no-repeat;
            display: block;
            text-indent: -999px;
        }

        .a11yAccordion .a11yAccordionItem .accordionHeader .a11yAccordionItemHeaderLinkHideLabel {
            width: 22px;
            height: 22px;
            background: url(../images/designFiles/sprite-accordion.png) no-repeat 0 -44px;
            display: block;
            text-indent: -999px;
        }

        .a11yAccordion .a11yAccordionItem .accordionHeader .a11yAccordionItemHeaderLink .a11yAccordionItemHeaderLinkHiddenLabel,
        .a11yAccordion .a11yAccordionNoResultsItem .accordionHeader .a11yAccordionItemHeaderLink .a11yAccordionItemHeaderLinkHiddenLabel {
            left: -900px;
            top: -900px;
            position: absolute;
        }

    .a11yAccordion .accordionHiddenArea,
    .a11yAccordion .a11yAccordionItem .accordionHiddenArea,
    .a11yAccordionNoResultsItem .accordionHiddenArea {
        padding: .5em;
    }

.mainMenu a, .breadcrumbs a, .utilityNav a {
    text-decoration: none !important;
}

.utilityNav > ul > li > a {
    padding-top: 0 !important;
}

.utilityNav .searchBox {
    padding: 7px 5px;
    width: 212px;
    background: #f9f4ed;
    margin-bottom: -1px;
    position: relative;
    float: right;
    margin-right: -27px;
    margin-top: -1px;
    border: 1px solid #efefef;
}

    .utilityNav .searchBox input {
        float: left;
        font-size: 1.4rem;
        width: 100%;
        height: 30px;
        padding: 5px;
        font-size: 12px;
    }

        .utilityNav .searchBox input:focus,
        .utilityNav .searchBox input:focus {
            background: #e3ae20;
        }

    .utilityNav .searchBox a {
        top: auto;
        height: 30px;
        right: 3px;
        background: #eee url(../images/designFiles/footerSearchIcon.png);
        background-repeat: no-repeat;
        position: absolute;
    }

        .utilityNav .searchBox a:hover,
        .utilityNav .searchBox a:active,
        .utilityNav .searchBox a:focus {
            opacity: .7;
            background: #eee url(../images/designFiles/footerSearchIcon.png) !important;
        }

.skiptocontent {
    position: fixed;
    left: 0;
    top: 0;
    background-color: #BF1722;
    padding: 10px;
    z-index: 5000;
    margin-top: -50px;
}

    .skiptocontent a {
        color: #fff;
        font-size: 1.6rem;
    }

.responsiveTable td,
.responsiveTable th {
    line-height: 2rem;
}

nav.sitemap a:hover {
    background: #f9f9d1;
    color: #9b0a0a;
    border-top: 1px solid #e6e1d7;
    border-bottom: 1px solid #e6e1d7;
    border-radius: 5px;
}

/* Faculty Page */
.alphaList {
    background: #f9f5ee;
    padding: 15px;
    border: 1px solid #cbc0ac;
    margin-top: 5px;
}

    .alphaList h6 {
        color: #222;
        font-weight: 400;
        font-family: 'Lato', sans-serif;
    }

    .alphaList li {
    }

        .alphaList li:after {
            content: '|';
            padding-left: 5px;
        }

        .alphaList li:last-child:after {
            display: none;
        }

        .alphaList li a {
            color: #222;
            font-size: 17px;
            font-size: 1.7rem;
            font-weight: 700;
            font-family: 'Lato', sans-serif;
        }

        .alphaList li.active a {
            color: #9b0a0a;
        }

    .alphaList .hideThese {
        display: none;
    }
