/* Template H */

/*
    Primary Color: #222461 (Headings, etc)
    Secondary Color: #4B78B4 (Links, hovers, etc)
    Accent Color: #fab61a (Non-Text)
*/

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Body */
.page_body,
.fbd_content,
.fbcms_htmleditor
{
    color: #444;
    font: 0.875em/1.5 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;
}
.fbcms_content img:not(.email_icon) {
    max-width: 100%;
    height: auto !important;
}

a,
.fbcms_cards .fbcms_card_link,
.fbcms_spotlight_text .more_link {
    color: #4B78B4;
}

a:hover, a:focus {
}
input,
textarea,
select {
    font: 100% Arial, Helvetica, sans-serif;
    color: #333333;
    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;
}
.fbcms_richtext_content img {
    max-width: 100%;
    height: auto !important;
}
/* END General Styling */

/* wrapper & overall structure */
.fbcms_wrapper
{
}

.fbcms_component
{
    max-width: 100%;
    display: block;
    width: 100%;
}
.component_liner,
.fbcms_ppz_widget_liner
{
    width: 100%;
}
@media only screen and (min-width: 768px)
{
    .fbcms_wrapper
    {        
    }
    .component_liner,
    .navigation_slider,
    .fbcms_ppz_widget_liner
    {
        width: 95%;
        height: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
}
@media print {
}
.nav-slider-deactivated .navigation_slider
{
	width: 95%;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/*
===========================================================
 HEADER
===========================================================
*/
.fbcms_header
{
    border-top: 3px solid #252525;
    border-bottom: solid 8px #fab61a;
}
.fbcms_header .header_liner
{
    position: relative;
}
.fbcms_header:after {
    content: " ";
    display: table;
    clear: both;
}
@media only screen and (min-width: 768px) 
{
    .fbcms_header
    {
        border-bottom: none;
        position: relative;
        z-index: 4;
        box-shadow: 0 0 6px;
    }
    .fbcms_header .header_main
    {
        height: 132px;
        position: relative;
        z-index: 2;
    }
    .navigation_wrapper
    {
        background-color: transparent;
        border-top: solid 1px #dedede;
        z-index: 1;
    }
}

/* Logo */
.logo {
    padding: 46px 12px 12px;
}
.site_logo,
.site_logo_text
{
    display: inline-block;
    vertical-align: middle;
}
.site_logo {
}
.site_logo_text {
}
.site_logo img,
.site_logo_text img {
    max-width: 100%;
    height: auto;
}
@media only screen and (min-width: 768px)
{
    .logo {
        height: 0;
        padding: 0;
    }
    .site_logo {
        margin: 0 0 0 0;
    }
    .site_logo_text {
        margin: 0 0 0 10px;
    }
}
@media print {
}


/* Search */
.search-form
{
    position: absolute;
    top: 8px;
    right: 44px;
    width: auto;
    z-index:100; 
}

.search-form .search-input,
.search-form .submit
{
    display: inline-block;
    height: 1.75rem;
    vertical-align: middle;
    border: none;
}

.search-form .search-input
{
    width: 152px;
    padding: 5px 12px;
    background-color: #fff;
    border: solid 1px #dedede;
    color: #2e2e2e;
    font-size: 0.875rem;
    line-height: 1.2;
}
.search-form .submit
{
    color: #ffffff;
    float: right;
    text-indent: -9999px;
    width: 1.75rem;
    position: relative;
    background: #808080 url(../img/bg-search-ico.png) no-repeat center;
}
.search-form .submit:hover,
.search-form .submit:focus
{
    opacity: 0.8;
}

    .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: 8px;
    }
}
@media only screen and (max-width: 767px)
{
    /* search input collapse */
    .search-form .search-input
    {
        padding: 0;
        width: 0;
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
        border: none;
    }
    .search-form.opened .search-input 
    {
        padding-left: 4px;
        width: 160px;
        border: solid 1px #dedede;
    }
}
@media print {
    .search-form
    {
        display: none;
    }
}
/* END Search */

