  /*------------------------------------
    Ãå±±½ûµØ
    Orange:     #ea862c
    Black:      #1a1919
    Gray:       #636463
    Dark Gray:  #333333
-------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700');

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

/* Body */
.page_body,
.fbd_content,
.fbcms_htmleditor
{
    color: #636463;
    font: 400 18px/1.5 'Roboto',Arial,Helvetica,sans-serif;
}
.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;
}
@media only screen and (min-width: 768px)
{

}
/* 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;
}

a,
.fbcms_spotlight_text .more_link,
.fbcms_cards .fbcms_card_link {
	color: #1a1919;
}

input,
textarea,
select {
	font: 100% 'Roboto',Arial, Helvetica, sans-serif;
	color: hsl(0deg, 0%, 42%);
	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,
    #navigation
    {
        width: 96%;
        height: 100%;
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
    }
}
@media print {
}

/*
===========================================================
 HEADER
===========================================================
*/
.fbcms_header
{
    background: #fff;
    border-bottom: solid 10px #ea862c;
}
.fbcms_header:after {
	content: " ";
	display: table;
	clear: both;
}
@media only screen and (min-width: 768px) 
{
    .fbcms_header
    {
        position: relative;
        z-index: 2;
        border-bottom: none;
    }
    .fbcms_header .header_main
    {
        height: 135px;
        position: relative;
    }
    .navigation_wrapper
    {
        background-color: #ea862c;
    }
}

/* Logo */
.logo {
    display: block;
    padding: 26px 12px 12px;
    text-decoration: none;
}
.site_logo
{
    display: inline-block;
    vertical-align: middle;
    max-width: 250px;
}
.site_logo img {
    max-width: 100%;
    height: auto;
}
@media only screen and (min-width: 768px)
{
    .logo {
        height: 0;
        padding: 0;
    }
    .site_logo {
        margin: 8px 0 0 0;
    }
}
@media print {
}

/* PPZ Bar/Button */
.fbcms_ppz_widget
{
    background: #fff;
    color: #000;
    padding: 0;
    height: 0;
}
.fbcms_ppz_widget span
{
    line-height: 0;
}
.fbcms_ppz_widget a
{
    position: absolute;
    top: 0;
    right: 100px;
    font-size: 20px;
    color: #FFFFFF;
    background: #121212;
    padding: 12px 14px;
}
.fbcms_ppz_widget a:hover,
.fbcms_ppz_widget a:focus
{
    color: #000;
    background: #EA862C;
    text-decoration: none;
}
@media only screen and (min-width: 768px)
{
    .fbcms_ppz_widget a
    {
        top: 20px;
        right: 367px;
    }
}
.guest_form
{
    padding: 20px;
    background: #fff;
}

/* Search */
.search-form
{
    position: absolute;
    top: 0;
    right: 44px;
    width: auto;
    z-index:150; 
    background-color: #1a1919;
    color: #ffffff;
}
.search-form .search-input,
.search-form .submit
{
    display: inline-block;
    height: 40px;
    vertical-align: middle;
    border: none;
}
.search-form .search-input
{
    width: 152px;
    background-color: #1a1919;
    color: #fff;
    padding: 0;
    width: 0;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.search-form.opened .search-input 
{
    padding-left: 10px;
    width: 160px;
}
.search-form .submit
{
    color: #ffffff;
    float: right;
    text-indent: -9999px;
    width: 40px;
    position: relative;
    background: #1a1919 url(../img/bg-search-ico.png) no-repeat center;
}
.search-form .submit:hover,
.search-form .submit:focus
{
    opacity: 0.7;
}

    .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;
    }
@media only screen and (min-width: 768px)
{
    .search-form
    {
        right: 0;
        top: 20px;
    }
}
@media print {
    .search-form
    {
        display: none;
    }
}
/* END Search */

/* Site Scripts */
.fbcms_content.site_script_head
{
    display: block;
    position: absolute;
    top: 8px;
    right: 78px;
}
.fbcms_content.site_script_foot
{
    display: block;
    position: relative;
    margin-bottom: 10px;
}
@media only screen and (min-width: 768px)
{
    .fbcms_content.site_script_head {
        top: 44px;
        right: 140px;
        z-index: 4;
    }
}
@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 6px;
    list-style: none;
    font-size: 14px;
}

.fbcms_content ul.social_media_list > li:first-child {
    margin-left: 0;
}
.fbcms_content ul.social_media_list > li:last-child {
    margin-right: 0;
}

