/*  Based on Template J 
    
    Grand Rapids Public Schools
-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --GRPS_XDkBlue: #002252; /* 15.54 */
    --GRPS_DkBlue: #002E6D; /* 13.03 */

    --GRPS_Blue: #005596; /* 7.66 */
    --GRPS_70Blue: #4476ae; /* 4.72 */
    --GRPS_45Blue: #7e9bc7; /* 2.83 */
    --GRPS_20Blue: #bfcbe3; /* 1.63 */
    --GRPS_XLtBlue: #dde8f1; /* 1.24 */

    --GRPS_Red: #d32d27; /* 5.03 */
    --GRPS_Orange: #f47b20; /* 2.72 */
    --GRPS_DkOrange: #EF6E0B; /* 3.04 */
    --GRPS_XDkOrange: #c25400; /* 4.6 */

    --GRPS_DkGray: #1a1a1a; /* 17.4 */
    --GRPS_Gray: #6e7170; /* 4.93 */
    --GRPS_LtGray: #cfcfcf; /* 1.55 */
    --GRPS_XLtGray: #F9F9F9; /* 1.05 */

    --GRPS_DefaultText: #2c2c2c; /* 13.96 */

    --font-size-sub: clamp(0.91rem, 0.24vw + 0.85rem, 1.04rem);
    --font-size-base: clamp(1rem, 0.34vw + 0.91rem, 1.2rem);
    --font-size-h5: clamp(1.1rem, 0.46vw + 0.98rem, 1.35rem);
    --font-size-h4: clamp(1.21rem, 0.61vw + 1.06rem, 1.54rem);
    --font-size-h3: clamp(1.33rem, 0.78vw + 1.14rem, 1.76rem);
    --font-size-h2: clamp(1.46rem, 0.98vw + 1.22rem, 2rem);
    --font-size-h1: clamp(1.61rem, 1.23vw + 1.3rem, 2.5rem);

    --Font_Base: "Roboto Condensed", Helvetica, Arial, sans-serif;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Body */
.page_body,
.fbd_content,
.fbcms_htmleditor
{
    color: var(--GRPS_DefaultText);
    font: 400 var(--font-size-base)/1.5 var(--Font_Base);
}
.page_body
{
    background: #ffffff;
    margin: 0;
    min-width: 320px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: none;
    height: 100vh;
}
.fbd_content,
.fbcms_htmleditor
{
    background-color: #ffffff;
}
/* END Body */

/* General Styling */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
    display: block;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}
.fbcms_content img:not(.email_icon)
{
    max-width: 100%;
    height: auto !important;
}

a,
.fbcms_spotlight_text .more_link,
.fbcms_cards .fbcms_card_link,
.building .building_button {
    color: var(--GRPS_Red);
}
@media only screen and (min-width: 768px)
{
    :target::before { /*adds padding to anchor links to accomodate sticky header*/
        content: "";
        display: block;
        height: 150px;
        margin: -150px 0 0;
    }
}

input,
textarea,
button,
select {
    font: 100% var(--Font_Base);
    color: #666;
    vertical-align: middle;
}

form,
fieldset {
    margin: 0;
    padding: 0;
    border-style: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="file"],
input[type="submit"] {
    cursor: pointer;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    margin: 0;
    padding: 4px 7px;
}

textarea {
    overflow: auto;
    resize: vertical;
    vertical-align: top;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}
/* END General Styling */