/* Site Scripts */
.fbcms_content.site_script_head
{
    display: block;
    position: absolute;
    top: 10px;
    right: 80px;
}
.fbcms_content.site_script_foot
{
    display: block;
    position: relative;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px)
{
    .fbcms_content.site_script_head {
        top: 90px;
        right: 0;
        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 {
    margin: 0 6px;
    list-style: none;
    float: left;
    font-size: 0.875rem;
    line-height: 1.125rem;
}

.fbcms_content .social_media_list a {
    color: #222461;
    text-align: center;
}
.fbcms_footer .fbcms_content .social_media_list a {
    color: #bbb;
}
.social_media_list .social-media-circle {
    display: block;
    border-radius: 12px;
    padding: 3px 6px;
    background-color: #62b3e4;
    width: 24px;
    height: 24px;
}
.social_media_list a:hover,
.social_media_list a:focus
{
    opacity: .8;
    text-decoration: none;
}
@media only screen and (min-width: 768px)
{
}
@media print
{
    .fbcms_content ul.social_media_list {
        display: none;
    }
}
/*
===========================================================
 END HEADER
===========================================================
*/

/*
===========================================================
 MENUS
===========================================================
*/
@media only screen and (min-width: 768px)
{   
    .navigation_slider
    {
        position: relative;
    }
}
.nav-slider-deactivated .navigation_slider
{
	position: relative;
}

/* Head Menu */
@media only screen and (min-width: 768px)
{   
    .menu_head
    {
        position: absolute;
        right: 200px;
        top: -122px;
        z-index: 101;
    }
    .menu_head li
    {
        padding: 0 14px;
        position: relative;
        border-right: solid 1px #4C4B4B;
    }
    .menu_head li:first-child
    {
        padding-left: 0;
    }
    .menu_head li:last-child
    {
        padding-right: 0;
        border-right: none;
    }
    .menu_head a
    {
        font-size: 0.875rem;
        line-height: 1.2;
        text-decoration: none;
        display: block;
        color: #4C4B4B;
    }
}
.nav-slider-deactivated .menu_head
{
	position: absolute;
	right: 200px;
	top: -122px;
	z-index: 101;
}
.nav-slider-deactivated .menu_head li
{
	padding: 0 14px;
	position: relative;
	border-right: solid 1px #4C4B4B;
}
.nav-slider-deactivated .menu_head li:first-child
{
	padding-left: 0;
}
.nav-slider-deactivated .menu_head li:last-child
{
	padding-right: 0;
	border-right: none;
}
.nav-slider-deactivated .menu_head a
{
	font-size: 0.875rem;
	line-height: 1.2;
	text-decoration: none;
	display: block;
	color: #4C4B4B;
}

/* Focus Menu */
@media only screen and (min-width: 768px)
{   
    .menu_focus
    {
        position: absolute;
        right: 200px;
        top: -87px;
        z-index: 101;
    }
    .menu_focus li
    {
        padding: 0 14px;
        position: relative;
        border-right: solid 1px #4C4B4B;
    }
    .menu_focus li:first-child
    {
        padding-left: 0;
    }
    .menu_focus li:last-child
    {
        padding-right: 0;
        border-right: none;
    }
    .menu_focus a
    {
        font-size: 0.875rem;
        line-height: 1.2;
        text-decoration: none;
        display: block;
        color: #4C4B4B;
    }
}
.nav-slider-deactivated .menu_focus
{
    position: absolute;
    right: 200px;
    top: -87px;
    z-index: 101;
}
.nav-slider-deactivated .menu_focus li
{
    padding: 0 14px;
    position: relative;
    border-right: solid 1px #4C4B4B;
}
.nav-slider-deactivated .menu_focus li:first-child
{
    padding-left: 0;
}
.nav-slider-deactivated .menu_focus li:last-child
{
    padding-right: 0;
    border-right: none;
}
.nav-slider-deactivated .menu_focus a
{
    font-size: 0.875rem;
    line-height: 1.2;
    text-decoration: none;
    display: block;
    color: #4C4B4B;
}


/* Quicklinks Menu */
@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 .drop-nav {
        display: block;
        position: absolute;
    }
    
    .drop-nav.menu_quicklinks {
        right: 0;
        top: -90px;
    }

    .fbcms_header .drop-nav .menu_title
    {
        display: block;
        position: relative;
        height: 28px;
        width: 180px;
        padding: 7px 12px;
        font-size: 0.875rem;
        line-height: 1.2;
        color: #2e2e2e;
        background-color: #eee;
        text-decoration: none;
    }
    .fbcms_header .drop-nav .menu_title:hover,
    .fbcms_header .drop-nav .menu_title:focus
    {
        
    }
    .fbcms_header .drop-nav .menu_title:before
    {
        content: "";
        width: 28px;
        height: 28px;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #808080;
    }
    .fbcms_header .drop-nav .menu_title:after
    {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 4px 0 4px;
        border-color: #ffffff transparent transparent transparent;
        position: absolute;
        top: 11px;
        right: 10px;
    }
    .fbcms_header .drop-nav .menu_title:hover:after,
    .fbcms_header .drop-nav .menu_title:focus:after,
    .fbcms_header .drop-nav.menuopen .menu_title:after
    {
        border-color: transparent transparent #ffffff transparent;
        border-width: 0 4px 5px 4px;
    }

    .fbcms_header .drop-nav .simplemenu_container
    {
        background-color: #D7D7D7;
        text-align: left;
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #ccc;
        -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    }
    .fbcms_header .drop-nav .simplemenu_container a
    {
        display: block;
        padding: 8px 10px;
        text-transform: capitalize;
		font-weight: normal;
		font-size: 0.813rem;
		line-height: 1.2;
        color: #5e5e5e;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
    }
    .fbcms_header .drop-nav .simplemenu_container li:last-child a {
        border-bottom: none;
    }
    .fbcms_header .drop-nav .simplemenu_container a:hover,
    .fbcms_header .drop-nav .simplemenu_container a:focus
    {
        color: #2e2e2e;
        background: #eee;
    }
}
.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 .drop-nav {
	display: block;
	position: absolute;
}
.nav-slider-deactivated .drop-nav.menu_quicklinks {
	right: 0;
	top: -90px;
}
.nav-slider-deactivated .fbcms_header .drop-nav .menu_title
{
	display: block;
	position: relative;
	height: 28px;
	width: 180px;
	padding: 7px 12px;
	font-size: 0.875rem;
	line-height: 1.2;
	color: #2e2e2e;
	background-color: #eee;
	text-decoration: none;
}
.nav-slider-deactivated .fbcms_header .drop-nav .menu_title:hover,
.nav-slider-deactivated .fbcms_header .drop-nav .menu_title:focus
{
	
}
.nav-slider-deactivated .fbcms_header .drop-nav .menu_title:before
{
	content: "";
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #808080;
}
.nav-slider-deactivated .fbcms_header .drop-nav .menu_title:after
{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	border-color: #ffffff transparent transparent transparent;
	position: absolute;
	top: 11px;
	right: 10px;
}
.nav-slider-deactivated .fbcms_header .drop-nav .menu_title:hover:after,
.nav-slider-deactivated .fbcms_header .drop-nav .menu_title:focus:after,
.nav-slider-deactivated .fbcms_header .drop-nav.menuopen .menu_title:after
{
	border-color: transparent transparent #ffffff transparent;
	border-width: 0 4px 5px 4px;
}
.nav-slider-deactivated .fbcms_header .drop-nav .simplemenu_container
{
	background-color: #D7D7D7;
	text-align: left;
	width: 100%;
	background-color: #ffffff;
	border: 1px solid #ccc;
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
	box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}
.nav-slider-deactivated .fbcms_header .drop-nav .simplemenu_container a
{
	display: block;
	padding: 8px 10px;
	text-transform: capitalize;
	font-weight: normal;
	font-size: 0.813rem;
	line-height: 1.2;
	color: #5e5e5e;
	text-decoration: none;
	border-bottom: 1px solid #ddd;
}
.nav-slider-deactivated .fbcms_header .drop-nav .simplemenu_container li:last-child a {
	border-bottom: none;
}
.nav-slider-deactivated .fbcms_header .drop-nav .simplemenu_container a:hover,
.nav-slider-deactivated .fbcms_header .drop-nav .simplemenu_container a:focus
{
	color: #2e2e2e;
	background: #eee;
}

/* Foot Menu */
.menu_foot
{
    margin-bottom: 20px;
}
.menu_foot.list-nav ul li
{
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Subpages Menu */
.menu_subpages .menu_title {
    margin: -20px -15px 10px;
    padding: 8px 15px 9px;
}
@media print, screen and (min-width: 768px)
{
    .menu_subpages.drop-nav
    {
        display: none;
    }
}

/* Breadcrumb Nav */
.breadcrumb-nav
{
    margin-bottom: 18px;
}
.breadcrumb-nav li
{
    font-size: 0.813rem;
    line-height: 1;
}
.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 
	{
		position: relative;
		margin: 0;
		z-index: 101;
	}
	.main-nav .top_level 
	{
		float: none;
		display: -webkit-flex;
		display: flex;
		-webkit-align-items:stretch;
		align-items:stretch;
		-webkit-justify-content: space-around;
		justify-content: space-around;
	}
	.main-nav .top_level_item
	{
		display: inline-block;
		vertical-align: top;
		position: relative;
		padding: 0 15px 0 0;
	}
	.main-nav .top_level_item .top_level_link
	{
		color: #5e5e5e;
		text-decoration: none;
		display: table-cell;
		font-size: 1rem;
		padding: 14px 10px;
	}
	.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: #2e2e2e;
		border-bottom: 2px solid #fab61a;
		padding-bottom: 4px;
	}

	/* drop-down */
	.main-nav .top_level_item > .drop
	{
		top: 100%;
		background-color: #ffffff;
		width: 220px;
		border: 1px solid #ccc;
		-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
		-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
		box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	}
	.main-nav .top_level_item > .drop a 
	{
		text-decoration: none;
		text-transform: capitalize;
		font-weight: normal;
		padding: 13px 15px 12px;
		font-size: 0.875rem;
		color: #5e5e5e;
		border-bottom: 1px solid #ddd;
	}
	.main-nav .top_level_item > .drop li a:hover,
	.main-nav .top_level_item > .drop li a:focus
	{    
		color: #2e2e2e;
		background: #eee;
	}   
	.main-nav .top_level_item > .drop li:last-child a 
	{
		border-bottom: none;
	}
}
.nav-slider-deactivated .menu_title.menusection_title
{
	display: none;
}
.nav-slider-deactivated .nav-main 
{
	position: relative;
	margin: 0;
	z-index: 101;
}
.nav-slider-deactivated .nav-main .top_level 
{
	float: none;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items:stretch;
	align-items:stretch;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.nav-slider-deactivated .nav-main .top_level_item
{
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0 15px 0 0;
}
.nav-slider-deactivated .nav-main .top_level_item .top_level_link
{
	color: #5e5e5e;
	text-decoration: none;
	display: table-cell;
	font-size: 1rem;
	padding: 14px 10px;
}
.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
{
	color: #2e2e2e;
	border-bottom: 2px solid #fab61a;
	padding-bottom: 4px;
}

/* drop-down */
.nav-slider-deactivated .nav-main .top_level_item > .drop
{
	top: 100%;
	background-color: #ffffff;
	width: 220px;
	border: 1px solid #ccc;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.nav-slider-deactivated .nav-main .top_level_item > .drop a 
{
	text-decoration: none;
	text-transform: capitalize;
	font-weight: normal;
	padding: 13px 15px 12px;
	font-size: 0.875rem;
	color: #5e5e5e;
	border-bottom: 1px solid #ddd;
}
.nav-slider-deactivated .nav-main .top_level_item > .drop li a:hover,
.nav-slider-deactivated .nav-main .top_level_item > .drop li a:focus
{    
	color: #2e2e2e;
	background: #eee;
}   
.nav-slider-deactivated .nav-main .top_level_item > .drop li:last-child a 
{
	border-bottom: none;
}
@media print {
    .navigation_wrapper
    {
        display: none !important;
    }
}

/* nav slider */
@media only screen and (max-width: 767px) {
    .slider-opener.secondary-opener
    {
        top: 5px;
        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: #808080;
    }
    
    .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 #808080;
    }
}
.nav-slider-active .nav-slider-button.slider-button
{
	top: 6px;
	right: 8px;
	position: absolute;
	display: block;
}
.header_liner > .nav-slider-button.slider-button:before, 
.header_liner > .nav-slider-button.slider-button:after, 
.header_liner > .nav-slider-button.slider-button span {
	background-color: #808080;
}
.header_liner > .nav-slider-button.slider-button:hover:before, 
.header_liner > .nav-slider-button.slider-button:hover:after, 
.header_liner > .nav-slider-button.slider-button:hover span {
	box-shadow: 0 0 5px #808080;
}

/* Side Navigation Menu */
.side-nav
{
    display: none;
}
@media only screen and (min-width: 768px)
{
    .side-nav
    {
        display: block;
        border-bottom: solid 1px #dedede;
        margin: 0 20px 20px;
        padding: 0 0 30px;
    }
    .side-nav .sidelist_0 > li > a
    {
        color: #202858;
        font-size: 1.25rem;
        font-weight: bold;
        line-height: 1.3;
        margin: 0 0 5px;
    }
    .side-nav .sidelist_1
    {
    }
    .side-nav .sidelist_1 a
    {
        font-size: 0.875rem;
        line-height: 1.3;
        color: #757575;
    }
    .side-nav .sidelist_1 a:hover,
    .side-nav .sidelist_1 a:focus,
    .side-nav .sidelist_1 .current_item > a
    {
        color: #202858;
        text-decoration: none;
    }
}
@media only screen and (min-width: 994px)
{
    .side-nav
    {
        margin: 0 0 30px;
    }
}
/* END Side Navigation Menu */
/*
===========================================================
 END MENUS
===========================================================
*/

/*
===========================================================
 MAIN CONTENT FRAMEWORK
===========================================================
*/
@media only screen and (min-width: 768px)
{
    .fbcms_main
    {
        position: relative;
        z-index: 1;
    }
}
/* Focus/Welcome Areas */
.main_focus
{
    background: #f3f3f3;
}


.fbcms_imagerotator .cycle-slide
{
    width: 100%;
}
.fbcms_photogallery .fbcms_imagerotator .slide img {
    margin: 0 auto;
}
.main_focus .inside_focus img
{
    text-align: center;
}

.home_welcome
{
    width: 100%;
    padding: 18px 15px;
    background-color: rgba(0,0,0,.8);
    color: #ffffff;
}
@media only screen and (min-width: 768px)
{   
    .main_focus
    {
        background: #f3f3f3;
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    .main_focus .inside_focus
    {
        margin: 15px 0;
    }

    
    .floating_welcome .main_focus .home_focus:after
    {
        content: "";
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0; 
        height: 1px;
        box-shadow: 0px 0 10px 0;
        z-index: 200;
    }
}
@media only screen and (min-width: 850px)
{ 
    .focus_split .home_focus
    {
        width: 66.667%;
    }
    .home_welcome
    {
        width: 33.333%;
        padding: 30px 20px;
    }
    .floating_welcome .home_welcome
    {
        position: absolute;
        top: 10%;
        right: 30px;
        width: 50%;
        z-index: 1000;
    }
    .home_focus.vpadm_editable,
    .home_welcome.vpadm_editable,
    .floating_welcome .home_welcome.vpadm_editable
    {
        width: 100%;
        padding: 0;
        position: relative;
        right: auto;
        background: transparent;
    }
}
@media only screen and (min-width: 994px)
{   
    .home_welcome
    {
        padding: 40px 30px;
    }
    .floating_welcome .home_welcome
    {
        width: 33.333%;
        right: 40px;
    }
}
@media print {
}


/* Main Content */
.page_interior .main_content {
    padding: 20px 0;
}
@media only screen and (min-width: 500px)
{
    .page_interior .main_content
    {
        position: relative;
        z-index: 2;
    }
}
@media only screen and (min-width: 768px)
{
    .page_interior .main_content
    {
        padding: 40px 0;
        overflow: hidden;
    }
}
@media only screen and (max-width: 767px)
{
    .main_content .component_liner,
    .quickmenu_wrapper .component_liner
    {
        padding: 0 15px;
    }
}


/* Flexible Content Areas and Columns */
.columns,
.flexi,
.flexi .fbcms_section
{
    width: 100%;
    position: relative;
}
@media only screen and (min-width: 500px)
{
    .columns,
    .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;
    }

    .columns .column
    {
        width: 100%;
    }

    /* 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: 47%;
    }

    .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%;
    }
}
@media only screen and (min-width: 768px)
{
    /* When 2 columns */
    .columns .column
    {
        width: 46%;
    }
    /* use center and side classes to get uneven columns */
    .columns .column.center_col
    {
        width: 69%;
    }
    .columns .column.side_col
    {
        width: 28%;
    }

    /* When 3 columns or flexi content blocks*/
    .columns .column:first-child:nth-last-child(3),
    .columns .column:first-child:nth-last-child(3) ~ .column,
    .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: 30.666%;
    }

    /* 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: 22%;
    }

    /* 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: 16.8%;
    }

    /* 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: 30.666%;
    }
    /* Any more than 6 defaults to halves */

    .left_col
    {
        order: 1;
    }
    .center_col
    {
        order: 2;
    }    
    .right_col
    {
        order: 3;
    }
}
@media print {
}

