<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*,
*:before,
*:after {
    box-sizing: border-box;
}

:root {
    --page-width: 100vw;
    --navy: #221F5F;
    /* --navy: #0D2040; */
    --blue: #03A6E5;
    --red: #CA2026;
    --text: #303030;
    --gray: #E3E3E3;
    --light-gray: #F5F5F5;
    --color: white;
    --background: var(--navy);
    --radius: 20px;
    --gap: 37px;
    --horizontal-gap: clamp(15px, 3vw, 50px);
    font-size: 18px;
    --side-margin: calc((100vw - var(--page-width)) / -2);
    font-family: "Open Sans", sans-serif;
    overflow-x: clip;
}

@media (min-width: 768px) {
     :root {
        --page-width: 750px;
    }
}

@media (min-width: 992px) {
     :root {
        --page-width: 970px;
    }
}

@media (min-width: 1201px) {
     :root {
        --page-width: 1170px;
    }
}

@media (min-width: 1751px) {
     :root {
        --page-width: 1640px;
    }
    .container {
        width: 1640px;
    }
}

* {
    scroll-margin-top: var(--header-height);
}

body {
    color: var(--text);
    position: relative;
    max-width: 100%;
    overflow-x: inherit;
}

body,
header,
nav,
footer {
    font-family: inherit !important;
    font-size: inherit !important;
    /*^^ Overwrites mms_styles.css*/
}

@media (max-width: 767px) {
     :root {
        --gap: 45px;
    }
}

@media (max-width: 550px) {
     :root {
        --gap: 24px;
    }
}


/*--------------------------------------------------------
	H1 - H6
--------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    margin-bottom: .5em;
    padding: 0;
    font-weight: bold;
    line-height: 1.1em;
    text-transform: uppercase;
    color: var(--navy);
}

#subpage-main :is(h1, h2, h3, h4, h5, h6) {
    text-transform: capitalize;
}

h1 {
    font-size: 48px;
}

h1.title:empty {
    /*^^Hides the extra margin that is added on pages without a title*/
    display: none;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 33px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 27px;
}

h6 {
    font-size: 24px;
}

p+h1,
p+h2,
p+h3,
p+h4 {
    margin-top: 1.25em;
}


/*--------------------------------------------------------
	LINKS
--------------------------------------------------------*/

a {
    --color: var(--blue);
    color: var(--color);
    text-decoration: underline;
    transition: .125s color ease-in-out;
}

a:is(:hover, :focus) {
    --color: var(--red);
    color: var(--color);
    /* text-decoration: none; */
}

.button-list {
    display: flex;
    gap: 1rem 15px;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    line-height: 1;
}

.button-link {
    --color: white;
    color: var(--color);
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    padding: .75em 2ch;
    display: block;
    width: fit-content;
    margin: 1.25em 0;
    transition: .125s background ease-in-out, .125s color ease-in-out;
    line-height: 1;
    text-decoration: none;
    background-color: var(--background);
    border-radius: .75em;
    white-space: nowrap;
}

.button-link:first-child {
    margin-top: 0;
}

.button-link:last-child {
    margin-bottom: 0;
}

.button-link:is(:hover, :focus) {
    --color: white;
    --background: var(--blue);
    text-decoration: none;
}


/*--------------------------------------------------------
	Objects
--------------------------------------------------------*/

.offscreen {
    position: absolute;
    left: -2000vw;
}


/* Wrappers*/

.wrapper {
    /* .wrapper acts as a more symantic stand-in for &lt;container&gt;&lt;row&gt;&lt;col-md-12&gt;&lt;/col-md-12&gt;&lt;/row&gt;&lt;/container&gt; in sections of this build that don't require stacking columns  */
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    position: relative;
    height: inherit;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(var(--page-width) - 30px);
    width: var(--page-width);
}

.full-width {
    /* Make an element span the width of the viewport */
    position: relative;
    left: var(--side-margin);
    right: var(--side-margin);
    width: calc(100vw + var(--scrollbarWidth));
}

.full-width&gt;.column {
    padding-left: 0;
    padding-right: 0;
}

#gm-canvas .full-width,
#gm-canvas .background-row {
    left: unset;
    right: unset;
    width: unset;
}