.fbcms_content .social_media_list a {
    color: #fff;
    text-align: center;
}
.social_media_list a:hover,
.social_media_list a:focus
{
    opacity: .8;
    text-decoration: none;
}
@media print
{
    .fbcms_content ul.social_media_list {
        display: none;
    }
}
/*
===========================================================
 END HEADER
===========================================================
*/

/*
===========================================================
 MENUS
===========================================================
*/

/* Head Menu */
@media only screen and (min-width: 768px)
{   
    .menu_head
    {
        position: absolute;
        right: 206px;
        top: -110px;
    }
    
    .menu_head li
    {
        padding: 0 8px;
        position: relative;
    }
    .menu_head li:first-child
    {
        padding-left: 0;
    }
    .menu_head li:last-child
    {
        padding-right: 0;
    }
    
    .menu_head a
    {
        font-size: 20px;
        color: #FFFFFF;
        background: #121212;
        padding: 8px 14px;
    }
    .menu_head ul li a:hover,
    .menu_head ul li a:focus
    {
        color: #121212;
        background: #EA862C;
        text-decoration: none;
    }
    .menu_head li:first-child a:before
    {
        content: "\f015";
	    font-weight: 900;
	    font-family: 'Font Awesome 5 Free';
        display: inline-block;
        margin-right: 8px;
        color: #EA862C;
    }
    .menu_head li:first-child a:hover:before,
    .menu_head li:first-child a:focus:before
    {
        color: #121212;
    }
}

/* Focus Menu */
@media only screen and (min-width: 768px)
{   
    .menu_focus
    {
        position: absolute;
        right: 0px;
        top: -44px;
        z-index: 101;
    }
    
    .menu_focus li
    {
        padding: 0 7px;
        position: relative;
    }
    .menu_focus li:first-child
    {
        padding-left: 0;
    }
    .menu_focus li:last-child
    {
        /*padding-right: 0;*/
    }
    
    .menu_focus a
    {
        font-size: 14px;
        color: #1A1919;
    }
}
@media only screen and (min-width: 994px)
{  
    .menu_focus li
    {
        padding: 0 20px;
    }
    .menu_focus a
    {
        font-size: 18px;
    }
}

/* Foot Menu */
.menu_foot
{
    margin-bottom: 10px;
}

.menu_foot li
{
    margin-bottom: 5px;
}
@media only screen and (min-width: 768px)
{   
    .menu_foot li
    {
        padding: 0 10px;
        border-right: 1px #c2bebb solid;
    }
    .menu_foot li:first-child
    {
        padding-left: 0;
    }
    .menu_foot li:last-child
    {
        padding-right: 0;
        border-right: none;
    }
}


@media only screen and (max-width: 767px)
{
    .drop-nav.menu_quicklinks .menu_title
    {
        display: none;
    }
    .drop-nav.menu_quicklinks .simplemenu_container {
        display: block;
    }
}
@media only screen and (min-width: 768px)
{
    .fbcms_header .simple-nav.drop-nav.menu_quicklinks 
    {
        display: block;
        position: absolute;
        top: -115px;
        right: 50px;
    }

    .fbcms_header .simple-nav.drop-nav .menu_title
    {
        display: block;
        position: relative;
        padding: 8px 14px;
        font-size: 20px;
        color: #1A1919;
        background-color: #EA862C;
        text-decoration: none;
    }
    .fbcms_header .simple-nav.drop-nav .menu_title:after
    {
        content: "\f107";
	    font-weight: 900;
	    font-family: 'Font Awesome 5 Free';
        display: inline-block;
        margin-left: 14px;
    }

    .fbcms_header .simple-nav.drop-nav .simplemenu_container
    {
        background-color: #fff;
        text-align: left;
        width: 196px;
        -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);
    }
    .fbcms_header .simple-nav.drop-nav .simplemenu_container a
    {
        display: block;
        padding: 6px 10px;
        text-decoration: none;
        color: #1A1919;
    }
    .fbcms_header .simple-nav.drop-nav .simplemenu_container a:hover,
    .fbcms_header .simple-nav.drop-nav .simplemenu_container a:focus
    {
        background-color: #C3C3C3;
    }
}

/* Subpages Menu */
.menu_subpages .menu_title {
	/*margin: 0 -12px;*/
}
@media print, screen and (min-width: 768px)
{
    .menu_subpages.drop-nav
    {
        display: none;
    }
}