/* Section Padding */
.section_title
{
    padding: 20px 0 0;
    margin-bottom: 0;
}
.section_title,
.site_quickmenu .fbcms_spotlights_title
{
    text-align: center;
    position: relative;
}
.section_title::after
{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #fab61a;
}

.flexi .fbcms_content
{
    padding: 20px 0 0;
}

.page_home .column .fbcms_content.firstone,
.page_home .fbcms_content.home_bottom.firstone
{
    padding-top: 20px;
}
.column .fbcms_content.lastone,
.flexi .fbcms_content:last-child,
.page_home .fbcms_content.home_bottom.lastone
{
    padding-bottom: 20px;
}
@media only screen and (min-width: 500px)
{
    .page_interior .inside_title_wrapper
    {
        width: 100%;
        position: relative;
        padding: 0 0 15px;
    }
    .flexi .fbcms_content
    {
        padding: 20px 0;
    }
}
@media only screen and (min-width: 768px)
{
    .section_title,
    .site_quickmenu .fbcms_spotlights_title
    {
        padding: 30px 0 0;
    } 

    .flexi .fbcms_content
    {
        padding: 30px 0;
    }
    .page_home .column .fbcms_content.firstone,
    .page_home .fbcms_content.home_bottom.firstone
    {
        padding-top: 30px;
    }
    .column .fbcms_content.lastone,
    .page_home .fbcms_content.home_bottom.lastone
    {
        padding-bottom: 30px;
    }
    .main_content .side_col.right_col
    {
        border-left: solid 1px #dedede;
        padding-left: 20px;
    }
    .main_content .side_col.left_col
    {
        border-right: solid 1px #dedede;
        padding-right: 20px;
    }
}
@media only screen and (min-width: 994px)
{
    .section_title
    {
        padding: 40px 0 0;
    } 
    .flexi .fbcms_content
    {
        padding: 30px 0;
    }
    .page_home .column .fbcms_content.firstone,
    .page_home .fbcms_content.home_bottom.firstone
    {
        padding-top: 40px;
    }
    .main_content .side_col.right_col
    {
        padding-left: 30px;
    }
    .main_content .side_col.left_col
    {
        padding-right: 30px;
    }
}