.background-row:not(#mycanvas .background-row)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    background: var(--navy);
    display: block;
}

.background-row:not(#mycanvas .background-row).gray::before {
    background: var(--light-gray);
}

.background-row:not(#mycanvas .background-row)&gt;.column {
    /* Since element is extended past where the scrollbar is, extra padding is added to make sure it's content is not hidden under the scrollbar */
    /* padding-right: calc(15px + var(--scrollbarWidth)); */
}

#subpage-main:has(.background-row:last-child) {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
    padding-bottom: 0;
}

#subpage-main&gt;.background-row:last-child {
    /* If .background-row is the last row, don't include a gap between main and footer */
    margin-bottom: 0;
}

@media (max-width: 990px) {
    .container,
    .wrapper {
        /* Extra wiggle room at a breakpoint that needs it  */
        width: 100%;
    }
    .full-width,
    .background-row {
        /* left: var(--side-margin);
        right: var(--side-margin);
        width: calc(100vw + var(--scrollbarWidth)); */
    }
}


/* Tables */

#subpage-main table {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 990px) {
    #subpage-main table {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    #subpage-main table {
        font-size: 15px;
        line-height: 1.25em;
    }
}

#subpage-main *+table {
    margin-top: 2em;
}

#subpage-main table+* {
    margin-top: 3em;
}

#subpage-main table caption {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

#subpage-main table tr {
    border-left: .35em solid white;
    border-right: .35em solid white;
}

#subpage-main table *+strong {
    margin-top: .75em;
}

#subpage-main table tbody&gt;tr:nth-of-type(even) {
    background: #F6F6F6;
    border-left: .35em solid #F6F6F6;
    border-right: .35em solid #F6F6F6;
}


/*Feed items */

[class*="item"] img[src=""] {
    /* Don't display a broken image if no image has been added to a feed item */
    display: none;
}

main [class*="item"] br {
    /* Remove gaps in description text of feed items */
    /* &lt;main&gt; included in selector to prevent the inclusion of ...-items in the footer*/
    display: none;
}


/* Slideshow defaults */

.carousel {
    font-size: 20px;
}

.carousel-control.left,
.carousel-control.right {
    display: none;
}

.caption-text {
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.alt-text {
    font-size: 16px;
    color: initial;
    margin-bottom: 10px;
}


/*Responsive Nivo Slideshow*/

div[id^=slider-container-FD],
div[id^=slider_FD],
.nivoSlider img {
    max-width: 100% !important;
    height: auto !important;
}


/*Nivo slideshow controls*/

.nivo-prevNav,
.nivo-nextNav {
    background-image: none !important;
    width: 25px !important;
    top: 25% !important;
    /*Fallback for browsers that don't support calc*/
    top: calc( 50% - 50px) !important;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 75px;
    font-family: Arial, sans-serif;
    text-shadow: 0px 0px 10px rgba(51, 51, 51, 0.4);
}

.nivo-prevNav:hover,
.nivo-nextNav:hover {
    text-decoration: none;
    color: #ae0e0d;
    text-shadow: none;
}

.nivo-prevNav {
    left: 10px !important;
}

.nivo-nextNav {
    right: 10px !important;
}

.nivo-prevNav:after {
    content: "â€¹";
}

.nivo-nextNav:after {
    content: "â€º";
}


/*Misc. Objects */

.script-row:not(#mycanvas .script-row) {
    /* Allows scripts to be added via the Grid Editor without displaying the padding, etc that would be included on the published page */
    display: none;
}

address {
    margin-bottom: unset;
    /*Overwrites Bootstrap style*/
}


/* Header */

header {
    font-weight: 600;
}

.find-link {
    background: var(--navy);
    color: var(--blue);
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.find-link:is(:hover, :focus) {
    color: white;
}

.find-link::before {
    content: url('../images/find-icon.svg');
    display: inline-block;
    margin-right: .75ch;
    position: relative;
    top: 3px;
}

header&gt;section {
    display: flex;
    gap: 1rem 30px;
    justify-content: space-between;
    align-items: center;
}

header&gt;section,
header&gt;nav {
    padding-inline: var(--horizontal-gap);
    padding-block: calc(var(--gap) - 5px);
}

.logo {
    display: block;
    max-width: 100%;
}

.button-list a:not(.button-link) {
    font-size: 30px;
    white-space: pre;
}

.button-list .login-button:not(:is(:hover, :focus)) {
    --background: var(--red);
}

header .button-link {
    font-size: 24px;
    font-weight: initial;
    padding-block: .5em;
}

@media (max-width: 1200px) {
    .button-list a:not(.button-link),
    header .button-link {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    header .button-list li:not(.trigger-item) {
        display: none;
    }
}


/* Navigation */

header&gt;nav {
    background: var(--navy);
    display: flex;
    justify-content: center;
    padding-block: 15px;
    border-bottom: 3px solid var(--red);
}

#nav_menu::before,
#nav_menu::after,
#nav_menu&gt;ul::before,
#nav_menu&gt;ul::after {
    content: none;
}

#nav_menu&gt;ul {
    display: flex;
    justify-content: center;
    gap: 2ch;
    /* Overwrite BS defaults */
    float: none;
    margin: 0;
}

#nav_menu a {
    text-decoration: none;
    transition: .125s color ease-in-out;
    white-space: unset;
}