/* Breadcrumb Nav */
.breadcrumb-nav
{
    padding: 6px 12px;
    margin-bottom: 10px;
}
.breadcrumb-nav li
{
    font-size: 13px;
    line-height: 1.3;
}
.breadcrumb-nav li:after {
    color: #D1D1D1;
    content: "/ ";
    padding: 0 6px;
}
.breadcrumb-nav li:last-child:after {
    display: none;
}
@media only screen and (min-width: 768px)
{
    .breadcrumb-nav
    {
        display: none;
    }
}

/* main-nav */
@media only screen and (min-width: 768px)
{
    .menu_title.menusection_title
    {
        display: none;
    }
    .main-nav 
    {
        z-index: 101;
        position: relative;
    }
    .main-nav .top_level_item
    {
        display: inline-block;
        vertical-align: top;
        position: relative;
    }
    .main-nav .top_level_link
    {
        color: #1a1919;
        text-decoration: none;
        font-size: 16px;
        padding: 8px 11px;
    }
    .main-nav .top_level_item:last-child .top_level_link
    {
        /*padding-right: 0;*/
    }
    .main-nav .top_level_item.active .top_level_link,
	.main-nav .top_level_item:hover .top_level_link,
    .main-nav .top_level_item.hoverfocus .top_level_link
    {
        color: #fff;
        background: #1a1919;
    }
    
    /* drop-down */
    .main-nav .top_level_item > .drop
    {
        top: 100%;
        background-color: #ffffff;
        width: 250px;
        -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);
    }
    .main-nav .top_level_item > .drop a 
    {
        color: #333333;
        text-decoration: none;
        padding: 5px 10px;
    }
    .main-nav .top_level_item > .drop li a:hover,
    .main-nav .top_level_item > .drop li a:focus
    {
        background-color: #333333;
        color: #fff;
    }

     /* Schools Menu */
    .main-nav .top_level_item.menu_school
    {
        position: static;
    }
    .main-nav .top_level_item.menu_school > .drop
    {
        width: 970px;
        max-width: 100%;
    }
    .menu_school .drop .sublist_0
    {
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    .menu_school .sublist_0 > .sublist_item
    {
        width: calc(25% - (3rem / 4));
    }
    .menu_school .sublist_0 > .sublist_item > .link_pair > a
    {
        font-weight: 900;
        text-transform: uppercase;
        border-bottom: solid 2px #EA862C;
    }
    .menu_school .sublist_0 > .sublist_item > .link_pair > a:hover,
    .menu_school .sublist_0 > .sublist_item > .link_pair > a:focus
    {    
        color: #333333;
        background: #fff;
    }
    .menu_school .drop .drop
    {
        display: block;
    }
}
@media only screen and (min-width: 994px)
{
    .main-nav .top_level_link
    {
        font-size: 19px;
        padding: 12px 20px;
    }
}
@media print {
    .navigation_wrapper
    {
        display: none !important;
    }
}

/* nav slider */
@media only screen and (max-width: 767px) {
    .slider-opener.secondary-opener
    {
        top: 4px;
        right: 8px;
        position: absolute;
        display: block;
    }

    .header_liner > .slider-opener.changerbutton:before, 
    .header_liner > .slider-opener.changerbutton:after, 
    .header_liner > .slider-opener.changerbutton span {
        background-color: #1a1919;
    }
    
    .header_liner > .slider-opener.changerbutton:hover:before, 
    .header_liner > .slider-opener.changerbutton:hover:after, 
    .header_liner > .slider-opener.changerbutton:hover span {
        box-shadow: 0 0 5px #ffffff;
    }
}

/*
===========================================================
 END MENUS
===========================================================
*/