/* wrapper & overall structure */
.fbcms_component
{
    max-width: 100%;
    display: block;
    width: 100%;
}
.fbcms_component::after
{
    content: "";
    display: table;
    clear: both;
}
.component_liner
{
    width: 100%;
}
@media only screen and (min-width: 768px)
{
    .component_liner,
    .nav-slider-deactivated .navigation_slider,
    .fbcms_ppz_widget_liner
    {
        width: calc(100% - 110px);
        height: 100%;
        position: relative;
        max-width: 2000px;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 1200px)
{
    .component_liner,
    .nav-slider-deactivated .navigation_slider,
    .fbcms_ppz_widget_liner
    {
        width: calc(100% - 120px);
    }
}
@media print {
}

/*
===========================================================
 ANIMATIONS
===========================================================
*/
@media screen and (prefers-reduced-motion: no-preference) and (min-width: 768px)
{
    /* Enrollment */
    @keyframes drop-in {
        from {
            transform: scale(1, 1) translateY(-300px);
        }
        70% {
            transform: scale(1.01, 1.01) translateY(5px);
        }
        90% {
            transform: scale(.95, .95) translateY(-5px);
        }
        to {
            transform: scale(1, 1) translateY(0);
        }
    }

    /* button */
    @keyframes wiggle {
      0% {
        transform: rotate(0deg);
      }
      33% {
        transform: rotate(5deg);
      }
      66% {
        transform: rotate(-5deg);
      }
      100% {
        transform: rotate(0deg);
      }
    }

    /* Slide Up */
    /*.page_body:not(.fbcms_editmode) .animate.slide-up:not(.already-visible)
    {
        padding-top: 200px;
        transform: translateY(250px);
        opacity: .5;
    }
    .page_body:not(.fbcms_editmode) .animate.slide-up.come-in
    {
      animation: come-up .8s ease-out forwards;
    }
    @keyframes come-up {
      90% {
        transform: translateY(-10px);
        opacity: 1;
      }
      100% { 
        padding-top: initial;
        transform: translateY(0); 
        opacity: 1;
      }
    }*/

    /* Slide Right */
    /*.page_body:not(.fbcms_editmode) .animate.slide-right:not(.already-visible)
    {
      transform: translateX(-100vw);
    }
    .page_body:not(.fbcms_editmode) .animate.slide-right.come-in
    {
      animation: come-right 1.4s ease-out forwards;
    }
    @keyframes come-right {
      90% {
        transform: translateX(10px);
      }
      100% { 
        transform: translateX(0); 
      }
    }*/

    /* Slide Left */
    /*.page_body:not(.fbcms_editmode) .animate.slide-left:not(.already-visible)
    {
      transform: translateX(100vw);
    }
    .page_body:not(.fbcms_editmode) .animate.slide-left.come-in
    {
      animation: come-left 1.3s ease-out forwards;
    }
    @keyframes come-left {
      90% {
        transform: translateX(-10px);
      }
      100% { 
        transform: translateX(0); 
      }
    }*/

    /* Zoom In */
    /*.page_body:not(.fbcms_editmode) .animate.zoom-in:not(.already-visible)
    {
      transform: scale(0);
    }
    .page_body:not(.fbcms_editmode) .animate.zoom-in.come-in
    {
      animation: zoom-in 1s cubic-bezier(0.57, 0.32, 0.58, 1.24) forwards;
    }
    @keyframes zoom-in {
      100% { 
        transform: scale(1); 
      }
    }*/
}

/*
===========================================================
 HEADER
===========================================================
*/
.fbcms_header
{
    background: var(--GRPS_DkBlue);
    z-index: 3;
}
.fbcms_header .header_top
{
    background-color: var(--GRPS_Red);
    color: #fff;
}
.fbcms_header .header_top a
{
    color: #fff;
}
.fbcms_header .header_top .site_notice
{
    padding: 15px 12px 1px;
}
.fbcms_header .header_main
{
    border-top: 40px solid var(--GRPS_Blue);
}
.fbcms_header .header_main
{
    position: relative;
}
@media only screen and (min-width: 768px) 
{
    .fbcms_header
    {
        box-shadow: 0 4px 8px rgba(0,0,0,.3);
    }
    .fbcms_header .header_top .site_notice
    {
        padding: 15px 0 1px;
    }
    .fbcms_header .header_main
    {
        height: 144px;
        position: relative;
    }
    .navigation_wrapper
    {
        background-color: var(--GRPS_DkBlue);
        border-top: solid 1px var(--GRPS_Blue);
        z-index: 3;
    }

    .fbcms_header.shrink .header_main
    {
        height: 74px;
        border-top-width: 4px;
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
    }
    .fbcms_header.shrink .menu_head,
    .fbcms_header.shrink .search-form,
    .fbcms_header.shrink .menu_quicklinks,
    .fbcms_header.shrink .menu_focus,
    .fbcms_header.shrink .menu_districtfocus li:not(:last-child)
    {
        display: none;
    }
    .fbcms_header.shrink .logo
    {
        width: 100%;
        margin-top: 8px;
    }
    .fbcms_header.shrink .site_logo {
        width: 90px;
        margin-top: 0;
    }
    .fbcms_header.shrink .site_logo_text {
        width: 300px;
        margin-top: 0;
        max-width: calc(100% - 370px);
    }
}
@media only screen and (min-width: 994px) 
{
    .nav-slider-deactivated .fbcms_header.shrink .nav-main .top_level_link
    {
        font-size: .92rem;
    }
}
@media print {
    .fbcms_header
    {
        background: transparent;
    }
    .fbcms_header .header_main {
        border-top: none;
    }
    .logo {
        filter: brightness(0);
    }
}

/* Logo */
.logo {
    display: block;
    padding: 6px 12px 12px;
    text-decoration: none;
}
.logo:focus
{
    outline-color: #fff;
}
.site_logo,
.site_logo_text
{
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}
.fbcms_header.shrink .site_logo,
.fbcms_header.shrink .site_logo_text
{
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.site_logo img,
.site_logo_text img {
    max-width: 100%;
    height: auto;
}
.site_logo
{
    width: 160px;
    margin-bottom: 8px;
}
@media only screen and (min-width: 768px)
{
    .logo {
        height: 0;
        padding: 0;
    }
    .site_logo {
        margin: 4px 0 0 0;
        width: 190px;
    }

    .site_logo_text {
        margin: -30px 0 0 4px;
        width: 400px;
        max-width: calc(100% - 342px);
    }
    .site_logo_text.vpadm_editable
    {
        max-width: none;
    }
}
@media only screen and (min-width: 1100px) 
{
    .site_logo_text {
        margin: 14px 0 0 4px;
    }
}
@media print {
    .site_logo
    {
        width: 150px;
    }
    .site_logo_text
    {
        width: 300px;
    }
}

/* Search */
.search-form
{
    position: absolute;
    top: -40px;
    right: 50px;
    width: auto;
    z-index: 300; 
    color: #fff;
}

.search-form .search-input,
.search-form .submit
{
    display: inline-block;
    height: 40px;
    vertical-align: middle;
    border: none;
}

.search-form .search-input
{
    width: 150px;
    padding: 5px 12px;
    background-color: var(--GRPS_70Blue);
    color: #fff;
}
.search-form .submit
{
    color: #fff;
    float: right;
    text-indent: -9999px;
    width: 40px;
    position: relative;
    background: var(--GRPS_XDkBlue); /*url(../img/bg-search-ico.png) no-repeat center;*/
    transition: all .15s ease;
}
.search-form .submit:hover,
.search-form .submit:focus
{
    background-color: var(--GRPS_Red);
}
.search-form .submit:after
{
    content: "\f002";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.search-form .submit .svg-inline--fa,
.page_body:not(.use_svg_fakit) .search-form .submit:after
{
    position: absolute; 
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    text-indent: 0;
}

.search-form legend,
.search-form label
{
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.search-form .search-input::-webkit-input-placeholder {
    color: var(--GRPS_LtGray);
}
.search-form .search-input::-moz-placeholder {
    opacity: 1;
    color: var(--GRPS_LtGray);
}
.search-form .search-input:-moz-placeholder {
    color: var(--GRPS_LtGray);
}
.search-form .search-input:-ms-input-placeholder {
    color: var(--GRPS_LtGray);
}
.search-form .search-input.placeholder {
    color: var(--GRPS_LtGray);
}
@media only screen and (min-width: 768px)
{
    .search-form
    {
        right: 125px;
    }
}
@media only screen and (max-width: 993px)
{
    /* search input collapse */
    .search-form .search-input
    {
        padding: 0;
        width: 0;
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
    }
    .search-form.opened .search-input 
    {
        padding-left: 10px;
        width: 160px;
    }
}
@media print {
    .search-form
    {
        display: none;
    }
}
/* END Search */

/* Site Scripts */
.fbcms_content.site_script_head
{
    display: block;
    position: absolute;
    top: -33px;
    right: 100px;
}
.nav-slider-active .fbcms_content.site_script_head
{
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 10px;
}
.fbcms_content.site_script_foot
{
    display: block;
    position: relative;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px)
{
    .fbcms_content.site_script_head {
        position: fixed;
        top: 300px;
        left: 0;
        right: auto;
        z-index: 4;
        background: var(--GRPS_Blue);
        padding: 14px 10px;
        border-radius: 0 4px 4px 0;
        box-shadow: 0px 2px 4px rgba(0,0,0,0.7);
    }
}
@media only screen and (min-width: 994px)
{
    .fbcms_content.site_script_head {
    }
}
@media print
{
}

/* Social Media Script */
.fbcms_content ul.social_media_list {
    margin: 0;
}
.social_media_list:after
{
    content: "";
    display: table;
    clear: both;
}
.fbcms_content ul.social_media_list > li {
    display: inline-block;
    margin: 0 5px;
    list-style: none;
    text-align: center;
    line-height: 1;
}

.site_script_foot ul.social_media_list > li:first-child {
    margin-left: 0;
}
.site_script_foot ul.social_media_list > li:last-child {
    margin-right: 0;
}

.fbcms_content .social_media_list a {
    color: var(--GRPS_DkGray);
    text-align: center;
    display: inline-block;
    transition: all .2s ease-out;
    transform: scale(.85);
}
.fbcms_header .fbcms_content .social_media_list a,
.fbcms_footer .fbcms_content .social_media_list a {
    color: #fff;
}
.social_media_list a:hover,
.social_media_list a:focus
{
    transform: scale(1);
    text-decoration: none;
}


.side_social ul.social_media_list li
{
    vertical-align: middle;
}
.side_social ul.social_media_list li a
{
    max-width: 50px;
    margin-bottom: 10px;
    filter: grayscale(100%);
}
.side_social ul.social_media_list li a:hover,
.side_social ul.social_media_list li a:focus  {
    filter: grayscale(0%) drop-shadow(0 2px 4px rgb(0 0 0 / 30%));
}
@media only screen and (min-width: 768px)
{
    .site_script_head ul.social_media_list > li
    {
        display: block;
        margin: 10px 0;
    }
}
@media print
{
    .fbcms_content ul.social_media_list {
        display: none;
    }
}

/* Header Phone Script */
.fbcms_content.site_head_phone 
{
    display: block;
    position: absolute;
    top: 12px;
    right: 10px;
    color: #fff;
}
.fbcms_content.site_head_phone a 
{
    color: #fff;
}
@media only screen and (min-width: 768px)
{
    .fbcms_content.site_head_phone 
    {
        top: 12px;
        right: 0;
    }
    .nav-slider-deactivated .fbcms_header.shrink .fbcms_content.site_head_phone {
        display: none;
    }
}
@media only screen and (min-width: 994px)
{
    .nav-slider-deactivated .fbcms_header.shrink .fbcms_content.site_head_phone {
        display: block;
        top: 7px;
        right: 274px;
    }
}

.fbcms_emergencyAlert .fbcms_headline_list_content .svg-inline--fa
{
/*    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    line-height: 1;
    color: #d73b2e;*/
    display: none;
}
.fbcms_emergencyAlert .fbcms_headline_list_content:before
{
    display: none;
}

.fbcms_emergencyAlert .fbcms_headline_list_content
{
    padding-left: 0;
}
.fbcms_emergencyAlert .fbcms_news_headlines_title
{
    font-size: 1.5rem;
}
/*
===========================================================
 END HEADER
===========================================================
*/

/*
===========================================================
 MENUS
===========================================================
*/

/* Head Menu */
.nav-slider-deactivated .menu_head
{
    position: absolute;
    right: 335px;
    top: -139px;
    z-index: 101;
}

.nav-slider-deactivated .menu_head li
{
    padding: 0 10px;
    position: relative;
}
.nav-slider-deactivated .menu_head li:first-child
{
    padding-left: 0;
}
.nav-slider-deactivated .menu_head li:last-child
{
    padding-right: 0;
}

.nav-slider-deactivated .menu_head a
{
    font-size: 1rem;
    line-height: 1;
    color: #fff;
}
@media only screen and (min-width: 994px)
{
    .nav-slider-deactivated .menu_head
    {
        right: 485px;
    }
}

/* Focus Menu */
.nav-slider-deactivated .menu_focus,
.nav-slider-deactivated .menu_districtfocus
{
    position: absolute;
    right: 0px;
    top: -40px;
    z-index: 102;
}
.nav-slider-deactivated .menu_focus
{
    right: 174px;
}
.nav-slider-deactivated .fbcms_header.shrink .menu_districtfocus 
{
    top: -56px;
    right: 165px;
}

.nav-slider-deactivated .menu_focus li,
.nav-slider-deactivated .menu_districtfocus li
{
    padding: 0 10px;
    position: relative;
}
.nav-slider-deactivated .menu_districtfocus li:last-child
{
    padding-right: 0;
}

.nav-slider-deactivated .menu_focus a,
.nav-slider-deactivated .menu_districtfocus a
{
    font-size: 1rem;
    line-height: 1;
    color: #fff;
}
.nav-slider-deactivated .menu_districtfocus li:last-child
{
    animation: drop-in 1s normal forwards ease-in-out;
}

.nav-slider-deactivated .menu_districtfocus li:last-child a,
.nav-slider-active .menu_mobilehead li a
{
    background: var(--GRPS_Orange);
    color: var(--GRPS_XDkBlue);
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    text-decoration: none;
}
.nav-slider-deactivated .menu_districtfocus li:last-child a:hover,
.nav-slider-deactivated .menu_districtfocus li:last-child a:focus,
.nav-slider-active .menu_mobilehead li a:hover,
.nav-slider-active .menu_mobilehead li a:focus
{
    background: var(--GRPS_Red);
    color: #fff;
    text-decoration: none;
    animation: wiggle .3s ease 0s forwards;
}
.menu_mobilehead
{
    display: none;
}
.nav-slider-active .menu_mobilehead
{
    position: absolute;
    top: 46px;
    right: 10px;
    display: block;
} 
@media only screen and (min-width: 1100px)
{
    .nav-slider-deactivated .menu_focus,
    .nav-slider-deactivated .menu_districtfocus
    {
        top: -50px;
    }
    .nav-slider-deactivated .menu_focus
    {
        right: 200px;
    }
    .nav-slider-deactivated .menu_head a,
    .nav-slider-deactivated .menu_focus a,
    .nav-slider-deactivated .menu_districtfocus a
    {
        font-size: 1.2rem;
    }
}

/* Foot Menu */
.menu_foot {
    margin-bottom: 20px;
}
.menu_foot.list-nav ul li {
    display: block;
    margin-bottom: 10px;
}


.nav-slider-deactivated .fbcms_header .fbcms_rdropmenu {
    display: block;
    position: absolute;
    z-index: 200;
}

/* Quicklinks Menu */
.nav-slider-active .drop-nav.menu_quicklinks .menu_title
{
    display: none;
}
.nav-slider-active .drop-nav.menu_quicklinks .simplemenu_container {
    display: block;
}

.nav-slider-deactivated .fbcms_header .menu_quicklinks {
    right: 0;
    top: -145px;
}
.nav-slider-deactivated .fbcms_header.shrink .menu_quicklinks
{
    display: none;
}
.nav-slider-deactivated .fbcms_header .menu_quicklinks .menu_title
{
    display: block;
    position: relative;
    font-size: inherit;
    height: 40px;
    padding: 8px 12px;
    color: #fff;
    background-color:  var(--GRPS_Blue);
    text-decoration: none;
    transition: all .15s ease;
}
.nav-slider-deactivated .fbcms_header .menu_quicklinks .menu_title:hover,
.nav-slider-deactivated .fbcms_header .menu_quicklinks .menu_title:focus
{
    background-color: var(--GRPS_70Blue);
}
/* FA icon  */
.nav-slider-deactivated .fbcms_header .menu_quicklinks .menu_title:after
{
    content: "\f107";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}
.nav-slider-deactivated .fbcms_header .menu_quicklinks .menu_title .svg-inline--fa,
.nav-slider-deactivated:not(.use_svg_fakit) .fbcms_header .menu_quicklinks .menu_title:after
{
    vertical-align: top;
    margin-left: 8px;
    color: #ffffff;
    font-size: 1.3rem;
}
.nav-slider-deactivated.use_svg_fakit .fbcms_header .menu_quicklinks .menu_title:after
{
    display: none;
}

.nav-slider-deactivated .fbcms_header .menu_quicklinks .simplemenu_container
{
    right: 0;
    background-color: var(--GRPS_20Blue);
    color: #fff;
    width: 200px;
    -webkit-box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
    box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
}
.nav-slider-deactivated .fbcms_header .menu_quicklinks .simplemenu_container a
{
    display: block;
    line-height: 1.4;
    padding: 6px 10px;
    text-decoration: none;
    color: var(--GRPS_DkBlue);
}
.nav-slider-deactivated .fbcms_header .menu_quicklinks .simplemenu_container a:hover,
.nav-slider-deactivated .fbcms_header .menu_quicklinks .simplemenu_container a:focus
{
    background-color:  var(--GRPS_Red);
    color: #fff;
}

/* Translate Menu */
/* 
    a straight copy-rename of all the menu_quicklinks stuff just to get it visible and working.
    Will probably need to be a different menu layout type.
 */
.menu_translate:not(.fbcms_rdropmenu)
{
    display: none;
}
.nav-slider-active .drop-nav.menu_translate .menu_title
{
    background-color: var(--GRPS_DkBlue);
}
.nav-slider-active .drop-nav.menu_translate .menu_title:hover,
.nav-slider-active .drop-nav.menu_translate .menu_title:focus
{
    text-decoration: underline;
}
.nav-slider-active .fbcms_header .menu_translate 
{
    position: absolute;
    top: -40px;
    right: 94px;
    z-index: 201;
}
.nav-slider-deactivated .fbcms_header .menu_translate 
{
    right: 165px;
    top: -40px;
}
.nav-slider-deactivated .fbcms_header.shrink .menu_translate
{
    right: 0;
    top: 2px;
}
.nav-slider-deactivated .fbcms_header .menu_translate .menu_title
{
    display: block;
    position: relative;
    font-size: inherit;
    height: 40px;
    padding: 8px 12px;
    color: #fff;
    background-color:  var(--GRPS_Blue);
    text-decoration: none;
    transition: all .15s ease;
    border-left: solid 1px var(--GRPS_DkBlue);
}
.nav-slider-deactivated .fbcms_header .menu_translate .menu_title:hover,
.nav-slider-deactivated .fbcms_header .menu_translate .menu_title:focus
{
    background-color: var(--GRPS_70Blue);
}
/* FA icon */
.fbcms_header .menu_translate .menu_title:before,
.fbcms_header .menu_translate .menu_title:after
{
    content: "\f107";
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
}
.fbcms_header .menu_translate .menu_title:before
{
    content: "\f1ab";
}
.fbcms_header .menu_translate .svg-inline--fa,
body:not(.use_svg_fakit) .fbcms_header .menu_translate .menu_title:before,
body:not(.use_svg_fakit) .fbcms_header .menu_translate .menu_title:after
{
    vertical-align: top;
    margin-left: 10px;
    color: #ffffff;
    font-size: 1.3rem;
}
.fbcms_header .menu_translate .svg-inline--fa.fa-f1ab,
body:not(.use_svg_fakit) .fbcms_header .menu_translate .menu_title:before
{
    margin-left: 0;
    margin-right: 10px;
}
.use_svg_fakit .fbcms_header .menu_translate .menu_title:before,
.use_svg_fakit .fbcms_header .menu_translate .menu_title:after
{
    display: none;
}

.fbcms_header .menu_translate .simplemenu_container
{
    right: 0;
    background-color: var(--GRPS_20Blue);
    max-height: calc(100vh - 66px);
    overflow: auto;
    grid-template-columns: 49% 49%;
    grid-column-gap: 2%;
    color: #fff;
    width: 320px;
    -webkit-box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
    box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
}
.nav-slider-active .fbcms_header .menu_translate .simplemenu_container
{
    width: 250px;
    right: -46px;
}
.fbcms_header .menu_translate.menuopen .simplemenu_container
{
    display: grid;
}
.fbcms_header .menu_translate .simplemenu_container a
{
    display: block;
    line-height: 1.4;
    padding: 6px 10px;
    text-decoration: none;
    color: var(--GRPS_DkBlue);
}
.fbcms_header .menu_translate .simplemenu_container a:hover,
.fbcms_header .menu_translate .simplemenu_container a:focus
{
    background-color:  var(--GRPS_Red);
    color: #fff;
}
@media print, screen and (min-width: 994px)
{
    .nav-slider-deactivated .fbcms_header .menu_translate 
    {
        right: 315px;
    }
}
/* END Translate Menu */

/* Subpages Menu */
@media print, screen and (min-width: 768px)
{
    .menu_subpages.drop-nav
    {
        display: none;
    }
}

/* Breadcrumb Nav */
.breadcrumb-nav
{
    padding: 6px 0;
    margin-bottom: 10px;
}
.breadcrumb-nav li
{
    font-size: 1rem;
    line-height: 1.3;
}
.breadcrumb-nav li:after {
    color: #D1D1D1;
    content: "/ ";
    padding: 0 6px;
}
.breadcrumb-nav li:last-child:after {
    display: none;
}
.page_permalink .menu_breadcrumb,
.page_profile .menu_breadcrumb
{
    display: none;
}
@media only screen and (min-width: 768px)
{
    .breadcrumb-nav
    {
        /*display: none;*/
    }
}

/* main-nav */
.nav-slider-deactivated .menu_title.menusection_title
{
    display: none;
}
.nav-slider-deactivated .nav-main
{
    position: relative;
}
.nav-slider-deactivated .nav-main .top_level_item
{
    border-left: solid 1px var(--GRPS_Blue);
}
.nav-slider-deactivated .nav-main .top_level_item:last-child
{
    border-right: solid 1px var(--GRPS_Blue);
}
.nav-slider-deactivated .nav-main .top_level_link
{
    color: #ffffff;
    /*font: 500 .92rem/1.3 var(--Font_Base);*/
    font: 500 .77rem/1.3 var(--Font_Base);
    /*padding: 12px 10px;*/
    padding: 12px 5px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: background-color .1s linear;
    transition: background-color .1s linear;
}
.nav-slider-deactivated .nav-main .top_level_item.active .top_level_link,
.nav-slider-deactivated .nav-main .top_level_item:hover .top_level_link,
.nav-slider-deactivated .nav-main .top_level_item.hoverfocus .top_level_link
{
    background-color: var(--GRPS_Blue);
    color: #fff;
}

/* drop-down */
.nav-slider-deactivated .nav-main .top_level_item > .drop
{
    top: 100%;
    background: #ffffff url(../img/BlueFlameWatermarkLight.png) no-repeat bottom right;
    background-size: auto 280px;
    width: 400px;
    left: -10px;
    -webkit-box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
    box-shadow: 0px 1px 2px -1px rgba(0,0,0,0.7);
    overflow: auto;
    border-left: solid 10px var(--GRPS_Blue);
}
.nav-slider-deactivated .nav-main .top_level_item:last-child > .drop
{
    left: auto;
    right: 0;
}
.nav-slider-deactivated .nav-main .top_level_item > .drop .sublist_0
{
    min-height: 300px;
    width: 80%;
    padding: 10px 0 10px 10px;
}
.nav-slider-deactivated .nav-main .top_level_item > .drop a 
{
    color: var(--GRPS_Blue);
    text-decoration: none;
    padding: 8px 12px;
    line-height: 1.4;
}
.nav-slider-deactivated .nav-main .top_level_item > .drop li a:hover,
.nav-slider-deactivated .nav-main .top_level_item > .drop li a:focus
{
    background-color: var(--GRPS_20Blue);
    color: var(--GRPS_XDkBlue);
}

/* Special Drops */
.nav-slider-deactivated .nav-main .top_level_item.menu_school > .drop
{
    display: none;
}
/* Departments Drop */
.nav-slider-deactivated .nav-main .top_level_item:nth-child(2)
{
    position: unset;
}
.nav-slider-deactivated .nav-main .top_level_item:nth-child(2) > .drop
{
    width: 100%;
    left: 0;
}
.nav-slider-deactivated .nav-main .top_level_item:nth-child(2) > .drop .sublist_0
{
    column-count: 2;
}
.nav-slider-deactivated .nav-main .top_level_item:nth-child(2) > .drop li
{
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

@media only screen and (min-width: 994px)
{    
    .nav-slider-deactivated .nav-main .top_level_link
    {
        font-size: 1rem;
        padding: 12px 9px;
    }
    .nav-slider-deactivated .nav-main .top_level_item:nth-child(2)
    {
        position: relative;
    }
    .nav-slider-deactivated .nav-main .top_level_item:nth-child(2) > .drop
    {
        width: 850px;
        left: -7rem;    
    }
    .nav-slider-deactivated .nav-main .top_level_item:nth-child(2) > .drop .sublist_0
    {
        column-count: 3;
    }
}
@media only screen and (min-width: 1200px)
{    
    .nav-slider-deactivated .nav-main .top_level_link
    {
        font-size: 1.2rem;
        padding: 12px 13px;
    }
}

/* nav slider */
.nav-slider-active .nav-slider-button.slider-button
{
    top: -36px;
    right: 11px; 
}
.nav-slider-active .header_liner > .nav-slider-button.slider-button:before, 
.nav-slider-active .header_liner > .nav-slider-button.slider-button:after, 
.nav-slider-active .header_liner > .nav-slider-button.slider-button span {
    background-color: #fff;
}
.nav-slider-active .header_liner > .nav-slider-button.slider-button:hover:before, 
.nav-slider-active .header_liner > .nav-slider-button.slider-button:hover:after, 
.nav-slider-active .header_liner > .nav-slider-button.slider-button:hover span {
    box-shadow: 0 0 5px rgba(0,0,0,.5);
}

/* Slider Colors */
.navslideout .nav-main .menu_title, 
.navslideout .nav-main .top_level_link
{
    font-size: 1.125rem;
}
.navslideout .nav-main .drop .item_link
{
    font-size: 1rem;
    line-height: 1.68;
}
.nav-slider-active .nav-slider
{
    background-color: var(--GRPS_XDkBlue);
    border-right: solid 2px var(--GRPS_20Blue);
}
.navslideout .nav-main .menu_title,
.menu_title.menusection_title {
    background-color: var(--GRPS_XDkOrange);
    border-top-color: var(--GRPS_XDkOrange);
}
.navslideout .nav-main .main-drop-opener {
    background-color: var(--GRPS_XDkOrange);
}
.navslideout .nav-main .top_level_link
{
    background-color: var(--GRPS_XDkBlue);
    border-bottom-color: var(--GRPS_Blue);
}
.navslideout .nav-main .sublist_0 .item_link {
    border-bottom-color: var(--GRPS_20Blue);
}
.navslideout .nav-main .top_level_item > .link_pair > .main-drop-opener, 
.navslideout .nav-main .top_level_item > .drop {
    background-color: var(--GRPS_DkBlue);
    border-top-color: var(--GRPS_DkBlue);
}
.navslideout .nav-main .sublist_item > .link_pair > .main-drop-opener, 
.navslideout .nav-main .sublist_item > .drop {
    background-color: var(--GRPS_Blue);
    border-bottom-color: var(--GRPS_Blue);
    border-top-color: var(--GRPS_DkBlue);
}
/*
===========================================================
 END MENUS
===========================================================
*/

/*
===========================================================
 MAIN CONTENT FRAMEWORK
===========================================================
*/
.fbcms_main
{
    flex: 1;
}
@media only screen and (min-width: 768px)
{
    .fbcms_main
    {
        overflow: hidden;
        position: relative;
        z-index: 2;
    }
    .main_content
    {
        position: relative;
    }
    .columns
    {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .left_col
    {
        order: 1;
    }
    .center_col
    {
        order: 2;
    }    
    .right_col
    {
        order: 3;
    }
}

/* Flexi Content */
.section_title
{
    padding-top: 20px;
}
.flexi
{
    position: relative;
}
.flexi .fbcms_section
{
    width: 100%;
    position: relative;
}
.flexi .fbcms_content
{
    margin: 20px 0 1rem;
}
@media only screen and (min-width: 994px)
{
    .flexi,
    .flexi .fbcms_section
    {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start
    }
    .fbcms_editmode .flexi .fbcms_section
    {
        margin: 0 0 30px;
    }

    /* http://lea.verou.me/2011/01/styling-children-based-on-their-number-with-css3/ 
    -- editmode selectors added to accomodate add block button as an additional item */

    /* When 2 or more blocks */
    .flexi .fbcms_content,
    .flexi .fbcms_content:first-child:nth-last-child(2), 
    .flexi .fbcms_content:first-child:nth-last-child(2) ~ .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(3), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(3) ~ .fbcms_content
    {
        width: calc(50% - (3rem / 2));
    }

    .flexi .fbcms_content:only-child,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(2), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(2) ~ .fbcms_content
    {
        width: 100%;
    }

    .flexi .fbcms_section > .addblock_buttonbar_wrapper
    {
        min-width: 100%;
    }

    /* When 3 flexi content blocks*/
    .flexi .fbcms_content,
    .flexi .fbcms_content:first-child:nth-last-child(3), 
    .flexi .fbcms_content:first-child:nth-last-child(3) ~ .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(4), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(4) ~ .fbcms_content
    {
        width: calc(33.333% - (6rem / 3));
    }
}
@media only screen and (min-width: 1200px)
{
    /* When 4 flexi content blocks */
    .flexi .fbcms_content:first-child:nth-last-child(4), 
    .flexi .fbcms_content:first-child:nth-last-child(4) ~ .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(5), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(5) ~ .fbcms_content
    {
        width: calc(25% - (9rem / 4));
    }
    /* Any more than 4 defaults to thirds */
}

/* Special flexi - /reimagine/reimagine-data-dashboard/ */
.page_flexi.standard_flexi .flexi5
{
    padding: 0 1rem;
}
.page_flexi.standard_flexi .flexi5 p,
.page_flexi.standard_flexi .flexi5 ul,
.page_flexi.standard_flexi .flexi5 ol
{
    font-size: var(--font-size-sub);
}
.page_flexi.standard_flexi .flexi5 h2 
{
    background-color: var(--GRPS_DkOrange);
    color: #fff;
    font-size: 1.19rem;
    line-height: 1.2;
    padding: .5em 1rem;
    margin: 0 -1rem 1em;
}
.page_flexi.standard_flexi .flexi5 h3 
{
    background-color: var(--GRPS_DkBlue);
    color: #fff;
    font-size: 1.19rem;
    line-height: 1.2;
    padding: .5em 1rem;
    margin: 0 -1rem 1em;
}
@media only screen and (min-width: 994px)
{
    .page_flexi.standard_flexi .flexi.fifth 
    {
        align-items: stretch;
        justify-content: flex-start;
    }
    .page_flexi.standard_flexi .flexi5.flexi_block
    {
        width: 50% !important;
        margin: 0;
    }
    .page_flexi.standard_flexi .flexi5.flexi_block:nth-child(8n+1),
    .page_flexi.standard_flexi .flexi5.flexi_block:nth-child(8n+2),
    .page_flexi.standard_flexi .flexi5.flexi_block:nth-child(8n+3),
    .page_flexi.standard_flexi .flexi5.flexi_block:nth-child(8n+4)
    {
        background-color: #F5F5F5;
    }
    .page_flexi.standard_flexi .flexi5.flexi_block:nth-child(4n+3),
    .page_flexi.standard_flexi .flexi5.flexi_block:nth-child(4n+4)
    {
        text-align: center;
    }
}
@media only screen and (min-width: 1200px)
{
    .page_flexi.standard_flexi .flexi5.flexi_block
    {
        width: 22% !important;
        position: relative;
        padding-top: 4rem;
        display: grid;
        align-content: center;
    }
    .page_flexi.standard_flexi .flexi5.flexi_block:nth-child(4n+2)
    {
        width: 34% !important;
    }
    .page_flexi.standard_flexi .flexi5 h2,
    .page_flexi.standard_flexi .flexi5 h3
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        margin: 0;
    }
}


/* Focus Areas */
.main_focus
{
    background: #fff;
}

.page_districthome .fbcms_content.home_focus
{
    border-bottom: solid 10px var(--GRPS_Orange);
}
.home_focus,
.page_interior .inside_focus
{
    width: 100%;
}
.home_focus img
{
    width: 100%;
}
.fbcms_imagerotator .cycle-slide
{
    width: 100%;
}
.fbcms_photogallery .fbcms_imagerotator .slide img {
    margin: 0 auto;
}

.fbcms_image.inside_focus
{
    line-height: 0;
}

.fbcms_content.home_welcome
{
    padding: 18px 12px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0;
}
@media only screen and (min-width: 768px)
{   
    .school_home_grid
    {
        display: grid;
        grid-template-columns: 35% 65%;
        grid-template-rows: min-content;
    }
    .school_home_grid .home_focus
    {
        grid-area: 1 / 1 / 1 / col2-end;
    }
    .school_home_grid .home_focus.fbcms_content
    {
        margin-left: -50px;
        width: calc(100% + 100px);
    }
    .school_home_grid .school_welcome_wrapper
    {
        grid-area: 2 / 1 / 2 / col2-end;
    }
    .school_home_grid .side_content
    {
        grid-area: 3 / 1 / 3 / 1;
    }
    .school_home_grid .center_content
    {
        grid-area: 3 / 2 / 3 / col2-end;
    }

    .page_districthome .fbcms_content.home_focus
    {
        position: relative;
        z-index: 1;
        border-bottom: none;
        /* defines height of focus area in order for 
            animations to load appropriately */
        padding-top: calc(100% * (800 /2000)); 
    }
    .page_districthome .home_focus .fbcms_imagerotator
    {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .page_districthome .fbcms_content.home_focus:after,
    .page_schoolhome .school_welcome_wrapper:after,
    .side-nav:after
    {
        content: "";
        display: block;
        z-index: 100;
        position: absolute;
        bottom: 0;
        height: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border: solid var(--GRPS_Orange);
        border-width: 12px 0 0 0;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
    .page_schoolhome .school_welcome_wrapper:after,
    .side-nav:after
    {
        height: 30px;
        border-width: 6px 0 0 0;
        background: var(--GRPS_XLtGray);
    }

    .page_schoolhome .school_welcome_wrapper
    {
        padding: 20px 0;
    }

    .home_focus.vpadm_editable,
    .home_welcome.vpadm_editable
    {
        width: 100%;
        padding: 0;
    }

    .page_interior .inside_focus_wrapper
    {
        width: 100%;
        position: relative;
    }
    .page_interior .inside_focus_wrapper img
    {
        width: 100%;
        height: auto;
    }
}
@media only screen and (min-width: 994px)
{
    .school_home_grid .home_focus
    {
        grid-area: 1 / 2 / 1 / col2-end;
    }
    .school_home_grid .home_focus.fbcms_content
    {
        margin-left: 0;
        width: calc(100% + 55px);
    }
    .school_home_grid .school_welcome_wrapper
    {
        grid-area: 1 / 1 / 3 / 1;
    }
    .school_home_grid .side_content
    {
        grid-area: 3 / 1 / 7 / 1;
    }
    .school_home_grid .center_content
    {
        grid-area: 2 / 2 / 5 / col2-end;
    }

    .fbcms_content.home_welcome
    {
        padding: 10px 0 30px;
    }
}
@media only screen and (min-width: 1200px)
{    
    .school_home_grid .home_focus.fbcms_content
    {
        width: calc(100% + 60px);
    }
}
@media print {
}

.fbpgro_overlay {
    background-color: rgb(0 46 109 / 80%);
    color: #fff;
    height: auto;
}    
.fbpgro_title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #fff;
}
.fbpgro_desc {
    color: #fff;
    font-weight: 500;
}
.fbpgro_link
{
    padding: 6px 10px;
    text-decoration: none;
    display: inline-block;
    background-color: var(--GRPS_20Blue);
    color: var(--GRPS_DkBlue);
    border-radius: 6px;
}
.fbpgro_link:hover,
.fbpgro_link:focus
{
    background-color: var(--GRPS_Orange);
    color: var(--GRPS_XDkBlue);
}
@media only screen and (min-width: 768px)
{
    .page_districthome .fbpgro_overlay 
    {
        position: relative;
        width: 96%;
        max-width: 2000px;
        text-align: left;
        padding: 0;
        overflow: visible;
        background: transparent;
        margin: 0 auto;
    }
    .page_districthome .fbpgro_textwrapper
    {
        position: absolute;
        bottom: 10px;
        width: auto;
        padding: 12px 20px;
        background-color: rgb(0 46 109 / 90%);
    }
    .page_districthome .fbpgro_title {
        font-size: var(--font-size-h4);
        line-height: 1.3;
        margin-bottom: 6px;
    }
    .page_districthome .fbpgro_desc 
    {
        line-height: 1.3;
        margin-bottom: 10px;
        display: block;
    }
    .page_districthome .fbpgro_linkwrapper
    {
        display: block;
        padding: 0;
    }

    .page_interior .fbpgro_overlay 
    {
        padding: 10px 20px;
    }
}
@media only screen and (min-width: 944px)
{
    .page_districthome .fbpgro_overlay 
    {
        width: 90%;
    }
    .page_districthome .fbpgro_textwrapper
    {
        padding: 25px 30px;
        bottom: 20px;
        max-width: 40%;
    }

    .page_interior .fbpgro_overlay 
    {
        padding: 15px 30px;
    }
}
/* commenting out due to new Iris icons */
/*.fbcms_photogallery .fbpgro_button svg 
{
    color: #fff;
    filter: drop-shadow(1px 1px 0 var(--GRPS_Blue)) drop-shadow(-1px -1px 0 var(--GRPS_Blue)) drop-shadow(-1px 1px 0 var(--GRPS_Blue)) drop-shadow(1px -1px 0 var(--GRPS_Blue));
}
.fbcms_photogallery .fbpgro_button:hover svg, 
.fbcms_photogallery .fbpgro_button:focus svg
{
    color: var(--GRPS_Blue);
    filter: drop-shadow(1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff);
}*/

/* Main Content Stuff */
/* Interior Specific */
.page_interior .main_content .center_content {
    padding: 12px;
}
.page_interior .side_col,
.page_schoolhome .side_content
{
    background-color: var(--GRPS_XLtGray);
}
.page_interior .side_content
{
    padding: 12px;
}
.fbcms_content.side_social {
    margin-bottom: 40px;
}
.fbcms_content.firstone
{
    padding-top: 1rem;
}
.fbcms_content.lastone
{
    padding-bottom: 1rem;
}
@media only screen and (min-width: 768px)
{
    .page_interior .main_content .center_col
    {
        width: 67.5%;
        box-shadow: -4px 5px 6px rgb(0 0 0 / 5%);
        z-index: 2;
        order: 2;
    }
    .page_interior .main_content .center_content
    {
        padding: 20px 0 20px 20px;
    }

    .page_interior .main_content .side_col
    {
        width: 32.5%;
        position: relative;
        order: 1;
    }
    .page_interior .side_content
    {
        padding: 20px;
    }
}
@media only screen and (min-width: 994px)
{
    .page_interior .main_content .center_content
    {
        padding: 30px 0 20px 30px;
    }
    .page_interior .side_content
    {
        padding: 20px 30px;
    }
}

/* Landing Specific */
@media only screen and (min-width: 768px)
{
    .page_interior .center_content .column {
        width: calc(50% - 1.5rem);
    }
}

/* OneCol Specific */
.page_onecol .main_content .center_col .column p
{
    margin-left: 2rem;
}
@media only screen and (min-width: 768px)
{
    .page_interior.page_onecol .main_content .center_col
    {
        width: 100%;
    }
    .page_interior.page_onecol .main_content .center_col .column 
    {
        width: calc(33.333% - 2rem);
        box-shadow: none;
    }
}

/* Home Specific */
.page_districthome .main_content .component_liner,
.page_home .home_component1 .component_liner
{
    padding: 0 12px;
}
.fbcms_content.home_announcements
{
    padding: 20px 0 1px;
}
.home_component3 .column h2.fbcms_plaintext 
{
    margin-top: 20px;
}
.page_home .home_middle.fbcms_content
{
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.page_home .home_middle h2
{
    display: inline-block;
    margin: 0 auto .3em;
    position: relative;
    background: #fff;
    padding: 0 16px;
    font-size: var(--font-size-h1);
    font-family: var(--Font_Base);
}
.page_home .home_middle h2:after
{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -500px;
    right: -500px;
    border-top: solid 3px var(--GRPS_Orange);
    z-index: -1;
}
.home_component6
{
    background: var(--GRPS_XLtBlue);
}
.page_schoolhome .home_component6
{
    background: var(--GRPS_Blue);
}
.home_bottom_right.fbcms_content
{
    background: rgba(255,255,255,.9) url(../img/BlueFlameWatermarkLight.png) no-repeat bottom -40px right -20px;
    padding: 12px;
} 
.home_bottom_left.fbcms_content.fbcms_image
{
    padding: 12px 0 0;
    text-align: center;
}
.home_bottom_left.fbcms_content.fbcms_image img
{
    border: solid 6px #fff;
    box-shadow: 2px 4px 7px rgba(0,0,0,.2);
}
@media only screen and (min-width: 768px)
{
    .page_home .main_content .component_liner,
    .page_home .home_component1 .component_liner
    {
        padding: 0;
    }
    .page_home .main_content .threecol .column
    {
        width: calc(33.333% - (6rem / 3));
        position: relative;
    }
    .page_districthome .twocol.columns {
        flex-wrap: wrap;
    }
    .page_home .twocol .column
    {
        width: 100%;
        position: relative;
    }
    .page_home .fbcms_content.flexi1,
    .fbcms_content.home_right2,
    .fbcms_content.bottom_spots,
    .fbcms_content.home_contact
    {
        padding: 20px 0;
    }
    .home_component6
    {
        position: relative;
        background: var(--GRPS_XLtBlue) url(/downloads/logos_assets/home_background_images/district_home_background.png) no-repeat center;
    }
    .home_component6:after
    {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgb(110 113 112 / 36%);
    }
    .home_component6 .fbcms_content
    {
        z-index: 2;
    }
    .home_bottom_left.fbcms_content.fbcms_image
    {
        position: relative;
        z-index: 2;
        padding: 0;
        line-height: 0;
        margin: 40px 0 10px;
    }
    .home_bottom_right.fbcms_content
    {
        position: relative;
        z-index: 1;
        padding: 30px 60px 20px 40px;
        margin: 20px 0 20px 20px;
        /*box-shadow: 2px 2px 5px rgba(0,0,0,.5);*/
    }
}
@media only screen and (min-width: 994px)
{
    .page_home .twocol .column
    {
        width: 50%;
    }
    .home_component3 .twocol .column.left_col
    {
        width: calc(66.666% - 1.5rem);
    }
    .home_component3 .twocol .column.right_col
    {
        width: calc(33.333% - 1.5rem);
    }

    .home_component6 .twocol .column.left_col
    {
        width: 40%;
    }
    .home_component6 .twocol .column.right_col
    {
        width: 60%;
    }    
    .home_bottom_left.fbcms_content.fbcms_image
    {
        text-align: right;
        margin: 80px -70px 80px 0;
    }
    .home_bottom_right.fbcms_content
    {
        margin: 40px 0 40px 40px;
        padding: 60px 170px 30px 70px;
    }
}
@media print {
}

/* School Home Specific */
.page_schoolhome .school_welcome_wrapper
{
    padding: 18px 12px;
    background: var(--GRPS_Blue);
    color: #fff;
    position: relative;
    z-index: 1;
    border-bottom: solid 6px var(--GRPS_Orange);
}
.school_welcome h1,
.school_welcome h1 span,
.school_welcome a,
.school_welcome p.content_intro,
.school_principal p,
.school_principal a,
.school_principal p.content_intro,
.school_principal.fbcms_staff_listing .fbcms_staff_listing_row .name
{
    color: #fff;
}
.school_welcome h1
{
    padding: 0 10px 4px;
    margin: 0 -10px 15px;
    border-bottom: solid 3px var(--GRPS_Orange);
}
.school_welcome.fbcms_ec
{
    margin-bottom: 1rem;
    display: grid;
}
.school_welcome .fbcms_ec_title h2
{
    font-size: var(--font-size-base);
    letter-spacing: 1px;
    display: inline-block;
    width: auto;
    padding-right: 1rem;
    line-height: 1;
    padding: 10px 30px 10px 10px;
    border-radius: 6px;
}
.school_welcome .fbcms_ec_title:hover, 
.school_welcome .fbcms_ec_title:focus {
    background-color: transparent;
}
.school_welcome .fbcms_ec_title:hover h2, 
.school_welcome .fbcms_ec_title:focus h2 {
    background-color: var(--GRPS_DkBlue);
}
.school_welcome .fbcms_ec_title,
.school_welcome:not(.fbcms_ec_collapsed) .fbcms_ec_title
{
    background-color: var(--GRPS_Blue);
    margin: -10px 0 0;
    padding: 5px;
    border-radius: 6px;
    text-align: center;
    grid-row: 2; 
}
.school_welcome:not(.fbcms_ec_collapsed)  .fbcms_ec_title h2 {
    display: none;
}
.school_welcome.fbcms_ec_collapsed .fbcms_ec_title .fbcms_ec_titleicon
{
    margin-left: -25px;
    vertical-align: middle;
}
.school_welcome:not(.fbcms_ec_collapsed) .fbcms_ec_title .fbcms_ec_titleicon
{
    display: inline-block;
    text-align: center;
    padding: 4px 8px;
    border-radius: 6px;
}
.school_welcome:not(.fbcms_ec_collapsed) .fbcms_ec_title:hover .fbcms_ec_titleicon,
.school_welcome:not(.fbcms_ec_collapsed) .fbcms_ec_title:focus .fbcms_ec_titleicon
{
    background: var(--GRPS_DkBlue);
}
.school_welcome .fbcms_ec_title .ec_titleicon.titleicon_open:before
{
	font-weight: 900;
	font-family: 'Font Awesome 5 Free';
    content: "\f107";
}
.school_welcome .fbcms_ec_title .ec_titleicon.titleicon_close:before
{
	font-weight: 900;
	font-family: 'Font Awesome 5 Free';
    content: "\f106";
}
.fbcms_ec .fbcms_ec_title ~ div
{
    grid-row: 1; 
}

.school_principal
{
    position: relative;
    z-index: 999;
}
.school_principal img
{
    border-radius: 50%;
}
.school_principal p:after
{
    content: "";
    display: table;
    clear: both;
}
.school_principal.fbcms_staff_listing .fbcms_staffentry:last-child
{
    margin-bottom: 0;
}
.school_principal.fbcms_staff_listing .fbcms_staffentry .fbcms_staffinfo
{
    margin-bottom: 2rem;
}

.page_schoolhome .main_content
{
    box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
}
.school_logo
{
    text-align: center;
    margin-bottom: 20px;
}
.page_schoolhome .top_tabset .column .fbcms_content.lastone {
    padding-bottom: 3.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 993px)
{
    .page_schoolhome .school_welcome_wrapper:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: -6px;
        left: -100px;
        right: -100px;
        border-bottom: solid 6px var(--GRPS_Orange);
        background: var(--GRPS_Blue);
        z-index: -1;
    }
    .page_schoolhome .school_welcome_wrapper:after
    {
        display: none;
    }
    .page_schoolhome .main_content .columns
    {
        flex-direction: column;
    }
    .page_schoolhome .main_content .column
    {
        width: 100%;
    }
}
@media only screen and (min-width: 768px)
{
    .page_schoolhome .school_welcome_wrapper
    {
        padding: 20px 20px 10px;
    }

    .fbcms_content.school_welcome.fbcms_ec_collapsed:nth-child(2)
    {
        margin-top: -66px;
        padding-top: 60px;
        background: -moz-linear-gradient(top, rgb(0 85 150 / 0%) 0%, rgb(0 85 150) 66px); 
        background: -webkit-linear-gradient(top, rgb(0 85 150 / 0%) 0%, rgb(0 85 150) 66px); 
        background: linear-gradient(to bottom, rgb(0 85 150 / 0%) 0%, rgb(0 85 150) 66px); 
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00005596', endColorstr='#005596',GradientType=0 ); 
        position: relative;
    }

    .school_principal img
    {
        margin-right: 1.5rem;
    }
}
@media only screen and (min-width: 994px)
{
    .page_schoolhome .school_welcome_wrapper
    {
        position: relative;
        padding: 30px 30px 0;
        display: grid;
        grid-template-rows: min-content;
        border-bottom: none;
    }
    .fbcms_content.school_principal
    {
        margin-bottom: -15px;
        display: grid;
        align-content: end;
    }
}

/* TabSets */
.tabset_titlecontainer
{
    width: 100%;
    border-bottom: solid 3px var(--GRPS_DkBlue);
    padding: 20px 26px 0;
    overflow: hidden;
}
.page_districthome .tabset_titlecontainer
{
    padding: 60px 26px 0;
}
.fbcms_tabset .tabset_title
{
    vertical-align: bottom;
    text-align: center;
}
.fbcms_tabset .tabset_title:not:(first-child) {
    border-left: 5px solid transparent;
}
.fbcms_tabset h2.tabset_title_header
{
    margin: 0 10px;
    font-size: var(--font-size-h5);
}
.fbcms_tabset .tabset_title a
{
    background-color: var(--GRPS_20Blue);
    color: var(--GRPS_DkBlue);
    vertical-align: top;
    padding: 10px 0;
    position: relative;
    border-radius: 10px 10px 0 0;
    /*margin-right: -9px;*/
    display: inline-block;
    position: relative;
    z-index: 1;
}
.fbcms_tabset .tabset_title a:before, 
.fbcms_tabset .tabset_title a:after {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    bottom: -1px;
    width: 36px;
    background-color: var(--GRPS_20Blue);
    z-index: -1;
}
.fbcms_tabset .tabset_title a:before {
    left: -17px;
    transform: skew(-25deg, 0deg);
    border-left: 3px solid var(--GRPS_20Blue);
    border-radius: 8px 0 0 0;
}
.fbcms_tabset .tabset_title a:after {
    right: -17px;
    transform: skew(25deg, 0deg);
    border-right: 3px solid var(--GRPS_20Blue);
    border-radius: 0 8px 0 0;
}

.fbcms_tabset .tabset_title a.top_tab1_title,
.fbcms_tabset .tabset_title:nth-child(3) a
{
    background-color: var(--GRPS_XLtBlue);
}
.fbcms_tabset .tabset_title a.top_tab1_title:before, 
.fbcms_tabset .tabset_title a.top_tab1_title:after,
.fbcms_tabset .tabset_title:nth-child(3) a:before, 
.fbcms_tabset .tabset_title:nth-child(3) a:after {
   background-color: var(--GRPS_XLtBlue);
}
.fbcms_tabset .tabset_title a.top_tab1_title:before,
.fbcms_tabset .tabset_title:nth-child(3) a:before {
    border-left-color: var(--GRPS_XLtBlue);
}
.fbcms_tabset .tabset_title a.top_tab1_title:after,
.fbcms_tabset .tabset_title:nth-child(3) a:after {
    border-right-color: var(--GRPS_XLtBlue);
}

.fbcms_tabset .tabset_title.active a:before,
.fbcms_tabset .tabset_title.active a:after,
.fbcms_tabset .tabset_title a:focus:before,
.fbcms_tabset .tabset_title a:focus:after {
    background-color: var(--GRPS_DkBlue);
    border-color: var(--GRPS_DkBlue);
}

.fbcms_tabset .tabset_title:nth-child(3) a
{
    z-index: 0;
}
.fbcms_tabset .tabset_title.active .tabset_title_header a,
.fbcms_tabset .tabset_title .tabset_title_header a:focus
{
    background-color: var(--GRPS_DkBlue);
    color: #fff;
    z-index: 9;
}
.fbcms_tabset .tabset_title a:hover,
.fbcms_tabset .tabset_title a:focus
{    
    z-index: 10;
}

.fbcms_editmode .fbcms_tabset .tabset_title .vpadm_editable_section
{
    background-color: #ddd;
    padding-bottom: 16px;
}
.fbcms_editmode .fbcms_tabset .tabset_title.active .vpadm_editable_section
{
    background-color: #fff;
}
.fbcms_tabset .tabset_content
{
    padding: 0 8px;
}
/* END TABSETS */

/* Side Navigation Menu */
.side-nav
{
    display: none;
}
@media only screen and (min-width: 768px)
{
    .side-nav
    {
        display: block;
        margin-bottom: 30px;
        padding: 20px 20px 40px;
        background: var(--GRPS_Blue);/* url(../img/BlueFlameWatermark.png) no-repeat bottom right;*/
        background-size: contain;
        position: relative;
        overflow: hidden;
        min-height: 400px;
    }
    .side-nav:before
    {
        content: "";
        display: block;
        position: absolute;
        bottom: -18px;
        right: -16px;
        height: 100%;
        max-height: 450px;
        width: 40%;
        background: var(--GRPS_Blue) url(../img/BlueFlameWatermark.png) no-repeat bottom right;
        background-blend-mode: screen;
        background-size: contain;
    }
    .side-nav .sidelist_0
    {
        position: relative;
        z-index: 2;
    }
    .side-nav .sidelist_0 > li > a
    {
        color: #fff;
        font-size: var(--font-size-h4);
        margin: 0 0 5px;
        padding-left: 10px;
        border-bottom: solid 2px var(--GRPS_Orange);
    }
    .side-nav .sidelist_1, 
    .side-nav .sidelist_1 .side_sublist {
        padding-left: 18px;
        position: relative;
    }
    .side-nav .sidelist_1 a
    {
        color: #fff;
        position: relative;
    }
    .side-nav .sidelist_1 a:hover,
    .side-nav .sidelist_1 a:focus,
    .side-nav .sidelist_1 .current_item > a
    {
        color: #fff;
        text-decoration: none;
    }
    .side-nav .sidelist_1 a:hover::before,
    .side-nav .sidelist_1 a:focus::before,
    .side-nav .sidelist_1 .current_item > a::before
    {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        left: -18px;
        top: 12px;
        background: var(--GRPS_Orange);
    }
}
@media only screen and (min-width: 994px)
{
    .side-nav
    {
        padding: 30px 30px 50px;
    }
}
/* END Side Navigation Menu */
/*
===========================================================
 END MAIN FRAMEWORK
===========================================================
*/

/*
===========================================================
 FOOTER
===========================================================
*/
/* footer */

.fbcms_footer
{
    position: relative;
    color: #fff;
    /*border-top: solid 10px var(--GRPS_Orange);*/
}
.fbcms_footer a 
{
    color: #fff;
}
.goog-te-gadget,
.goog-te-gadget a
{
    color: #fff !important;
}

.fbcms_footer .footer_top
{
    background-color: var(--GRPS_Blue);
}
.fbcms_footer .footer_bottom
{
    background-color: var(--GRPS_DkBlue);
    text-align: center;
    font-size: 1rem;
}

.fbcms_footer .footer_liner
{
    padding: 15px 12px;
}

.footer_logo,
.credits
{
    display: block;
    margin-bottom: 10px;
}
.fbcms_footer .copyright
{
    padding-right: 10px;
    border-right: solid 1px #bbb;
    margin-right: 6px;
}
.fbcms_footer .fbcms_building_info > span,
.fbcms_footer .fbcms_building_info > .building_map > span
{
    display: block;
}

.fbcms_footer .fbcms_building_info .building_name 
{
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--Font_Base);
    padding-bottom: 10px;
}
.fbcms_footer .fbcms_building_info .building_citystatezip
{
    padding-bottom: 16px;
}
.fbcms_footer .fbcms_building_info .has_map_icon .building_citystatezip
{
    margin-left: 28px;
}
.fbcms_footer .fbcms_building_info .building_fax 
{
    padding-bottom: 10px;
}

.fbcms_footer .fbcms_building_info .building_icon
{
    width: 16px;
    margin-right: 12px;
}


.fbcms_building_info .divider
{
    display: none;
}

.fbcms_footer .scroll-button
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    opacity: .6;
}
.fbcms_footer .scroll-button:hover,
.fbcms_footer .scroll-button:focus
{
    opacity: 1;
}
.fbcms_footer .scroll-button i
{
    display: inline-block;
    border: 2px solid #fff;
    padding: 6px;
    border-radius: 50%;
}
@media print {
    .footer_logo,
    .fbcms_footer .scroll-button 
    {
        display: none;
    }
}
@media only screen and (min-width: 768px)
{
    .fbcms_footer
    {
        z-index: 2;
    }
    .fbcms_footer .footer_liner
    {
        padding: 12px 0;
    }

    .fbcms_footer .columns {
        align-items: center;
    }

    .fbcms_footer .column
    {
        width: calc(33.333% - (4rem / 3));
        position: relative;
    }
    .fbcms_footer .left_col
    {
        text-align: center;
    }
    .fbcms_footer .center_col
    {
        /*text-align: center;*/
        padding: 0 30px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    .fbcms_footer .scroll-button
    {
        position: absolute;
        bottom: 0;
        right: 0;
    }
}
@media only screen and (min-width: 994px)
{
    .fbcms_footer .footer_liner
    {
        padding: 16px 0 10px;
    }
}
@media print {
    .fbcms_translate,
    .link_pdfviewer
    {
        display: none;
    }
}
/*
===========================================================
 END FOOTER
===========================================================
*/

/*
-------------------------------------
 Rich Text Formatting
-------------------------------------
*/
h1
{
    color: var(--GRPS_DkOrange);
    font: 500 var(--font-size-h1)/1.3 var(--Font_Base);
    margin-bottom: .3em;
}
h1 span,
h2 span
{
    color: var(--GRPS_Blue);
    font: normal .5em/1 var(--Font_Base);
    text-transform: uppercase;
    display: block;
}
.home_welcome h1
{
    color: var(--GRPS_Blue);
}

h2,
.fbcms_tabset .tabset_title_header
{
    color: var(--GRPS_DkBlue);
    font: bold var(--font-size-h2)/1.3 var(--Font_Base);
    margin-bottom: .3em;
}
.side_content h2:not(.fbcms_ec_titletext)
{
    border-bottom: solid 3px var(--GRPS_Blue);
}

h3
{
    color: var(--GRPS_Blue);
    font: bold var(--font-size-h3)/1.4 var(--Font_Base);
    margin-bottom: .4em;
}

h4,
.fbcms_spotlight .desc_short,
.fbcms_cards .fbcms_card_name,
.fbcms_news_headlines .fbcms_article_title,
.fbcms_newscontent .newsarticle_title,
.fbcms_upcoming_events .event_title, 
.fbcms_upcoming_events .event_title a,
.fbcms_storylist .story_title
{
    color: var(--GRPS_DkGray);
    font: bold var(--font-size-h4)/1.3 var(--Font_Base);
    margin-bottom: .4em;
}

h5
{
    color: var(--GRPS_DkBlue);
    font: bold var(--font-size-h5)/1.3 var(--Font_Base);
    margin-bottom: .5em;
}
h6
{
    color: var(--GRPS_DkGray);
    font: bold var(--font-size-base)/1.3 var(--Font_Base);
    margin-bottom: .5em;
}

.fbcms_content h2 + ul, .fbcms_content h2 + ol,
.fbcms_content h3 + ul, .fbcms_content h3 + ol,
.fbcms_content h4 + ul, .fbcms_content h4 + ol,
.fbcms_content h5 + ul, .fbcms_content h5 + ol,
.fbcms_content h6 + ul, .fbcms_content h6 + ol
{
    margin-top: 0;
}

p.content_intro
{    
    color: var(--GRPS_Gray);
    font: 400 var(--font-size-h3)/1.4 var(--Font_Base);
    margin-bottom: .6em;
}

.Left_Align_With_Padding
{
    margin-right: 20px; 
}
.Right_Align_With_Padding
{
    margin-left: 20px;
}

.fbcms_content hr {
    border-bottom: 3px solid var(--GRPS_Orange);
    margin-block-end: 1em;
}

/* Button Blocks */
.fbcms_contentfooter .contentfooter_item.jump_url,
.fbcms_contentfooter .contentfooter_item.fbcms_newsletter_viewarchives,
.fbcms_contentfooter .contentfooter_item.fbcms_news_headlines_more
{
    display: inline-block;
}
.jump_url a,
.spotlight_button.spotlight_viewall,
.fbcms_newsletters .news_archivetoggle,
.fbcms_more_link a,
.content_buttonblock a,
.fbcms_storylist .story .story_summary:after,
.student_focus .more_link,
.building .building_button,
.story_search_form button
{
    display: inline-block;
    height: auto;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    font: bold 1.19rem/1.2 var(--Font_Base);
    background-color: var(--GRPS_DkOrange);
    padding: 10px 18px;
    margin: 10px 0;
    border-radius: 6px;
    transition: all .2s ease;
    border: none;
}
.jump_url a:hover,
.jump_url a:focus,
.spotlight_button.spotlight_viewall:hover,
.spotlight_button.spotlight_viewall:focus,
.fbcms_newsletters .news_archivetoggle:hover,
.fbcms_newsletters .news_archivetoggle:focus,
.fbcms_more_link a:hover,
.fbcms_more_link a:focus,
.content_buttonblock a:hover,
.content_buttonblock a:focus,
.fbcms_storylist .story:hover .story_summary:after,
.fbcms_storylist .story:focus .story_summary:after,
.student_focus .more_link:hover,
.student_focus .more_link:focus,
.building .building_button:hover,
.building .building_button:focus,
.story_search_form button:hover,
.story_search_form button:focus
{
    background-color: var(--GRPS_Blue);
    color: #fff;
    text-decoration: none;
}

/* Button Grid */
p.content_button-grid:where(:has(.content_buttonblock a))
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-gap: 1rem;
    position: relative;
}
p.content_button-grid .content_buttonblock a
{
    display: block;
    margin: 0;
    height: 100%;
    display: flex;
    gap: .25em;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: .5rem;
    min-height: 4rem;
}

.fbcms_richtext table th,
.fbcms_newsarticle table th,
.fbcms_article table th,
.fbcms_htmleditor table th,
.fbcms_richtext table td,
.fbcms_newsarticle table td,
.fbcms_article table td,
.fbcms_htmleditor table td
{
    padding: 5px;
}

/* fixes cutoff in expandable content */
.fbcms_ec .fbcms_richtext_content ul:where(:first-child),
.fbcms_ec .fbcms_richtext_content ol:where(:first-child),
.fbcms_richtext_content ul:where(:first-child),
.fbcms_richtext_content ol:where(:first-child)
{
    margin-top: 0;
}

/*
-------------------------------------
 END Rich Text Formatting
-------------------------------------
*/

/*
===========================================================
 Calendar Styling
===========================================================
*/
.event_details.ui-dialog-content .description a,
.event_details.ui-dialog-content .fbcms_filedownload a
{
    color: #fff;
    background: var(--GRPS_Blue);
    padding: 5px 8px;
    border-radius: 3px;
    font-weight: bold;
    font-family: var(--Font_Base);
    display: inline-block;
    margin: 4px 0;
}
.event_details.ui-dialog-content .description a:hover,
.event_details.ui-dialog-content .fbcms_filedownload a:hover
{
    background: var(--GRPS_XDkBlue);
}

.fbcms_content.fbcms_upcoming_events .fbcms_upcoming_event_item 
{
    padding-bottom: 10px;
    border-bottom: solid 1px var(--GRPS_20Blue);
}
.fbcms_upcoming_events .time
{
    font-size: .8em;
    font-weight: bold;
    font-family: var(--Font_Base);
    color: var(--GRPS_XDkBlue);
}
.fbcms_upcoming_events .time:before,
.event_details .event_detail:before
{
    display: none;
}
.fbcms_upcoming_events .time .svg-inline--fa,
.event_details .event_detail .svg-inline--fa
{
    margin-right: .5em;
}

li.fbcms_upcoming_event_item .event_group_date 
{
    width: 60px;
}
li.fbcms_upcoming_event_item .event_date 
{
    background: var(--GRPS_Blue);
    color: #fff;
    text-align: center;
    width: 56px;
    height: 66px;
    padding: 3px 0 4px;
    vertical-align: middle;
}
li.fbcms_upcoming_event_item .event_group_date .event_day
{
    font-weight: 400;
    line-height: 1.1;
}
li.fbcms_upcoming_event_item .event_group_date .event_month
{
    font-weight: 900;
    font-family: var(--Font_Base);
    line-height: 1.2;
}
li.fbcms_upcoming_event_item .event_group_data
{
    padding-left: 12px;
}
li.fbcms_upcoming_event_item .event_title
{
    margin-bottom: 0;
}
li.fbcms_upcoming_event_item .event_title:hover, 
li.fbcms_upcoming_event_item .event_title:focus
{
    text-decoration: underline;
}

/* Calendar List */
.month_table .month_header
{
    background-color: var(--GRPS_Blue);
}
/* END Calendar List */

/* Calendar Grid */
.calendargrid .caltab .monthname
{
    color: #999999;
}
.calendargrid .caltab .dayofweek
{
    background-color: var(--GRPS_DkBlue);
    border-color: #ffffff;
    border-right-color: #ffffff;
}
.calendargrid .caltab .currentmonth .daynumber
{
    background-color: var(--GRPS_Blue);
    color: #ffffff;
}
/* END Calendar Grid */

/* Small Calendar Grid */
.minigrid_verB {
    background: #fff;
    padding: 0;
}
.minigrid_verB thead
{
    color: #fff;
    background-color: var(--GRPS_DkBlue);
    border: none;
}
.minigrid_verB .calendar_mini_controls {
    text-align: center;
}
.fbcms_calendar_mini .fbcms_calendar_mini_monthName,
.fbcms_calendar_mini .fbcms_calendar_mini_yearNumber
{
    color: #fff;
    font-family: var(--Font_Base);
    font-size: var(--font-size-h4);
}
.minigrid_verB .fbcms_calendar_mini .fbcms_calendar_mini_prevMonth,
.minigrid_verB .fbcms_calendar_mini .fbcms_calendar_mini_nextMonth
{
    color: var(--GRPS_Orange);
    font-size: 3rem;
    line-height: .5;
    margin: 0 10px;
}
.fbcms_calendar_mini .fbcms_calendar_mini_prevMonth
{
    float: left;
}
.fbcms_calendar_minigrid th {
    color: #fff;
    font-size: 1.1rem;
}
.fbcms_calendar_minigrid td
{
    font-size: .925rem;
    line-height: 3.5;
}
.fbcms_calendar_mini .fbcms_calendar_mini_event 
{
    background-color: var(--GRPS_XLtGray);
    color: var(--GRPS_Blue);
    text-decoration: underline;
}
.fbcms_calendar_mini .today, 
.fbcms_calendar_mini .isDay:hover, 
.fbcms_calendar_mini .isDay:focus
{
    color: var(--GRPS_Orange);
    background-color: var(--GRPS_DkBlue);
}
/* END Small Calendar Grid */

/*
===========================================================
 END Calendar Styling
===========================================================
*/

/*
===========================================================
 News Styling
===========================================================
*/
.fbcms_newscontent .fbcms_newscontent_month 
{
    font-size: 14px;
    color: #000;
}
/*
===========================================================
 END News Styling
===========================================================
*/

/*
===========================================================
 Jobs Styling
===========================================================
*/
.fbcms_jobs .jobBuildingName
{
    font-size: var(--font-size-h6);
}
.fbcms_jobs .jobCategory:not(:last-child)
{
    padding-bottom: 1.5rem;
    border-bottom: solid 1px var(--GRPS_Orange);

}

/*
===========================================================
 END Jobs Styling
===========================================================
*/

/*
===========================================================
 Stories Styling
===========================================================
*/
.fbcms_ajcp > a
{
    background: var(--GRPS_Red);
    color: #fff;
    width: 33px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}
.fbcms_ajcp > a:hover,
.fbcms_ajcp > a:focus
{
    background: var(--GRPS_DkOrange); 
}
.fbcms_ajcp > a.disable_button
{
    background: #666666;
    color: #fff;
}
.ajcp_pages a
{
    padding: 0 6px;
}

.story_list.Horizontal
{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.story_list .story
{
    padding: 10px 5px;
    transition: all .2s ease;
}
.story_list .story:hover,
.story_list .story:focus
{
    background: var(--GRPS_XLtGray);
}

.page_districthome .left_tab1
{
    text-align: center;
}
.page_districthome .fbcms_storylist .fbcms_contentfooter
{
    text-align: center;
    margin-bottom: 1rem;
}
.page_districthome .story
{
    background: var(--GRPS_Blue);
    color: #fff;
    width: 445px;
    max-width: 100%;
    padding: 8px;
    text-align: center;
    border-radius: 6px;
}
.page_districthome .story_list .story:hover,
.page_districthome .story_list .story:focus
{
    background: var(--GRPS_Blue);
}
.page_districthome .story_image
{
    border-radius: 6px 6px 0 0;
}
.page_districthome .fbcms_storylist .story_title
{
    color: #fff;
    font-size: var(--font-size-base);
}
.page_districthome .story.Stack.story .story_byline
{
    top: 60px;
}
.page_districthome .story.Stack .story_summary:after
{
    content: attr(data-text-readmore);
    display: inline-block;
    font-weight: bold;
    font-family: var(--Font_Base);
    padding: 3px 12px;
    border-radius: 8px;
    letter-spacing: 1px;
    background: var(--GRPS_DkOrange);
    margin: 5px auto;
}
@media only screen and (min-width: 500px)
{
    .page_interior .fbcms_storylist .story.Wrap .story_thumbnail
    {
        float: left;
        max-width: 40%;
        margin-right: .8rem;
        margin-bottom: 5px;
    }
}
@media only screen and (min-width: 768px)
{
    .page_districthome .story
    {
        max-width: calc(50% - 10px);
    }
}
@media only screen and (max-width: 993px)
{
    .page_districthome .story.fbcms_linkedstory .svg-inline--fa
    {
        display: none;
    }
}
@media only screen and (min-width: 994px)
{
    /*FA icon*/
    .page_districthome .story.fbcms_linkedstory:before
    {
        content: "\f107";
        font-weight: 900;
        font-family: 'Font Awesome 5 Free';
    }
    .page_districthome.use_svg_fakit .story.fbcms_linkedstory:before
    {
        display: none;
    }
    .page_districthome.use_svg_fakit .story.fbcms_linkedstory .svg-inline--fa,
    .page_districthome:not(.use_svg_fakit) .story.fbcms_linkedstory:before
    {
        font-size: 3rem;
        line-height: 1;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
        opacity: .8;
        transition: all .2s ease;
    }
    .page_districthome .story.fbcms_linkedstory:hover .svg-inline--fa,
    .page_districthome .story.fbcms_linkedstory:focus .svg-inline--fa
    {
        opacity: 0;
        transform: translate(-50%, 50px);
    }

    .page_districthome .story .story_summary
    {
        position: absolute;
        top: 8px;
        left: 8px;
        padding: 16px;
        width: calc(100% - 16px);
        text-align: center;
        color: #fff;
        background: rgb(0 46 109 / 80%);
        z-index: 2;
        opacity: 0;
        transform: translateY(-100%);
        transition: all .3s ease;
    }
    .page_districthome .story.Stack:hover .story_summary,
    .page_districthome .story.Stack:focus .story_summary
    {
        opacity: 1;
        transform: translateY(0%);
    }    
    .page_districthome .story.Stack .story_summary:after
    {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%); 

    }
}

/* Story Search */
.side_col .story.Stack
{
    position: relative;
    vertical-align: top;
    padding: 0;
    font-size: 1rem;
    margin-bottom: 1.5em;
    padding: 5px;
}
.side_col .story.Stack:nth-child(even)
{
    margin-right: 0;
}
.side_col .story.Stack.fbcms_activestory
{
    background-color: var(--GRPS_20Blue);
}
.story_search_results .story_thumbnail
{
    float: none;
    margin-right: 0;
}
.side_col .story.Stack .story_title,
.inside_center .story.Stack .story_title
{
    display: block;
    font: bold 1.1rem/1.3 var(--Font_Base);
}
@media only screen and (min-width: 500px) and (max-width: 768px)
{
    .story_search_results .story_thumbnail {
        float: left;
        max-width: 40%;
        margin-right: .5em;
    }
}
@media only screen and (min-width: 994px)
{
    .side_col .story.Stack
    {
        display: inline-block;
        width: 47%;
        margin-right: 3%;
    }
}
@media print {
    .side_col .fbcms_story_search 
    {
        display: none;
    }
}
.inside_center .story_search.fbss_sbs
{
    align-items: flex-start;
}
.inside_center .fbss_sbs .story_search_form 
{
    margin-right: 20px;
    background: var(--GRPS_XLtBlue);
    padding: 1rem;
}
.page_interior .story_list.Horizontal,
.fbcms_story_search.inside_center .story_list
{
    --_space: .75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-gap: var(--_space);
}
.page_interior .inside_center .story_list .story
{
    background: var(--GRPS_XLtGray);
}
.story .fbcms_videoblock 
{
    margin-bottom: 1.5rem;
}
/*.story .fbs_struct .fbs_panel:first-child
{
    padding-left: 0;
}
.story .fbs_struct .fbs_panel:last-child
{
    padding-right: 0;
}*/
@media only screen and (min-width: 994px)
{
    .inside_center .fbcms_contentfooter.fbss_sbs {
        padding-left: calc(30% + 20px);
        text-align: center;
    }
}

.story_list_result.story:hover, 
.story_list_result.story:focus {
    background: var(--GRPS_XLtBlue);
}
.fbcms_storylist .story .story_summary:after
{
    content: attr(data-text-readmore);
    display: inline-block;
}

/*
===========================================================
 END Stories Styling
===========================================================
*/

/*
===========================================================
 Staff Styling
===========================================================
*/
.fbcms_staff_listing_header,
.fbcms_staff_search_results .header 
{
    color: var(--GRPS_DkBlue);
    font-weight: bold;
    font-family: var(--Font_Base);
}

.fbcms_staff_listing_row .fbcms_staffentry
{
    display: flex;
    align-items: center;
    gap: 5px 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.fbcms_staff_listing_row .fbcms_staffentry .profilePhoto
{
    width: 130px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    float: none;
    flex-shrink: 0;
}
.fbcms_staff_listing_row .fbcms_staffentry .profilePhoto img
{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: top;
    margin: 0;
}
.fbcms_staff_listing_row .fbcms_staffentry .fbcms_staffinfo
{
    flex-grow: 1;
    width: 60%;
}

/* Staff Cards */
.fbcms_staff_listing .fbcms_staff_listing_row .name
{
    font-weight: normal;
    font-size: 1.1em;
    color: var(--GRPS_DkBlue);
}
.fbcms_staff_cards .fbcms_contentbody .row2, 
.fbcms_staff_cards .fbcms_contentbody .row3, 
.fbcms_staff_cards .fbcms_contentbody .row4 
{
    font-weight: 400;
}

/* Staff card grid */
.fbcms_staff_cards .fbcms_cards
{
    display: grid;
    grid-gap: 1rem;
}

.fbcms_staffentry a.btn_read {
    visibility: hidden;
    font-size: 1px;
    letter-spacing: -1px;
}
.fbcms_staffentry a.btn_read:before {
    content: "View Profile";
    font-size: var(--font-size-base);
    color: var(--GRPS_Red);
    letter-spacing: normal;
    visibility: visible;
}
@media only screen and (min-width: 500px)
{
    .fbcms_staff_cards .fbcms_cards
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0;
    }
    .fbcms_staff_cards > .fbcms_contentbody > .fbcms_staffentry {
        width: 100%;
        padding: 0;
    }
    .fbcms_staff_cards .fbcms_contentbody .fbcms_staffentry_liner
    {
        height: 100%;
    }
}
@media only screen and (min-width: 768px)
{
    .page_onecol .fbcms_staff_cards .fbcms_cards
    {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media only screen and (min-width: 994px)
{
    .fbcms_staff_cards .fbcms_cards
    {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .page_onecol .fbcms_staff_cards .fbcms_cards
    {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media only screen and (min-width: 1200px)
{
    .fbcms_staff_cards .fbcms_cards
    {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .page_onecol .fbcms_staff_cards .fbcms_cards
    {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}
/*
===========================================================
 END Staff Styling
===========================================================
*/

/*
===========================================================
 Building Styling
===========================================================
*/
.building_list.fbcms_grid
{
    grid-gap: 1.3em 1em;
    margin-bottom: 2rem;
}
.building_list .building_liner
{
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 40%));
    transform: scale(.98);
    transition: all .3s ease-out;
    overflow: visible;
    font-size: var(--font-size-sub);
}
.building_list .building.has_moreinfo:hover .building_liner
{
    outline: none;
    filter: drop-shadow(0 4px 6px rgb(0 0 0 / 15%));
    transform: scale(1) translateY(-6px);
}
.building_list .building .building_image
{
    max-width: calc(100% + 30px);
    margin: -15px -15px 10px -15px;
    border-radius: 10px 10px 0 0;
}
.building_list .building .building_title
{
    font-size: var(--font-size-base);
}
.building .category_container
{
    margin-bottom: 5px;
    color: var(--GRPS_Gray);
    line-height: 1.3;
}
.building_liner.fbcms_griditem_liner .building_link
{
    text-align: center;
    margin: 0 auto -2rem;
}
.building_list .building .building_button
{
    margin: 0;
    font-size: var(--font-size-sub);
    line-height: 1.2;
    padding: 8px 12px;
}
@media only screen and (max-width: 499px)
{
    .building_list .building
    {
        margin-bottom: 2rem;
    }
}

.fbd_header
{
    background-color: var(--GRPS_Blue);
    color: #fff;
}
.fbd_content .building_liner .building_details  
{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: solid 1px var(--GRPS_LtGray);
} 
.fbd_content .building_liner .building_metadata
{
    border-top: solid 1px var(--GRPS_Gray);
    padding-top: 1rem;
}
.fbd_content .building_liner .building_link
{
    text-align: center;
}
.fbd_content .building_liner .building_button
{
    margin-bottom: 0;
}
@media only screen and (min-width: 768px)
{
    .fbd_building .fbd_content {
        padding: 20px;
    }
    .fbd_content .building_liner
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem 2rem;
    }
    .fbd_content .building_liner .building_image
    {
        grid-column: 2 / 2;
    }
    .fbd_content .building_liner .building_data
    {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
    }
    .fbd_content .building_liner .building_metadata
    {
        grid-column: 2 / 2;
        grid-row: 2 / 3;
        padding: 0 0 0 2rem;
        border-top: none;
        border-left: solid 1px var(--GRPS_Gray);
    }
    .fbd_content .building_liner .building_link
    {
        grid-row: 4;
        grid-column: 1 / 3;
    }
    .fbd_content .building_liner .building_button
    {
        width: 90%;
        max-width: 450px;
    }
}
/*
===========================================================
 END Building Styling
===========================================================
*/

/*
===========================================================
 Spotlight Styling
===========================================================
*/
@media only screen and (min-width: 768px)
{   
    .fbcms_spotlights_list.spotlights_horizontal.horz_layout_0 .fbcms_spotlight_slide_liner
    {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
    }
    .fbcms_spotlights_list.spotlights_horizontal.horz_layout_0 .fbcms_spotlight
    {
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 994px)
{
    .fbcms_spotlights_list.spotlights_horizontal.horz_layout_0 .fbcms_spotlight_slide_liner
    {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* button spotlights - /departments/human-resources/careers/ */
.page_landing.page_nosidenav .fbcms_spotlight.hide_text a.fbcms_spotlight_liner:hover,
.page_landing.page_nosidenav .fbcms_spotlight.hide_text a.fbcms_spotlight_liner:focus-visible
{
    background-color: var(--GRPS_Orange);
    transition: all .3s;
}
.page_landing.page_nosidenav .fbcms_spotlight.hide_text .fbcms_spotlight_image
{
    margin: 0;
    line-height: 0;
}

/* Quicklink Spotlights */
.quickspots_wrapper
{
    position: relative;
    background: var(--GRPS_XLtGray);
    box-shadow: 0 -2px 6px rgb(0 0 0 / 30%);
    border-top: solid 10px var(--GRPS_Orange);
    box-shadow: inset 0 2px 10px -4px rgb(0 0 0 / 20%);
}
@media print {
    .quickspots_wrapper 
    {
        display: none;
    }
}
.page_districthome .quickspots_wrapper
{
    border-top: none;
    border-bottom: solid 10px var(--GRPS_Orange);
}
/*.quickspots_wrapper:after
{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/BlueFlameWatermarkLight-off.png) top 20px center;
    background-attachment: fixed;
    filter: brightness(0) invert(100%);
    z-index: 1;
    opacity: .5;
}*/
.quickspots_wrapper .component_liner
{
    position: unset;
    z-index: 2;
}
.site_quickspots.fbcms_spotlights .fbcms_contentbody
{
    position: unset;
}
.site_quickspots.fbcms_spotlights,
.quickspots_wrapper .fbcms_contentheader, 
.quickspots_wrapper .fbcms_contentfooter {
    margin: 0;
}
.site_quickspots .fbcms_spotlights_list:after
{
    display: none;
}
.site_quickspots .fbcms_spotlight
{
    text-align: center;
}
.site_quickspots .fbcms_spotlight .fbcms_spotlight_liner
{
    padding: 10px;
    height: 100%;
    position: relative;
    transition: all .2s ease;
    border-bottom: solid 3px var(--GRPS_Orange);
}
.site_quickspots .fbcms_spotlight .fbcms_spotlight_image
{
    margin: 0 auto;
    width: 80%;
    margin-bottom: 10px;
    transform: scale(.8);
    transition: all .2s ease-out;
}
.site_quickspots .fbcms_spotlight_liner:hover .fbcms_spotlight_image,
.site_quickspots .fbcms_spotlight_liner:focus .fbcms_spotlight_image
{
    transform: scale(1) rotate(0.01deg);
}
.site_quickspots .fbcms_spotlight .desc_short
{
    font-size: var(--font-size-h4);
    line-height: 1.1;
    margin-bottom: .1em;
    color: var(--GRPS_Blue);
}
.site_quickspots .fbcms_spotlight .desc_long,
.site_quickspots .fbcms_spotlight_liner .more_link
{
    display: none;
}
@media only screen and (max-width: 499px)
{
    .site_quickspots .fbcms_spotlight:last-child .fbcms_spotlight_liner
    {
        border-bottom: none;
    }
}
@media only screen and (min-width: 500px)
{
    .site_quickspots.fbcms_spotlights
    {
        padding: 10px 0;
    }
    .site_quickspots .fbcms_spotlights_list.spotlights_horizontal,
    .site_quickspots .spotlights_horizontal .fbcms_spotlight_slide_liner
    {
        display: flex;
        justify-content: space-around;
    }
    .site_quickspots .spotlights_horizontal .fbcms_spotlight
    {
        max-width: 46%;
        overflow: visible;
        margin: 10px 0 5px;
        position: relative;
        z-index: 2;
    }
    .site_quickspots .fbcms_spotlight .fbcms_spotlight_liner
    {
        border-bottom: none;
        background: #fff;
        position: relative; 
        border-bottom: solid 0 var(--GRPS_Orange);
        padding: 20px 10px;
        transition: all .1s ease-out;
    }
    .site_quickspots .fbcms_spotlight .fbcms_spotlight_liner:hover,
    .site_quickspots .fbcms_spotlight .fbcms_spotlight_liner:focus
    {
        border-width: 5px;
        padding-bottom: 15px;
    }
}
@media only screen and (min-width: 768px)
{   
    .site_quickspots .fbcms_spotlight .desc_short
    {
        font-size: var(--font-size-base);
    }
}
@media only screen and (min-width: 994px)
{
    .page_body .quickspots_wrapper
    {
        border: none;
    }
    .site_quickspots.fbcms_spotlights
    {
        position: unset;
        padding: 10px 0;
    }

    .site_quickspots .fbcms_spotlights_list:after
    {
        content: "";
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-bottom: solid 10px var(--GRPS_Orange);
        transition: all .2s ease-out;
        box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
    }
    .page_interior .site_quickspots .fbcms_spotlights_list:after
    {
        top: auto;
        bottom: 100%;
        box-shadow: 0 -2px 4px rgb(0 0 0 / 30%);
    }
    .site_quickspots .fbcms_spotlights_list:hover:after
    {
        border-width: 0;
        box-shadow: 0 3px 0 rgb(0 0 0 / 0%);
    }

    .spotlights_horizontal.horz_layout_6 .fbcms_spotlight {
        flex: 1 1 14.666%;
    }
    .site_quickspots .spotlights_horizontal .fbcms_spotlight
    {
        border-left: solid 1px var(--GRPS_Orange);
        border-right: solid 1px var(--GRPS_Orange);
        border-bottom: none;
        margin: 0;
    }
    .site_quickspots .spotlights_horizontal .fbcms_spotlight:first-child
    {
        border-left-width: 2px;
    }
    .site_quickspots .spotlights_horizontal .fbcms_spotlight:last-child
    {
        border-right-width: 2px;
    }   

    .site_quickspots .fbcms_spotlight .fbcms_spotlight_liner
    {
        background: transparent;
        border: none;
        padding-bottom: 20px !important;
    }
    .site_quickspots .fbcms_spotlight_liner:after
    {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -20px;  
        border-bottom: solid 0 transparent;
        box-shadow: 0 -2px 0 rgb(0 0 0 / 0%);
    }
    .page_interior .site_quickspots .fbcms_spotlight_liner:after
    {
        bottom: auto;
        top: -20px;
    }
    .site_quickspots .fbcms_spotlight_liner:hover:after,
    .site_quickspots .fbcms_spotlight_liner:focus:after
    {
        border-bottom-color: var(--GRPS_Orange);
        border-bottom-width: 10px;
        box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
    }
    .page_interior .site_quickspots .fbcms_spotlight_liner:hover:after,
    .page_interior .site_quickspots .fbcms_spotlight_liner:focus:after
    {
        box-shadow: 0 -2px 5px rgb(0 0 0 / 30%);
    }
}

/* Points of Pride */
.page_districthome .home_component5 .component_liner
{
    padding: 0;
    width: 100%;
    max-width: none;
}
.page_districthome .home_component5 .left_col,
.page_districthome .home_component5 .home_left2.fbcms_videoblock
{
    display: grid;
    align-items: center; 
    padding: 0;
    background: #fff;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
}
.page_districthome .home_component5 .home_right2.fbcms_spotlights
{
    background: #fff;
    padding: 0;
    margin: 0;
}
.page_districthome .home_right2.fbcms_spotlights .fbcms_contentheader,
.page_districthome .home_right2.fbcms_spotlights .fbcms_contentfooter
{
    margin: 0;
}
.page_districthome .home_component5 .spotlights_horizontal .fbcms_spotlight
{
    margin: 0;
}
.page_districthome .home_component5 .fbcms_spotlight
{
    text-align: center;
    border: solid 2px #fff;
}
.page_districthome .home_component5 .fbcms_spotlight .more_link
{
    border-color: #fff;
}
.page_districthome .home_component5 .fbcms_spotlight:nth-child(1),
.page_districthome .home_component5 .fbcms_spotlight:nth-child(3),
.page_districthome .home_component5 .fbcms_spotlight:nth-child(5)
{
    background-color: var(--GRPS_Blue);
}
.page_districthome .home_component5 .fbcms_spotlight:nth-child(2),
.page_districthome .home_component5 .fbcms_spotlight:nth-child(4),
.page_districthome .home_component5 .fbcms_spotlight:nth-child(6)
{
    background-color: var(--GRPS_DkOrange);
}
.page_districthome .home_component5 .fbcms_spotlight a.fbcms_spotlight_liner:hover,
.page_districthome .home_component5 .fbcms_spotlight a.fbcms_spotlight_liner:focus
{
    background-color: rgba(0,0,0,.6);
}

.page_districthome .home_component5 .fbcms_spotlights .fbcms_contentbody,
.page_districthome .home_component5 .fbcms_spotlight_liner
{
    padding: 0;
    position: relative;
    height: 100%;
    transition: all .3s ease;
    display: grid;
    align-items: center;
}
.page_districthome .home_component5 .fbcms_spotlight_liner:after
{
    display: none;
}
.page_districthome .home_component5 .fbcms_spotlight_text
{
    z-index: 3;
    width: 100%;
    color: #fff;
    padding: 12px;
}
.page_districthome .home_component5 .fbcms_spotlight .desc_short
{
    font-size: var(--font-size-h1);
    color: #fff;
    display: block;
    margin-bottom: .1em;
    text-transform: uppercase;
}
.page_districthome .home_component5 .fbcms_spotlight .desc_long
{
    display: block;
    color: #fff;
/*    margin-bottom: .3em;*/
    font-size: var(--font-size-h5);
    font-weight: bold;
    font-family: var(--Font_Base);
    /*letter-spacing: .2em;*/
    text-transform: uppercase;
}
.page_districthome .home_component5 .fbcms_spotlight .more_link
{
    color: #fff;
    width: 74px;
    margin: .3em auto 0;
    border-color: #fff;
}
@media only screen and (max-width: 993px)
{
    .page_districthome .home_component5 .columns
    {
        flex-wrap: wrap;
    }
    .page_districthome .home_component5 .column
    {
        width: 100%;
    }
}
@media only screen and (min-width: 500px)
{
    .page_districthome .home_component5 .spotlights_horizontal .fbcms_spotlight
    {
        flex: 0 1 50%;
    }
    .page_districthome .home_component5 .spotlights_horizontal .fbcms_spotlight:nth-child(5)
    {
        /*flex: 0 1 100%;*/
    }

    /* Colors */
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(1),
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(4),
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(5)
    {
        background-color: var(--GRPS_Blue);
    }
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(2),
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(3),
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(6)
    {
        background-color: var(--GRPS_DkOrange);
    }
}
@media only screen and (min-width: 768px)
{
    .page_districthome .home_component5 .fbcms_spotlights,
    .page_districthome .home_component5 .fbcms_spotlights .fbcms_spotlights_list,
    .page_districthome .home_component5 .fbcms_spotlights .fbcms_spotlight_slide_liner
    {
        height: 100%;
        align-content: stretch;
    }
    .page_districthome .home_component5 .fbcms_spotlight .desc_short
    {
        font-size: var(--font-size-h2);
        line-height: 1;
    }
    /* Widths */
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(1)
    {
        border-top: none;
        flex-basis: 52%;
    }
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(2)
    {
        border-top: none;
        flex-basis: 48%;
    }
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(3)
    {
        flex-basis: 45%;
    }
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(4)
    {
        flex-basis: 55%;
    }
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(5)
    {
        flex-basis: 60%;
    }
    .page_districthome .home_component5 .fbcms_spotlight:nth-child(6)
    {
        flex-basis: 40%;
    }
}

/* Departments */
.page_interior .main_content .spotlights_vertical .linedup 
{
    margin-bottom: 0;
    border-bottom: solid 1px var(--GRPS_Gray);
}
.page_interior .main_content .spotlights_vertical .fbcms_spotlight.linedup:first-child
{
    border-top: solid 1px var(--GRPS_Gray);
}
.page_interior .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:hover,
.page_interior .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:focus 
{
    background-color: transparent;
}
.page_interior .main_content .spotlights_vertical .linedup .fbcms_spotlight_text 
{
    padding-left: 0;
}
.page_interior .main_content .spotlights_vertical .linedup .desc_short 
{    
    font: 400 var(--font-size-sub)/1.3 var(--Font_Base);
    margin-bottom: 0;
}
.page_interior .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:hover .desc_short,
.page_interior .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:focus .desc_short 
{
    text-decoration: underline;
}

.page_interior .main_content .spotlights_vertical .linedup .desc_short:after
{
    content: "\f35a";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
}
.use_svg_fakit .main_content .spotlights_vertical .linedup .desc_short:after
{
    display: none;
}
.page_interior .main_content .spotlights_vertical .linedup .desc_short .svg-inline--fa,
.page_interior:not(.use_svg_fakit) .main_content .spotlights_vertical .linedup .desc_short:after
{
    margin-left: .3em;
    color: var(--GRPS_DkOrange);
    transition: margin .2s linear;
}
.page_interior .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:hover .desc_short .svg-inline--fa,
.page_interior .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:focus .desc_short .svg-inline--fa,
.page_interior:not(.use_svg_fakit) .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:hover .desc_short:after,
.page_interior:not(.use_svg_fakit) .main_content .spotlights_vertical .linedup .fbcms_spotlight_liner:focus .desc_short:after
{
    margin-left: .6em;
    color: var(--GRPS_Blue);
}
.page_interior .main_content .spotlights_vertical .linedup .more_link 
{
    display: none;
}

/* Student Focus */
.student_focus.fbcms_spotlights
{
    max-width: calc(100% - 100px);
    margin: 0 auto;
    padding-bottom: 25px;
}
.student_focus .fbcms_contentheader
{
    margin: 0;
}
.student_focus .fbcms_spotlight.linedup .fbcms_spotlight_liner
{
    flex-wrap: wrap;
    justify-content: center;
}
.student_focus .fbcms_spotlight .fbcms_spotlight_liner:hover,
.student_focus .fbcms_spotlight .fbcms_spotlight_liner:focus 
{
    background: transparent;
}
.student_focus .fbcms_spotlight_liner .fbcms_spotlight_image,
.student_focus .fbcms_spotlight_liner .fbcms_spotlight_text {
    max-width: 100%;
}
.student_focus .fbcms_spotlight_image {
    padding: 12px 0 0;
    margin-bottom: 10px;
    text-align: center;
}
.student_focus .fbcms_spotlight .fbcms_spotlight_image img {
    width: auto;
    border: solid 6px #fff;
    box-shadow: 2px 4px 7px rgb(0 0 0 / 20%);
}
.student_focus .fbcms_spotlight .fbcms_spotlight_text {
    background: rgba(255,255,255,.9) url(../img/BlueFlameWatermarkLight.png) no-repeat bottom -40px right -20px;
    padding: 12px;
}
.student_focus .desc_short 
{
    color: var(--GRPS_DkBlue);
    font: bold 2rem/1.3 var(--Font_Base);
    margin-bottom: 0.3em;
}
.student_focus .desc_short .first_two_words
{
    font: 400 .6em/1.4 var(--Font_Base);
    text-transform: uppercase;
    display: block;
}
.student_focus .desc_long
{
    display: block;
}
@media only screen and (min-width: 768px)
{
    .student_focus .fbcms_spotlight .fbcms_spotlight_image {
        position: relative;
        z-index: 2;
        padding: 0;
        line-height: 0;
        margin: 40px 0 0;
        text-align: right;
    }
    .student_focus .fbcms_spotlight .fbcms_spotlight_text {
        position: relative;
        z-index: 1;
        padding: 30px 60px 20px 40px;
        margin: 20px 0 0;
    }
}
@media only screen and (min-width: 994px)
{
    .student_focus .fbcms_spotlight .fbcms_spotlight_image {
        max-width: 40%;
        margin: 80px -40px 0 0;
    }
    .student_focus .fbcms_spotlight .fbcms_spotlight_text {
        max-width: 60%;
        margin: 40px 0 0;
        padding: 60px 170px 50px 70px;
    }
}

.student_focus.fbcms_spotlights .fbcms_contentfooter
{
    text-align: center;
}
.student_focus .spotlight_button.spotlight_over
{
    padding: 6px 8px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--GRPS_Blue);
    border: solid 2px #fff;
}
.student_focus .spotlight_button.spotlight_over:hover,
.student_focus .spotlight_button.spotlight_over:focus
{
    background-color: var(--GRPS_Orange);
}

.student_focus.fbcms_spotlights .fbcms_contentfooter .fbcms_spotlight_controls
{
    padding: 12px 14px 14px;
    background: rgb(255 255 255 / 70%);
    border-radius: 5px;
}
.student_focus .fbcms_spotlight_controls .spotlight_button:not(.spotlight_viewall)
{
    color: var(--GRPS_Blue);
}
.student_focus .fbcms_spotlight_controls .spotlight_button:not(.spotlight_viewall):hover,
.student_focus .fbcms_spotlight_controls .spotlight_button:not(.spotlight_viewall):focus
{
    color: var(--GRPS_Orange);
}
.student_focus .fbcms_spotlight_pager .spotlight_item
{
    border-color: var(--GRPS_Blue);
    background-color: var(--GRPS_Blue);
}
.student_focus .fbcms_spotlight_pager .spotlight_item:hover, 
.student_focus .fbcms_spotlight_pager .spotlight_item:focus {
    background-color: #fff;
    border-color: var(--GRPS_Blue);
    color: #fff;
    box-shadow: 0 0 0 1px #999;
}
.student_focus .fbcms_spotlight_pager .spotlight_item.spotlight_pager_active, 
.student_focus .fbcms_spotlight_pager .spotlight_item.spotlight_pager_active:hover, 
.student_focus .fbcms_spotlight_pager .spotlight_item.spotlight_pager_active:focus {
    background-color: transparent;
    color: var(--GRPS_Blue);
}
.student_focus .spotlight_button.spotlight_viewall:not(:first-child)
{
    margin-left: 10px;
}


/* Site Help Spots - (with vertical overrides) */
.fbcms_content.site_help_spots
{
    position: fixed;
    left: 0;
    top: 2px;
    z-index: 200;
}

.site_help_spots .fbcms_contentheader
{
    margin: 0;
}
.site_help_spots .fbcms_spotlights_list
{
    display: block;
}
.site_help_spots .fbcms_spotlight
{
    overflow: visible;
    margin-bottom: 10px;
}
.site_help_spots .fbcms_spotlight.linedup .fbcms_spotlight_liner
{
    position: absolute;
    width: max-content;
    background-color: var(--GRPS_DkOrange);
    padding: 4px 8px;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 70%);
    transition: all .3s;
    border-radius: 0 4px 4px 0;
    transform: translateX(calc(-100% + 34px));
}
.site_help_spots .fbcms_spotlight.linedup a.fbcms_spotlight_liner:hover,
.site_help_spots .fbcms_spotlight.linedup a.fbcms_spotlight_liner:focus
{
    background-color: var(--GRPS_Blue);
    transform: translateX(0);
}
.site_help_spots .fbcms_spotlight.linedup .fbcms_spotlight_image
{
    max-width: none;
    width: 22px;
    padding: 2px 0;
    order: 2;
    filter: brightness(0%) invert(100%);
}
.site_help_spots .fbcms_spotlight.linedup .fbcms_spotlight_text
{
    background-color: transparent !important;
    padding: 0 15px 0 0;
    order: 1;
}
.site_help_spots .fbcms_spotlight .fbcms_spotlight_liner .desc_short
{
    color: #fff;
    margin-bottom: 0;
}
.site_help_spots .fbcms_spotlight .fbcms_spotlight_liner .desc_long,
.site_help_spots .fbcms_spotlight .fbcms_spotlight_liner .more_link
{
    display: none;
}
@media only screen and (min-width: 768px)
{
    .fbcms_content.site_help_spots
    {
        /*top: 460px;*/
        top: 240px;
    }
    .site_help_spots .fbcms_spotlight.linedup .fbcms_spotlight_liner
    {
        padding: 10px 12px;
        transform: translateX(calc(-100% + 48px));
    }
    .site_help_spots .fbcms_spotlight.linedup .fbcms_spotlight_image
    {
        width: 24px;
        padding: 4px 0;
    }
}

/* Spotlight Cards */
.fbcms_spotlightcards .fbcms_card_liner
{
    /*background-color: transparent;*/
    padding: 0;
}
.fbcms_spotlightcards .fbcms_spotcard_link
{
    padding: 5px;
}
.fbcms_spotlightcards .fbcms_spotcard_link:hover,
.fbcms_spotlightcards .fbcms_spotcard_link:focus
{
    background-color: var(--GRPS_20Blue);
}
.fbcms_spotlightcards  .fbcms_card_name
{
    font-size: var(--font-size-h5);
}
.fbcms_spotlightcards .fbcms_card_desc
{
    color: var(--GRPS_DefaultText);
}
.fbcms_spotlightcards .fbcms_spotcard_link:hover .fbcms_card_link,
.fbcms_spotlightcards .fbcms_spotcard_link:focus .fbcms_card_link
{
    color: var(--GRPS_DkBlue);
}


/* Home Rotator Spotlights */
.home_focus.fbcms_spotlights
{
    container-type: inline-size;
    margin: 0;
    position: relative;
    color: #fff;
    
    .fbcms_contentheader
    {
        margin: 0;
    }
    .fbcms_spotlight
    {
        margin: 0;
    }
    .fbcms_spotlight_liner
    {
        padding: 0;
        position: relative;
        background-color: var(--GRPS_XDkBlue);
        height: fit-content;
        overflow: hidden;
        isolation: isolate;

        .fbcms_spotlight_image
        {
            margin: 0;

            img 
            {
                width: 100%;
                height: 100% !important;
                object-fit: cover;
                object-position: center;
            }
        }

        .fbcms_spotlight_text
        {
            background-color: rgb(0 46 109 / 90%);
            color: #fff;
            padding: 12px 20px;

            @container (max-width: 767px)
            {
                padding: 12px;
            }
            @container (min-width: 768px)
            {
                position: absolute;
                inset: auto 0 0;
            }

            &:where(:not(:has(.desc_long)))
            {
                display: none;
            }
            

            .desc_short
            {
                font-size: var(--font-size-base);
                font-weight: 800;
                color: #fff;
                margin: 0;
            }
            .desc_long
            {
                color: #fff;
            }
            .more_link
            {
                padding: 2px 10px;
                text-decoration: none;
                display: inline-block;
                background-color: var(--GRPS_20Blue);
                color: var(--GRPS_DkBlue);
                border-radius: 6px;

                &:hover,
                &:focus
                {
                    background-color: var(--GRPS_Orange);
                    color: var(--GRPS_XDkBlue);
                }
            }
        }
    }
    .spotlight_button:where(.spotlight_next, .spotlight_prev)
    {
        width: 3rem;
        height: 3rem;
        padding: .5rem;
        color: #fff;
    }
    .spotlight_button.spotlightbutton_middle.spotlight_next,
    .spotlight_button.spotlightbutton_middle.spotlight_prev
    {
        transform: translate(0, -50%);
        stroke: currentColor;
        stroke-width: 2px;
    }
    .spotlight_button.spotlightbutton_middle.spotlight_next
    {
        @container (max-width: 767px)
        {
            position: absolute;
            right: 0;
            top: 20%;
            transform: none;
        }
    }
    .spotlight_button.spotlightbutton_middle.spotlight_prev
    {
        @container (max-width: 767px)
        {
            position: absolute;
            left: 0;
            top: 20%;
            transform: none;
        }
    }
    .fbcms_contentfooter.blockpos_left
    {
        text-align: center;
        margin: 0;
        padding: 0 3rem 10px;
    }
}
/* END Home Rotator Spotlights */

/*
===========================================================
 END Spotlight Styling
===========================================================
*/
.fbcms_cards .fbcms_card_skiplinks.hoverfocus {
    height: 2.3em;
}
.fbcms_cards .fbcms_card .fbcms_card_skiplinks .skiplink
{
    font-size: var(--font-size-sub);
    line-height: 1.2;
    padding: 0 5px;
    display: grid;
    align-items: center;
}
@media only screen and (max-width: 993px)
{
    .fbcms_photogallerycards .fbcms_cards.cardlayout_wide > .fbcms_card {
        width: 49.9%;
    }
}
@media only screen and (max-width: 767px)
{
    .fbcms_photogallerycards .fbcms_cards.cardlayout_wide > .fbcms_card {
        width: 100%;
        padding-left: 0;
    }
}

/*
===========================================================
 Expandable Content Styling
===========================================================
*/
.fbcms_ec_title
{
    background-color: var(--GRPS_DkBlue);
}
.fbcms_ec_title:hover,
.fbcms_ec_title:focus
{
    background-color: var(--GRPS_Blue);
}
.fbcms_ec_title h2
{
    line-height: initial;
    font-size: var(--font-size-h3);
}
.fbcms_ec .fbcms_richtext_content
{
    padding: 6px 10px;
}
.flexi_block.fbcms_ec 
{
    box-shadow: 0 1px 2px rgb(0 0 0 / 40%);
}
.flexi_block .fbcms_ec_title
{
    margin: 0;
}
/*
===========================================================
 END Expandable Content Styling
===========================================================
*/

/*
===========================================================
  Fly-Up Tab Customization
===========================================================
*/
.flyup_container {
    z-index: 2;
}
.flyup_tab 
{
    font-size: var(--font-size-sub);
    line-height: 1.3;
    color: #ffffff;
    background-color: var(--GRPS_Red);
    width: auto;
    min-width: 190px;
    display: inline-block;
    padding: 9px 44px 7px 10px;
}
.flyup_slide
{
    background-color: var(--GRPS_Red);
    width: auto;
    color: #ffffff;
}
.flyup_slide a,
.flyup_slide h2,
.flyup_slide h3,
.flyup_slide h4,
.flyup_slide h5,
.flyup_slide h6,
.flyup_slide p.content_intro
{
    color: #ffffff;
}
@media only screen and (max-width: 767px)
{

    .flyup_container {
        background: var(--GRPS_XLtBlue);
        padding-top: 12px;
    }
}
/*
===========================================================
  END Fly-Up Tab Customization
===========================================================
*/

.page_body #GRPS_budgetLinkDiv {
    top: 20px;
}

/*
===========================================================
  BEGIN Attendance Search
===========================================================
*/

.grps-attendance
{
}

    .grps-attendance .grps-attendance-busymessage {
    }

    .grps-attendance .grps-attendance-submit {
    }

    .grps-attendance .grps-attendance-results {
    }

    .grps-attendance .grps-attendance-error {
    }

/*
===========================================================
  BEGIN Attendance Search
===========================================================
*/

.story .vp_share_panel
{
    display: none;
}