.flexi .fbcms_content.fbcms_ec
{
    padding: 0;
}

/* Section Dividers */
.fbcms_main .flexi .fbcms_content:last-child:after,
.fbcms_main .flexi .fbcms_section .addblock_buttonbar_wrapper:after,
.fbcms_main .columns > .column:last-child .fbcms_content:last-child:after
{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: solid 1px #dedede;
}
.flexi .fbcms_section .addblock_buttonbar_wrapper:after
{
    bottom: -30px;
}
/* Do not display after last section on the page */
.flexi:last-child .fbcms_section .addblock_buttonbar_wrapper:after,
.page_interior .columns:last-child > .column:last-child .fbcms_content:last-child:after
{
    display: none;
}

/* Page Home specific */
.page_home .main_content .fbcms_component:nth-child(2n+2)
{
    /*background-color: #f3f3f3;*/
}
@media only screen and (min-width: 768px)
{
    /* Home Page sections can recieve background images like this: */
    .page_home .main_content .fbcms_component:nth-child(6)
    {
        position: relative;
        background-color: #fff;
    }
    .page_home .fbcms_component:nth-child(6):after
    {
        content: "";
        position: absolute;
        left: 0;
        right:0;
        top: 0;
        bottom: 0;
        background: url('/downloads/background_images/section-6.jpg') center;
        background-size: cover;
        opacity: 0.3;
        z-index: 1;
    }
    .page_home .fbcms_component:nth-child(6) .component_liner
    {
        z-index: 2;
        position: relative;
    }
}
/*
===========================================================
 END MAIN FRAMEWORK
===========================================================
*/