/*
===========================================================
 MAIN CONTENT FRAMEWORK
===========================================================
*/
.fbcms_main
{
    flex: 1;
}
@media only screen and (min-width: 768px)
{
    .fbcms_main
    {
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    .page_interior .fbcms_main {
        background: #fff linear-gradient(90deg, #fff 50%, #F2F2F2 50%);
    }
    .page_interior .main_liner {
        background: linear-gradient(180deg, #636463 400px, transparent 400px);
    }
    .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 */
.flexi
{
    position: relative;
}
.flexi .fbcms_section
{
    width: 100%;
    position: relative;
}
.flexi .fbcms_content
{
    /*margin: 2rem 0 1rem;*/
}
@media only screen and (min-width: 500px)
{
    .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;
    }
    .fbcms_editmode .flexi .fbcms_section
    {
        /*margin: 30px 0;*/
    }

    /* 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,
    .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% - 2rem);
        /*margin: 2rem 0;*/
    }

    .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%;
        /*margin: 2rem 0 1rem;*/
    }

    .flexi .fbcms_section > .addblock_buttonbar_wrapper
    {
        min-width: 100%;
    }
}
@media only screen and (min-width: 768px)
{
    /* When 3 flexi content blocks*/
    .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% - 2rem);
    }

    /* 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% - 2rem);
    }

    /* When 5 flexi content blocks */
    .flexi .fbcms_content:first-child:nth-last-child(5), 
    .flexi .fbcms_content:first-child:nth-last-child(5) ~ .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(6), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(6) ~ .fbcms_content
    {
        width: calc(20% - 2rem);
    }

    /* When 6 flexi content blocks - back down to thirds */
    .flexi .fbcms_content:first-child:nth-last-child(6), 
    .flexi .fbcms_content:first-child:nth-last-child(6) ~ .fbcms_content,
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(7), 
    .fbcms_editmode .flexi .fbcms_content:first-child:nth-last-child(7) ~ .fbcms_content
    {
        width: calc(33.333% - 2rem);
    }
    /* Any more than 6 defaults to halves */
}

/* Focus Areas */
.home_focus,
.page_interior .inside_focus
{
    width: 100%;
    box-shadow: 0 0 30px -20px hsl(0deg 0.42% 20%);
}

.home_focus img
{
    width: 100%;
}
.fbcms_image.inside_focus
{
    line-height: 0;
}

.home_welcome
{
    width: 100%;
    padding: 18px 12px;
}
.school_home .home_welcome 
{
    background-color: #000000;
    color: #ffffff;
}
.school_home .home_welcome h1
{
    font-size: 30px;
}
@media only screen and (min-width: 600px) 
{
    .fbpgro_overlay 
    {
        background-color: rgba(255, 255, 255, 0.8);
        height: auto;
        width: fit-content;
    }
}
@media only screen and (min-width: 768px)
{   
    .main_focus
    {
        background: #1A1919;
    }

    .home_focus_liner
    {
        position: relative;
    }
    .home_focus_liner::before,
    .home_focus_liner::after
    {
        content: "";
        position: absolute;
        height: 70%;
        width: 210px;
        top: 30%;
        right: 100%;
        background: url(/skins/charlotteps/img/C.png) no-repeat top right;
        background-size: contain;
        opacity: .6;
    }
    .home_focus_liner::after
    {
        left: 100%;
        background-image: url(/skins/charlotteps/img/birdhead.png);
        background-position: top left;
    }

    .component_liner.home_focus_liner {
        margin-bottom: -50px;
    }
    .page_home .main_content_top 
    {
        margin-top: 50px;
    }

    .home_welcome
    {
        padding: 30px 0 0;
    }

    .school_home .columns.home_focus_liner
    {
        flex-wrap: wrap;
    }
    .school_home .home_focus
    {
        width: 100%;
        background: #121212;
    }
    .school_home .home_welcome
    {
        padding: 18px 12px;
        width: 100%;
    }
    .school_home .home_focus.vpadm_editable,
    .school_home .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)
{    
    .home_welcome
    {
        padding: 50px 0 0;
    }
    .school_home .home_focus
    {
        position: relative;
        z-index: 1;
        width: 65%;
    }
    .school_home .home_welcome
    {
        width: 35%;
        padding: 20px;
        /*margin-bottom: 20px;*/
    }
}
@media only screen and (min-width: 1200px)
{  
    .school_home .home_welcome
    {
        padding: 20px 30px;
    }
    .school_home .home_welcome h1
    {
        font-size: 40px;
    }
}
@media print {
}

/* Main Content Stuff */
/* Interior Specific */
.page_interior .main_content .center_content {
    padding: 12px;
}
.page_interior .side_col
{
    background-color: #f2f2f2;
}
.page_interior .side_col .side_content
{
    padding: 12px;
}
.fbcms_content.firstone
{
    padding-top: 15px;
}
.fbcms_content.lastone
{
    padding-bottom: 15px;
}
@media only screen and (min-width: 768px)
{
    .page_interior .fbcms_main .center_col
    {
        background: #fff;
    }
    .page_interior .fbcms_main .column.center_col
    {
        width: 67.5%;
        background: #fff;
    }
    .page_interior .fbcms_main .side_col
    {
        width: 32.5%;
        position: relative;
    }

    .page_interior .fbcms_main .center_content,
    .page_interior .side_col .side_content
    {
        padding: 20px;
    }
}
@media only screen and (min-width: 994px)
{
    .page_interior .fbcms_main .center_content,
    .page_interior .side_col .side_content
    {
        padding: 20px 30px;
    }
}