#nav_menu&gt;.nav&gt;li&gt;a {
    padding: 0;
    position: relative;
    line-height: 1;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    white-space: pre;
}

#nav_menu a:is(a:hover,
a:focus) {
    color: var(--red);
}

#nav_menu&gt;.nav&gt;li&gt;a:focus,
#nav_menu&gt;.nav&gt;li&gt;a:hover {
    /* Overwrite BS defaults */
    background: unset;
}

#nav_menu .nav .open&gt;a,
#nav_menu .nav .open&gt;a:focus,
#nav_menu .nav .open&gt;a:hover {
    transition: .125s background ease-in-out;
    background-color: var(--primary);
    border: none;
}

#nav_menu .dropdown-menu {
    top: calc(100% + 9px);
    border: none;
    font-size: 1rem;
    min-width: 300px;
}

#nav_menu .dropdown-menu:is(.men-level-1,
.men-level-2) {
    top: -7px;
    /* margin-left: 15px; */
}

#nav_menu .dropdown-menu&gt;li {
    position: relative;
}

#nav_menu .dropdown-menu&gt;li&gt;a:focus,
#nav_menu .dropdown-menu&gt;li&gt;a:hover {
    color: var(--red);
    background: transparent;
}

@media (max-width:990px) {
    #nav_menu {
        display: block;
        /* Overwrite .collapse that hides desktop menu on smaller screens */
    }
    #nav_menu&gt;.nav&gt;li&gt;a {
        text-transform: capitalize;
    }
}

@media (max-width:767px) {
    header&gt;nav {
        display: none;
    }
}


/* @media (max-width:550px) {
    #nav_menu {
        margin-bottom: 18px;
    }
    #nav_menu&gt;.nav&gt;li&gt;a {
        font-size: 14px;
    }
} */


/* Mobile Navigation  */

#mobileMenuWrapper {
    position: fixed;
    background: white;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: -200vw;
    overflow-y: auto;
    overflow-x: hidden;
    width: 300px;
    transition: .125s left ease-in-out;
    padding: .5rem 2ch;
    box-shadow: 7px 0 5px rgba(0, 0, 0, 0.1);
    /* background: var(--navy); */
}

#mobileMenuWrapper.open {
    left: 0;
}

@media (min-width: 768px) {
    .mobileMenuTrigger {
        display: none;
    }
}

button.mobileMenuTrigger {
    background: none;
    border: none;
    margin-left: auto;
}

.mobileMenuTrigger label {
    position: absolute;
    left: -200vw;
}

#mobile-menu {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: 20px;
    padding: 0;
    list-style: none;
}

.triggerClose {
    display: block;
    margin-left: auto;
}

.triggerClose button {
    background: none;
    border: none;
    font-size: 2em;
    line-height: 1;
}

.mDropdown {
    display: none;
}

.mDropdown.open {
    display: block;
    border-block: 2px solid var(--red);
    list-style: none;
    padding: .5em 0;
}

#mobile-menu a {
    text-decoration: none;
}

#mobile-menu a:not(.button-link) {
    font-size: 1rem;
    color: var(--navy);
}