/*
===========================================================
 FOOTER
===========================================================
*/
/* footer */
.fbcms_footer
{
    position: relative;
    color: #bbb;
}

.fbcms_footer .footer_top
{
    background-color: #323232;
}
.fbcms_footer .footer_bottom
{
    background-color: #000000;
    text-align: center;
}

.fbcms_footer .footer_liner
{
    padding: 15px;
}
.fbcms_footer a {
    color: #bbb;
}

.footer_center,
.fbcms_content.building_info,
.credits
{
    display: block;
    margin-bottom: 20px;
}
.fbcms_footer .copyright
{
    padding-right: 10px;
    border-right: solid 1px #bbb;
    margin-right: 10px;
}
.fbcms_footer .fbcms_building_info > span
{
    font-size: 1rem;
    display: block;
}

.fbcms_footer .fbcms_building_info .building_name 
{
    text-transform: uppercase;
    font-weight: bold;
    color: #fab61a;
}
.fbcms_building_info .divider
{
    display: none;
}
@media only screen and (min-width: 768px)
{
    .fbcms_footer
    {
        z-index: 2;
    }
    .fbcms_footer .footer_liner
    {
        padding: 40px 0;
    }

    .fbcms_footer .columns {
        align-items: center;
    }

    .fbcms_footer .right_col
    {
        text-align: right;
    }
    .fbcms_footer .center_col
    {
        text-align: center;
        padding: 0 30px;
    }
}