/* Landing Specific */
@media only screen and (min-width: 768px)
{
    .page_landing .center_content .column {
        width: calc(50% - 1.5rem);
    }
}

/* Home Specific */
.main_content_bottom 
{   
    position: relative;
    background-color: #636463;
    color: #fff;
}
.page_home .main_content .column
{
    padding: 12px;
}

.fbcms_content.home_notice,
.fbcms_content.school_info
{
    background: #E47817;
    color: #fff;
	text-align: center;
    font-weight: bold;
    padding: 16px 12px 1px;
}

.fbcms_content.school_info
{
    padding: 12px;
}

.fbcms_content.school_info .building_address:before,
.fbcms_content.school_info .building_phone:before
{
    content: "\f041";
	font-weight: 900;
	font-family: 'Font Awesome 5 Free';
    display: inline-block;
    margin-right: 10px;
    color: #683100;
    font-size: 1.3em;
    line-height: 1;
    vertical-align: middle;
}
.fbcms_content.school_info .building_phone:before
{
    content: "\f095";
}

@media only screen and (min-width: 768px)
{
    .fbcms_content.home_notice,
    .fbcms_content.school_info
    {
        padding: 16px 22px 1px;
    }
    .fbcms_content.school_info
    {
        padding: 12px 22px;
    }

    .page_home .main_content .column
    {
        padding: 20px 0;
        width: calc(33.333% - (6rem / 3));
        position: relative;
    }
}
@media only screen and (min-width: 994px)
{
    .fbcms_content.home_notice,
    .fbcms_content.school_info
    {
        font-size: 22px;
    }
    .school_info .building_name
    {
        float: left;
    }
    .school_info .building_phone
    {
        float: right;
    }
}
@media only screen and (max-width: 993px)
{
    .school_info > span
    {
        display: block;
    }
    .school_info .building_citystatezip
    {
        margin-left: 33px;
    }
}
@media print {
}

/* OneCol Specific */
.page_interior.page_onecol .column.center_col
{
    width: 100%;
}
@media only screen and (min-width: 768px)
{
    .page_interior.page_onecol .column.center_col
    {
    } 
}

/* Side Navigation Menu */
.side-nav
{
    display: none;
}
@media only screen and (min-width: 768px)
{
    .side-nav
    {
        display: block;
        background: #333333;
        margin-bottom: 23px;
        padding: 20px;
        min-height: 400px;
        position: relative;
    }
    .side-nav .side_list.sidelist_0 {
        position: relative;
        z-index: 1;
    }
    .side-nav .sidelist_0 > li > a
    {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        margin: 0 0 5px;
        text-transform: uppercase;
    }
    .side-nav .sidelist_1 li
    {
        padding: 2px 0;
    }
    .side-nav .sidelist_1 a
    {
        color: #fff;
        font-weight: bold;
    }
    .side-nav .sidelist_1 a:hover,
    .side-nav .sidelist_1 a:focus,
    .side-nav .sidelist_1 .current_item > a
    {
        color: #ea862c;
        text-decoration: none;
    }
    .side-nav .sidelist_2 a
    {
        font-weight: 400;
    }
    .side-nav::after
    {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        /* z-index: -1; */
        height: 100%;
        width: 100%;
        background: url(/skins/charlotteps/img/CPSOriolesCLogo.png) no-repeat bottom left;
        background-size: contain;
    }
}
@media only screen and (min-width: 994px)
{
    .side-nav
    {
        padding: 30px;
    }
}
/* END Side Navigation Menu */
/*
===========================================================
 END MAIN FRAMEWORK
===========================================================
*/

/*
===========================================================
 FOOTER
===========================================================
*/
/* footer */
.fbcms_footer
{
    position: relative;
    background-color: #333333;
    font-size: 17px;
    color: #fff;
}
.fbcms_footer .footer_liner
{
    padding: 16px 12px;
}
.fbcms_footer a {
    color: #fff;
}
.goog-te-gadget,
.goog-te-gadget a
{
	color: #fff !important;
}
.goog-te-gadget .goog-te-combo
{
	margin: 4px 0 0 0 !important;
}