#mobile-menu&gt;li&gt;a {
    font-weight: bold;
}

.mDropdown a {
    font-size: 16px;
}

#mobile-menu .button-list {
    flex-wrap: wrap;
    margin-top: 1rem;
}

#mobile-menu .button-list li:has([href*="tel"]) {
    order: 3;
}

#mobile-menu .trigger-item {
    display: none;
}

#mobile-menu a[href*="tel:"] {
    color: var(--blue);
    font-size: 24px;
    display: block;
    margin-top: 10px;
}

@media (max-width: 767px) {
    body:has(.mobileMenuTrigger) #nav_menu {
        display: none;
    }
}


/* Tagline section */

#tagline-section {
    background: url('../images/ATAA_0540.png');
    background: url('../images/ATAA_0785(9_25_24).png');
    background-size: cover;
    background-position: center;
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body:has(#homepage-main) #tagline-section {
    min-height: 50vh;
    background-position-y: 44%;
}

#tagline-section::before,
#tagline-section::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, var(--navy), transparent);
    z-index: 0;
}

#tagline-section&gt;div {
    position: relative;
    z-index: 1;
    padding-inline: 15px;
    font-size: 30px;
}

#tagline-section p {
    color: white;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 75%);
    font-size: 1em;
}

#tagline-section p:nth-child(1) {
    font-size: 2em;
    padding-bottom: 5px;
    border-bottom: 3px solid var(--red);
}

#tagline-section p:nth-child(2) {
    padding-top: .125em;
}

@media (max-width: 1100px) {
    #tagline-section&gt;div {
        font-size: clamp(18px, 3vw, 24px);
    }
}


/* @media (max-width: 900px) {
    #tagline-section&gt;div {
        font-size: 24px;
    }
} */


/* Main */

main&gt;.row {
    position: relative;
    padding-block: var(--gap);
}

main:is(#subpage-main,
#mms-main)&gt;.row {
    padding-block: calc(var(--gap) / 4);
}

main:is(#subpage-main,
#mms-main)&gt;.row:last-child {
    padding-bottom: var(--gap);
}

@media (max-width:990px) {
    main:is(#subpage-main,
    #mms-main)&gt;.row&gt;.column+.column {
        margin-top: calc(var(--gap));
    }
}


/* Tagline row */

#tagline-row .column {
    display: flex;
    gap: 1rem 30px;
    align-items: center;
    justify-content: center;
}

#mycanvas #tagline-row .column {
    display: block;
}

#tagline-row h2 {
    font-weight: 600;
    text-align: center;
    font-size: 30px;
}

@media (max-width: 767px) {
    #tagline-row .column {
        flex-wrap: wrap;
    }
}


/* Mission row */

#mission-row .column {
    background: white;
    box-shadow: 0 0 17px 6px rgba(0, 0, 0, .125);
    padding: 30px;
    width: calc(100% - 30px);
    margin-inline: 15px;
    /* Width and margin to move column in since box-shadow obscures the 15px padding on columns  */
    border-radius: 10px;
}

.mission-list {
    margin: 0;
    padding: 0;
    display: grid;
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 30px;
    /* line-height: 1.3; */
}

.mission-list li {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission-list h3 {
    color: var(--red);
    font-weight: bold;
}

.mission-list p:last-of-type {
    /* Set gap between text and button */
    padding-bottom: .5rem;
}

.mission-list .button-link {
    margin-top: auto;
}

@media (max-width: 990px) {
    .mission-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}


/* Testimonial section */

#embed-row .column {
    padding: 0;
}

#testimonials-section {
    padding-bottom: calc(var(--gap) / 2);
}

#testimonials-section h2 {
    text-align: center;
    margin-bottom: calc(var(--gap) / 2);
    font-size: 48px;
    text-transform: unset;
}

.testimonial-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
    gap: 1rem 30px;
    list-style: none;
}

@media (min-width: 768px) {
    .testimonial-list {
        font-size: .9rem;
    }
}

@media (min-width: 1201px) {
    .testimonial-list {
        grid-template-columns: repeat(auto-fill, minmax(535px, 1fr));
    }
}

.testimonial-list li {
    padding: 30px;
    position: relative;
}