@media only screen and (max-width: 767px)
{
    .fbcms_footer .columns
    {
        display: flex;
        flex-direction: column;
    }

    .fbcms_footer .columns .center_col
    {
        order: 1;
    }
    .fbcms_footer .columns .left_col
    {
        order: 2;
    }
    .fbcms_footer .columns .right_col
    {
        order: 3;
    }
}
@media print {
    .fbcms_translate,
    .link_pdfviewer
    {
        display: none;
    }
}

/* Translate */
.translatedrop_title:after,
.translatedrop_title:before
{
    content: "\f107";
    display: inline-block;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    vertical-align: bottom;
}
.translatedrop_title:before
{
    content: "\f1ab";
    margin-right: 8px;
}
.translatedrop_title:after
{
    margin-left: 8px;
    transition: transform .3s;
    transform-origin: center;
}
.fbcms_translate.fbcms_drop.dropopen .translatedrop_title:after
{
    transform: rotate(180deg);
}
.goog-te-gadget,
.goog-te-gadget a
{
    color: #fff !important;
}
.fbcms_drop .goog-te-gadget,
.fbcms_drop .goog-te-gadget a
{
    color: initial !important;
}
.goog-te-gadget .goog-te-combo
{
    margin: 4px 0 0 0 !important;
}
/*
===========================================================
 END FOOTER
===========================================================
*/

/*
-------------------------------------
 Rich Text Formatting
-------------------------------------
*/
h1
{
    color: #222461;
    font: 2.125rem/1.3 serif;
    border-bottom: solid 2px #fab61a;
    margin-bottom: 15px;
}
h1.inside_title
{
    display: inline-block;
}

.home_welcome h1,
.home_welcome .content_intro
{
    color: #ffffff;
}
h1 span
{
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: normal;
    text-transform: uppercase;
    display: block;
}

h2
{
    color: #222461;
	font-weight: normal;
	font-size: 1.5rem;
	line-height: 1.3;
    margin-bottom: 15px;
}

h3,
.fbcms_cards .fbcms_card_name
{
    color: #222461;
	font-weight: normal;
	font-size: 1.125rem;
	line-height: 1.3;
    margin-bottom: 10px;
}

h4,
.fbcms_spotlight .data-driven-title
{
	font-weight: 600;
	font-size: 0.938rem;
	line-height: 1.3;
    color: #222461;
    margin-bottom: 10px;
}