.fbcms_content.building_info {
    margin: 0 0 6px;
}
.fbcms_content.building_info > span
{
    display: block;
}


.fbcms_content.building_info,
.copyright,
.powered,
.fbcms_translate,
.link_pdfviewer
{
    display: block;
    margin-bottom: 10px;
}
.fbcms_building_info .divider
{
    display: none;
}
@media only screen and (min-width: 768px)
{
    .fbcms_footer .footer_liner
    {
        padding: 30px 0;
    }

    .fbcms_footer .left_col
    {
        width: 25%;
        text-align: left;
    }
    .fbcms_footer .center_col
    {
        width: calc(50% - 4rem);
        text-align: center;
    }
    .fbcms_footer .right_col
    {
        width: 25%;
        text-align: right;
    }
}
@media print {
    .fbcms_translate,
    .link_pdfviewer
    {
        display: none;
    }
}
/*
===========================================================
 END FOOTER
===========================================================
*/

/*
-------------------------------------
 Rich Text Formatting
-------------------------------------
*/
h1
{
    color: #1a1919;
    font: 300 46px/1.4 'Roboto',Arial,Helvetica,sans-serif;
    margin-bottom: 15px;
    border-bottom: solid 6px #ea862c;
}
.school_home .home_welcome h1,
.school_home .home_welcome .content_intro
{
    color: #ffffff;
    border-bottom: none;
}
h1 span
{
    color: #757575;
    font: normal .5em/1 'Roboto',Arial,Helvetica,sans-serif;
    text-transform: uppercase;
    display: block;
}

h2
{
    color: #1a1919;
    font: bold 25px/1.4 'Roboto',Arial,Helvetica,sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: solid 3px #ea862c;
}
.fbcms_contentheader h2.contentheader_item
{
    display: block;
}
#FB_budgetLinkDiv h2
{
    border-bottom: none;
}

h3
{
    color: #1a1919;
    font: bold 22px/1.4 'Roboto',Arial,Helvetica,sans-serif;
}

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
{
    color: #c25400;
    font: bold 20px/1.4 'Roboto',Arial,Helvetica,sans-serif;
	margin-bottom: 0;
}

h5
{
    color: #1a1919;
    font: bold 18px/1.4 'Roboto',Arial,Helvetica,sans-serif;
}
h6
{
    color: #1a1919;
    font: bold 17px/1.4 'Roboto',Arial,Helvetica,sans-serif;
}

.content_intro
{    
    color: #767676;
    font: 300 20px/1.4 'Roboto',Arial,Helvetica,sans-serif;
    margin: 0 0 19px;
}

.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
{
    display: inline-block;
    height: auto;
    text-decoration: none;
    color: #121212;
    background-color: #ea862c;
    padding: 5px 14px;
    margin: 10px 0;
    font-size: 20px;
    font-weight: 400 !important;
}
.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
{
    background-color: #121212;
    color: #fff;
    text-decoration: none;
}
.jump_url a::after,
.spotlight_button.spotlight_viewall::after,
.fbcms_newsletters .news_archivetoggle::after,
.fbcms_more_link a::after,
.content_buttonblock a::after
{
    content: "\f105";
	font-weight: 900;
	font-family: 'Font Awesome 5 Free';
    margin-left: 14px;
    font-size: 1.3em;
    vertical-align: middle;
}
.jump_url a:hover::after,
.jump_url a:focus::after,
.spotlight_button.spotlight_viewall:hover::after,
.spotlight_button.spotlight_viewall:focus::after,
.fbcms_newsletters .news_archivetoggle:hover::after,
.fbcms_newsletters s.news_archivetoggle:focus::after,
.fbcms_more_link a:hover::after,
.fbcms_more_link a:focus::after,
.content_buttonblock a:hover::after,
.content_buttonblock a:focus::after
{
    color: #fff;
}


span.content_skiplink
{
    position: relative;
}
.content_skiplink a {
    display: block;
    position: absolute;
     height: 0; 
    transform: translateY(-100%);
    width: max-content;
    background: #fff;
    border: solid 1px gray;
    padding: 0 0.25em;
    opacity: 0;
    transition: opacity .2s linear, transform .2s linear;
}
.content_skiplink a:focus {
    opacity: 1;
    transform: translateY(0);
    padding: 0.25em;
    height: auto;
}
.fbcms_htmleditor .content_skiplink a, 
.vpadm_editable .content_skiplink a {
    position: relative;
    opacity: .9;
    background-color: #dfdfdf;
    transform: translateY(0);
    height: auto;
}
/*
-------------------------------------
 END Rich Text Formatting
-------------------------------------
*/