.testimonial-list li::before {
    content: url(../images/quotes-icon.svg);
    position: absolute;
    top: 0;
    left: 0;
    opacity: .1;
    line-height: 1;
    z-index: -1;
}

.testimonial-list p:is(.author,
.location) {
    margin: 0;
    font-weight: bold;
    line-height: 1.25;
}

.author {
    color: var(--navy);
}

.location {
    color: var(--red);
}


/* Banner section */

#banner-section {
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: calc(var(--gap) / 2);
    padding-inline: 30px;
    text-transform: uppercase;
    --background: white;
}

#banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    background: linear-gradient(90deg, #0D2040, var(--navy));
    display: block;
    z-index: -1;
}

#banner-section p {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

#banner-section .button-link,
#sidebar-text .button-link {
    --color: var(--red);
    margin: 0;
}

#banner-section .button-link:is(:hover,
 :focus),
#sidebar-text .button-link:is(:hover,
 :focus) {
    --color: white;
}


/* News and events row */

#news-and-events-row h2 {
    text-align: center;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray);
}

.feed-item {
    padding-block: 1rem;
    border-bottom: 1px solid var(--gray);
    font-size: 16px;
    color: #303030;
}

.feed-item h3 {
    font-size: 24px;
    text-transform: unset;
}


/* Subpages */

#subpage-main {
    padding-top: calc(var(--gap)* 1.5);
}

#sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

#sidebar&gt;section {
    background: var(--light-gray);
    padding: 1rem 30px;
    border-radius: 5px;
}

#sidebar&gt;#sidebar-text {
    background: var(--navy);
    color: white;
    font-size: 16px;
    --background: white;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    text-align: center;
}

#sidebar h2 {
    text-transform: uppercase;
}

#sidebar .button-link {
    margin-inline: auto;
}

#sidebar-text h2 {
    color: white;
}

#sidebar-text .button-list {
    flex-wrap: wrap;
    gap: .5rem 15px;
    justify-content: center;
}

#sidebar .feed-item h3 {
    font-size: 18px;
}


/* Footer */

main+footer-embed {
    margin-block: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: var(--gap);
}

main+footer-embed #testimonials-section {
    width: var(--page-width);
    margin-inline: auto;
}

footer {
    --navy: #0D2040;
    position: relative;
    padding-block: calc(var(--gap) / 2);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap) / 2);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--side-margin);
    right: var(--side-margin);
    display: block;
    background: var(--navy);
    z-index: -1;
}

footer section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 30px;
}

footer section+section {
    margin-top: calc(var(--gap) / 4);
}

#footer-contact {
    text-align: center;
}

.blue {
    color: var(--blue);
}

footer .logo {
    width: 100px;
    max-width: 100%;
    display: block;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 1ch;
}

.social-list rect {
    display: none;
}

.social-list a:is(:hover,
 :focus) path {
    transition: .125s fill ease-in-out;
    fill: var(--red) !important;
    /* Overwrite inline styles in SVG files */
}

.credits-list {
    justify-content: center;
}

footer p {
    margin: 0;
}

@media (max-width: 990px) {
    footer section+section {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    footer section {
        justify-content: center;
        gap: 30px;
    }
}


/*--------------------------------------------------------
						Subpage Styles
--------------------------------------------------------*/


/*--------------------------------------------------------
						MMS Styling
--------------------------------------------------------*/

#mms-main *[face] {
    font-family: inherit;
    font-size: inherit;
}

#mms-main *[style*="erdana"],
#mms-main *[font-family*="erdana"],

/*^^Targets both elements with Verdana and verdana spec'd*/

#mms-main div,
#mms-main span:not([class^="fa"]),

/*Allows the Font Awesome icons in the Grid Editor to show*/

#mms-main td,
#mms-main tr,
#mms-main table,
#mms-main input,
#mms-main textarea,
#mms-main label
/*^^Styles are meant to overwrite the MMS styles that set everything to Verdana*/

{
    font-family: inherit !important;
}


/*-----------Grid Page Editor-------------*/

#mycanvas a {
    text-decoration: none;
}

#mycanvas a::before {
    position: initial;
    bottom: initial;
    left: initial;
    right: initial;
    background: initial;
    height: initial;
    transition: initial;
    display: initial;
    z-index: initial;
}</pre></body></html>