h5
{
    color: #222461;
	font-weight: bold;
	font-size: 0.75rem;
	line-height: 1.3;
    margin-bottom: 5px;
}
h6
{
    color: #222461;
	font-weight: bold;
	font-size: 0.75rem;
	line-height: 1.3;
    margin-bottom: 5px;
}

.content_intro
{    
    color: #767676;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.375rem;
    margin: 0 0 19px;
}

.fbcms_content blockquote {
    font-style: italic;
    border-left: 4px solid #79a1d7;
    margin: 10px 0 10px 0;
    padding-left: 20px;
    line-height: 1.5;
    color: #777;
    font-size: large;
    margin-left: 0;
}

.fbcms_content hr {
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.13);
    background: transparent;
    margin: 40px 0;
}

.content_buttonblock,
.fbcms_more_link,
.jump_url
{
    display: block;
    margin: 10px 0;
}
.content_buttonblock a,
.fbcms_more_link a,
.jump_url a
{
    color: #666666;
    display: inline-block;
	font-weight: bold;
	font-size: 0.938rem;
	line-height: 1.938rem;
    text-decoration: none;
    padding: 0px 10px;
    background: #e5e5e5;
}
.content_buttonblock a:hover,
.content_buttonblock a:focus,
.fbcms_more_link a:hover,
.fbcms_more_link a:focus,
.jump_url a:hover,
.jump_url a:focus
{
    background: #ddd;
}

/* 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;
}
/*
-------------------------------------
 END Rich Text Formatting
-------------------------------------
*/

/*
===========================================================
 PhotoGallery Overlay Styling
===========================================================
*/
.fbpgro_overlay {
    padding: 8px 15px;
}
@media only screen and (min-width: 600px)
{
    .fbpgro_overlay {
        height: auto;
        min-height: 60px;
    }
}
@media only screen and (min-width: 768px)
{
    .page_home .fbpgro_overlay
    {
        padding: 8px 0;
    }
    .page_home .fbpgro_overlay .fbpgro_textwrapper
    {
        width: 95%;
        max-width: 1200px;
        margin: 0 auto;
    }
}
/*
===========================================================
 END PhotoGallery Overlay Styling
===========================================================
*/

/*
===========================================================
 Calendar Styling
===========================================================
*/
.fbcms_content.fbcms_upcoming_events .fbcms_upcoming_event_item
{
    margin-bottom: 18px;
}
li.fbcms_upcoming_event_item .event_group_date
{
    width: 50px;
}
li.fbcms_upcoming_event_item .event_date
{
    background-color: #929292;
    border: solid 2px #222461;
    border-radius: 3px; 
    color: #ffffff;
    font: 700 0.563rem/0.75rem Arial,Helvetica,sans-serif;
    padding: 0;
    position: relative;
    width: 2.125rem;
}
li.fbcms_upcoming_event_item .event_group_date .event_day
{
    font-size: 1.188rem;
    line-height: 1.313rem;
}
li.fbcms_upcoming_event_item .event_group_date .event_month
{
    line-height: 100%;
    padding: 1px 0px 2px 0px;
    background-color: #222461;
}

li.fbcms_upcoming_event_item .event_group_data {
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
}
li.fbcms_upcoming_event_item:last-child .event_group_data {
    border-bottom: none;
}
li.fbcms_upcoming_event_item .event_title
{
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.3;
}
li.fbcms_upcoming_event_item .event_title:hover,
li.fbcms_upcoming_event_item .event_title:focus 
{
    text-decoration: underline;
}

.fbcms_upcoming_event .time:before
{
    content: "\f017"; 
	font-weight: 400;
	font-family: 'Font Awesome 5 Free';
    margin-right: 4px;
}

/* Calendar List */
.month_table .month_header
{
    background-color: #202858;
}
/* END Calendar List */

/* Calendar Grid */
.calendargrid .caltab .monthname
{
    color: #999999;
}
.calendargrid .caltab .dayofweek
{
    background-color: #202858;
    border-color:#ffffff;
    border-right-color: #ffffff;
}
.calendargrid .caltab .currentmonth .daynumber
{
    background-color: #4B78B4;
    color: #ffffff;
}
/* END Calendar Grid */

/* Small Calendar Grid */
.fbcms_calendar_minigrid th {
    color: #222461;
}
.fbcms_calendar_mini .fbcms_calendar_mini_event 
{
    color: #4B78B4;
}
.fbcms_calendar_mini .fbcms_calendar_mini_monthName,
.fbcms_calendar_mini .fbcms_calendar_mini_yearNumber
{
    color: #222461;
    font-weight: bold;
}
.fbcms_calendar_mini .fbcms_calendar_mini_prevMonth,
.fbcms_calendar_mini .fbcms_calendar_mini_nextMonth
{
    background-color: #4B78B4;
}