/*
===========================================================
 Calendar Styling
===========================================================
*/

.fbcms_upcoming_events .time
{
    font-size: .8em;
    font-weight: bold;
    color: #1A1919;
}
li.fbcms_upcoming_event_item .event_group_date {
    width: 60px;
}
li.fbcms_upcoming_event_item .event_date {
    background: #E47817;
    color: #1A1919;
    text-align: center;
    width: 60px;
    height: 68px;
    padding: 8px 0 10px;
    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;
    line-height: 1.2;
}
li.fbcms_upcoming_event_item .event_group_data
{
    padding-left: 12px;
}
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: #333333;
}
/* END Calendar List */

/* Calendar Grid */
.calendargrid .caltab .monthname
{
    color: #999999;
}
.calendargrid .caltab .dayofweek
{
    background-color: #333333;
    border-color:#ffffff;
    border-right-color: #ffffff;
}
.calendargrid .caltab .currentmonth .daynumber
{
    background-color: #ea862c;
    color: #1a1919;
}
/* END Calendar Grid */

/* Small Calendar Grid */
.minigrid_verB {
    background: #fff;
}
.minigrid_verB .fbcms_calendar_mini {
    border-collapse: separate;
    border-spacing: 10px;
}
.minigrid_verB tbody
{
    border: solid 7px #FFF;
}
.minigrid_verB tbody,
.minigrid_verB .isDay
{
    border: none;
    font-size: 18px;
}
.fbcms_calendar_minigrid td
{
    line-height: 2;
}

.minigrid_verB .calendar_mini_controls {
    text-align: center;
}

.fbcms_calendar_mini .fbcms_calendar_mini_monthName,
.fbcms_calendar_mini .fbcms_calendar_mini_yearNumber
{
    font-weight: bold;
    color: #1A1919;
    font-size: 25px;
}

.fbcms_calendar_minigrid th {
    color: #1A1919;
}
.minigrid_verB .fbcms_calendar_mini .fbcms_calendar_mini_prevMonth,
.minigrid_verB .fbcms_calendar_mini .fbcms_calendar_mini_nextMonth
{
    background-color: #fff;
    color: #636463;
    width: 26px;
    font-size: 40px;
    line-height: .5;
    margin: 10px 6px;
}
.fbcms_calendar_mini .fbcms_calendar_mini_prevMonth
{
    float: left;
}
.fbcms_calendar_mini .fbcms_calendar_mini_prevMonth:hover,
.fbcms_calendar_mini .fbcms_calendar_mini_prevMonth:focus,
.fbcms_calendar_mini .fbcms_calendar_mini_nextMonth:hover,
.fbcms_calendar_mini .fbcms_calendar_mini_nextMonth:focus
{
    color: #191919;
    background-color: #fff;
}

.fbcms_calendar_mini .fbcms_calendar_mini_event 
{
    color: #191919;
    text-decoration: underline;
}

.fbcms_calendar_mini .today, 
.fbcms_calendar_mini .isDay:hover, 
.fbcms_calendar_mini .isDay:focus
{
    color: #ffffff;
    background-color: #424242;
}
/* END Small Calendar Grid */

/*
===========================================================
 END Calendar Styling
===========================================================
*/
@media only screen and (min-width: 768px)
{
    .fbcms_lunchmenu .fbcms_table
    {
        font-size: 75%;
    }
}
/*
===========================================================
 News Styling
===========================================================
*/
.fbcms_newscontent .fbcms_newscontent_month 
{
    font-size: 14px;
    color: #000;
}
.fbcms_emergencyAlert .fbcms_headline_list_content:before
{
    color: #E47817;
}
.fbcms_emergencyAlert .fbcms_headline_list_content .fbcms_article_date
{
    color: #121212;
}
/*
===========================================================
 END News Styling
===========================================================
*/

/*
===========================================================
 Staff Styling
===========================================================
*/
.fbcms_staff_listing .email_icon,
.fbcms_staff_search .email_icon,
.fbcms_contact_email .email_icon,
.fbcms_staff_cards .fbcms_contentbody .email_icon  {
    background-color: #ea862c;
}
.fbcms_staff_listing_header,
.fbcms_staff_search_results .header {
	color: #1a1919;
    font-weight: bold;
}
.fbcms_staff_search .fbcms_staff_search_drop {
    width: 250px;
}
/*
===========================================================
 END Staff Styling
===========================================================
*/	
/*
===========================================================
 Pager Styling
===========================================================
*/
.pager
{
    text-align: center;
    width: 100%;
}
.pager a .btnResultNavigation
{
    background-color: #ea862c;
}
.changeperpageform select
{
    border-color: #999999;
}
/*
===========================================================
 END Pager Styling
===========================================================
*/

/*
===========================================================
 Spotlight Styling
===========================================================
*/
.fbcms_spotlights.points_of_pride,
.fbcms_spotlights.quick_menu .fbcms_spotlight
{
    text-align: center;
}
.fbcms_spotlights.points_of_pride .more_link,
.fbcms_spotlights.quick_menu .more_link
{
    display: none;
}



.points_of_pride  .fbcms_contentheader.blockpos_left .fbcms_spotlights_title
{
    color: #1A1919;
    display: inline-block;
    padding: 10px 30px 6px;
}
.points_of_pride .fbcms_spotlight .desc_short
{
    font-size: 18px;
    color: #1A1919;
    text-transform: uppercase;
}
@media only screen and (min-width: 768px)
{
    .points_of_pride .fbcms_spotlight_image
    {
        min-height: 87px;
    }
}
@media only screen and (min-width: 994px)
{
    .points_of_pride .fbcms_spotlight .desc_short
    {
        font-size: 20px;
    }
}


.fbcms_spotlights.quick_menu
{
    margin-bottom: 0;
    padding: 20px 12px 10px;
}
.quick_menu .fbcms_spotlights_title
{
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    border-bottom: none;
}
.quick_menu a.fbcms_spotlight_liner:hover, 
.quick_menu a.fbcms_spotlight_liner:focus {
    background-color: #424242;
}
.quick_menu .fbcms_spotlight .desc_short
{
    color: #fff;
    font-size: 17px;
    font-weight: 400;
    text-transform: uppercase;
}
.quick_menu .fbcms_spotlight .fbcms_spotlight_liner
{
    height: 100%;
    padding: 16px 5px;
}
.quick_menu .fbcms_spotlight .fbcms_spotlight_image {
    min-height: 60px;
    margin-bottom: 6px;
}
@media only screen and (max-width: 993px)
{
    .quick_menu .fbcms_spotlights_title
    {
        text-align: center;
        font-size: 30px;
    }
}
@media only screen and (min-width: 994px)
{
    .fbcms_spotlights.quick_menu
    {
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
    }
    .quick_menu .fbcms_contentheader
    {
        display: inline-block;
    }
    .quick_menu .fbcms_spotlights_title
    {
        margin-top: 20px;
    }
    .fbcms_spotlights.quick_menu .fbcms_spotlights_list
    {
/*        width: calc(100% - 160px);*/
        justify-content: flex-end;
    }
    .fbcms_spotlights.quick_menu .fbcms_spotlight
    {
        width: auto;
        flex-basis: 14.666%;
    }
}
/*
===========================================================
 END Spotlight Styling
===========================================================
*/

/*
===========================================================
 Expandable Content Styling
===========================================================
*/
.fbcms_ec_title,
.fbcms_ec_title .fbcms_ec_titletext
{
    background-color: #ea862c;
    color: #121212;
}
.fbcms_ec_title:hover h2,
.fbcms_ec_title:focus h2,
.fbcms_ec_title:hover,
.fbcms_ec_title:focus
{
    background-color: #121212;
    color: #fff;
}
.fbcms_ec_title h2
{
    line-height: initial;
    border-bottom: none;
}
/*
===========================================================
 END Expandable Content Styling
===========================================================
*/


/*
===========================================================
  Fly-Up Tab Customization
===========================================================
*/
.flyup_tab 
{
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    background-color: #0c6448;
}
.flyup_slide
{
    background-color: #0c6448;
    color: #ffffff;
}
.flyup_slide a,
.flyup_slide h2,
.flyup_slide h3,
.flyup_slide h4,
.flyup_slide h5,
.flyup_slide h6,
.flyup_slide .content_intro
{
    color: #ffffff;
}
/*
===========================================================
  END Fly-Up Tab Customization
===========================================================
*/

.page_body #FB_budgetLinkDiv {
    top: 20px;
}