.fbcms_calendar_mini .today, 
.fbcms_calendar_mini .isDay:hover, 
.fbcms_calendar_mini .isDay:focus
{
    color: #ffffff;
    background-color: #222461;
}
/* END Small Calendar Grid */

/*
===========================================================
 END Calendar Styling
===========================================================
*/

/*
===========================================================
 News Styling
===========================================================
*/
.fbcms_newscontent .fbcms_newscontent_month 
{
    font-size: 0.875rem;
    color: #000;
}

/*
===========================================================
 END News Styling
===========================================================
*/

/*
===========================================================
 Staff Styling
===========================================================
*/
.fbcms_staff_listing .email_icon,
.fbcms_staff_search .email_icon,
.fbcms_contact_email .email_icon  {
    background-color: #4B78B4;
}
.fbcms_staff_listing_header,
.fbcms_staff_search_results .header {
    color: #202858;
    font-weight: bold;
}
/*
===========================================================
 END Staff Styling
===========================================================
*/  
/*
===========================================================
 Pager Styling
===========================================================
*/
.pager
{
    text-align: center;
    width: 100%;
}
.pager .btnResultNavigation
{
    background-color: #cccccc;
}

.pager a .btnResultNavigation
{
    background-color: #4B78B4;
}

.pager a:hover .btnResultNavigation,
.pager a:focus .btnResultNavigation
{
    background-color: #000000;
}

.changeperpageform select
{
    border-color: #999999;
}
/*
===========================================================
 END Pager Styling
===========================================================
*/

/*
===========================================================
 Profile Styling
===========================================================
*/

.fbcms_contact_info
{
    padding-top: 14px;
}

.fbcms_contact_name
{
    padding-top: 5px;
}

.fbcms_profile_content
{
    padding-top: 10px;
}

.fbcms_contact_position, .fbcms_contact_department, .fbcms_contact_building 
{
    line-height: 1.125rem;
}

.fbcms_contact_responsibilities,
.fbcms_contact_responsibility
{
    margin-bottom: 0;
}

/*
===========================================================
 END Profile Styling
===========================================================
*/

/*
===========================================================
Jobs Styling
===========================================================
*/
.fbcms_jobs .jobCategoryName {
}

.fbcms_jobs .jobBuildingName {
}
/*
===========================================================
 END Jobs Styling
===========================================================
*/

/*
===========================================================
 Spotlight Styling
===========================================================
*/
.fbcms_spotlight
{
    margin-bottom: 20px;
}
.fbcms_spotlight .fbcms_spotlight_liner
{
}
.fbcms_spotlight .fbcms_spotlight_image
{
}
.fbcms_spotlight .fbcms_spotlight_image a
{
}
.fbcms_spotlight .fbcms_spotlight_image img
{
}

.fbcms_spotlight .desc_short
{
}
.fbcms_spotlight .desc_long
{
}
.fbcms_spotlight .more_link
{
    display: block;
}

/* Spotlights (horizontal) */
@media only screen and (min-width: 500px)
{
    .spotlights_horizontal .fbcms_spotlight_slide_liner
    {    
        width: auto;
        margin: 0 -10px;
    }
    .spotlights_horizontal .fbcms_spotlight
    {
        padding: 0 10px;
    }
    .spotlights_horizontal.horz_layout_1 .fbcms_spotlight
    {
        padding: 0;
    }
}

/* Spotlight Scrolling Arrows */
.fbcms_content.home_bottom.fbcms_spotlights .fbcms_contentfooter .spotlight_button.spotlight_prev,
.fbcms_content.home_bottom.fbcms_spotlights .fbcms_contentfooter .spotlight_button.spotlight_next {
    position: absolute;
    top: 50%;
    font-size: 3.75rem;
    color: rgba(114,114,102,.7);
    left: 0px;
    z-index: 900;
}
.fbcms_content.home_bottom.fbcms_spotlights .fbcms_contentfooter .spotlight_button.spotlight_next {
    left: auto;
    right: 0px;
}
.fbcms_content.home_bottom.fbcms_spotlights .fbcms_contentfooter .spotlight_button:hover,
.fbcms_content.home_bottom.fbcms_spotlights .fbcms_contentfooter .spotlight_button:focus
{
    color: rgba(114,114,102,1);
}

.fbcms_spotlights.site_quickmenu
{
    margin-bottom: 0;
    text-align: center;
    border-top: solid 1px #dedede;
}
/*
===========================================================
 END Spotlight Styling
===========================================================
*/

/*
===========================================================
 Expandable Content Styling
===========================================================
*/
    .fbcms_ec_title
    {
        background-color: #222461;
    }
    .fbcms_ec_title:hover,
    .fbcms_ec_title:focus
    {
        background-color: #4B78B4;
    }
    .fbcms_ec_title h2
    {
        line-height: initial;
    }
/*
===========================================================
 END Expandable Content Styling
===========================================================
*/