<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("/coa-styles/index.css");

body {
    background-color: var(--surface-background);
    color: var(--surface-color);
    line-height: 1.24;
    margin: 0;
    overflow-y: scroll;
    position: relative;

    &amp;&gt;main::after {
        content: "";
        display: table;
        clear: both
    }

    main {
        ul {
            padding: 0 0 0 40px;
        }
    }
}

/*--- Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px
}

::-webkit-scrollbar-track:hover {
    background: rgba(0, 0, 0, .1)
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, .5)
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .05)
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .25)
}

/* Classes */
.align-right {
    clear: initial;
    float: right;
    margin-bottom: 0.5em;
    margin-left: 0.5em;

    &amp;.extra-space {
        margin-bottom: 1em;
        margin-left: 1em;
    }

    &amp;.no-space {
        margin-bottom: 0;
        margin-left: 0;
    }
}

.align-left {
    clear: initial;
    float: left;
    margin-left: 0;
    margin-bottom: 0.5em;
    margin-right: 0.5em;

    &amp;.extra-space {
        margin-bottom: 1em;
        margin-right: 1em;
    }

    &amp;.no-space {
        margin-bottom: 0;
        margin-right: 0;
    }
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.clear-left {
    clear: left !important
}

a.clear-left {
    display: block
}

.clear-right {
    clear: right !important
}

.clear {
    clear: both !important
}

.group:after {
    content: "";
    display: table;
    clear: both;
}

.grid-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: calc(100% - 2em);
    position: relative;
}

.grid-center&gt;* {
    display: block;
    color: initial;
    margin: 0 auto 0.318rem auto;
    text-align: center;
    max-width: 100%;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 2em);
    position: relative;
}

.grid.md-three&gt;a {
    color: initial;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.grid figure {
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (min-width: 1024px) {
    .grid.md-three&gt;a {
        width: 33%;
    }

    .grid figure {
        height: 300px;
    }

    .grid figure img {
        border-radius: 4px;
        margin: 0 auto;
        margin-bottom: 5px;
        max-height: 240px;
    }

    .grid figure figcaption {
        min-height: 2.5em;
    }
}

/* App-Button (removed ::content from these as it breaks IE/Edge) */
app-button,
.button {
    display: inline-block;
}

app-button&gt;*,
a[app-button],
a.button {
    box-sizing: border-box;
    height: 100%;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
    /* Not sure about these */
    font-weight: 600;
    padding: 0.309em 0.618em;
    text-transform: uppercase;
    text-align: center;
    /* Even less sure about these */
    border-radius: 0;
    border: 2px solid transparent;
}

app-button&gt;a,
a[app-button],
a.button {
    color: var(--surface-color-bold);
    display: inline-block;
    text-decoration: none;
}

app-button&gt;button {
    background: transparent;
    color: inherit;
    cursor: pointer;
}

/* Iron-Image */
iron-image {
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    position: relative;
}

iron-image[sizing='cover'] {
    background-size: cover;
}

iron-image[sizing='contain'] {
    background-size: contain;
}

iron-image[position='center'],
iron-image[position='center center'],
iron-image:not([position]) {
    background-position: center center;
}

/* If browser support then set center center default and adjust x/y independantly here */
iron-image[position='top'] {
    background-position: top center;
}

iron-image[position='bottom'] {
    background-position: bottom center;
}

iron-image[position='left'] {
    background-position: center left;
}

iron-image[position='right'] {
    background-position: center right;
}

/* HERO IMAGE */
/* Basically just trying to emulate background image with position: center center; */
main&gt;header img {
    height: auto;
    min-height: 100%;
    width: auto !important;
    min-width: 100%;
    position: absolute;
    max-width: none !important;
    /*Override default (responsive) img styling */
}

main&gt;header iron-image {
    height: 100%;
    width: 100vw;
}

main&gt;header iron-image[style] img {
    display: none !important;
}

/* ContentTools Selector*/
main&gt;header div.ce-element.ce-element--type-image {
    background-position: center center;
    height: 100% !important;
    /* Override ContentTools */
    width: 100% !important;
    /* Override ContentTools */
    position: absolute;
    -webkit-background-size: initial;
}

/* breadcrumb-nav (Breadcrumb) */
breadcrumb-nav {
    display: block;
}

page-title+breadcrumb-nav {
    margin-top: 0.38rem;
}

breadcrumb-nav ol {
    display: flex;
    flex-direction: row;
    list-style: none;
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
}

/* Mostly doing this for browser/editing consistency */
breadcrumb-nav li {
    display: flex;
    flex-direction: row;
}

breadcrumb-nav li+li::before {
    display: inline-block;
    content: '\2f';
    padding: 0 6px;
}

breadcrumb-nav a,
breadcrumb-nav a:visited,
breadcrumb-nav a:focus,
breadcrumb-nav a:active {
    color: inherit;
    text-decoration: none;
}

breadcrumb-nav a:hover {
    text-decoration: underline;
}

/* Address Cards */
/* CONTACT SECTIONS (common-parts) */
address {
    box-sizing: content-box;
    display: inline-block;
    font-style: normal;
    line-height: 1.5;
    padding: 0.618rem;
}

address img.align-left {
    margin-left: 0;
}

address div&gt;img,
address iron-image {
    box-sizing: content-box;
    clear: initial;
    float: left;
    height: 64px;
    margin: 0 0.5rem 0.5rem 0;
    width: 64px;
}

address div.ce-element--type-image {
    background-position: center center;
    background-size: 64px 64px;
    height: 64px !important;
    width: 64px !important;
    margin: 0 0.5rem 0.5rem 0;
}

address p {
    margin: 0;
}

address p[itemprop="name"] {
    display: inline-block;
    /*white-space: nowrap; For Human Resources*/
    font-size: 1rem;
}

address p[itemprop="jobTitle"] {
    font-style: italic;
    text-transform: capitalize;
}

address span[itemprop="openingHoursSpecification"] {
    white-space: pre;
}

address ol {
    clear: left;
    list-style: none;
    margin: 0;
    padding: 0 0.4em 0.8em 0;
}

address&gt;div+div {
    margin-top: 12px;
}

address ol strong {
    display: inline-block;
    font-weight: 700;
    text-align: right;
    width: 3.4em !important;
}

address ol li {
    min-height: 1em;
}

/*https://github.com/bendavis78/paper-chip/blob/master/paper-chip.html*/
@media screen and (max-width: 2056px) {
    address {
        box-sizing: border-box;
        position: relative;
        float: none;
        /*height: 32px;*/
        /*@apply(--layout-horizontal);*/
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-direction: row;
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    address paper-chip {
        box-sizing: border-box;
        display: inline-block;
        font-size: 16px;
        /*width: 33%; needed until I fix the markup. When div below controls width it works well until it needs to go to position: absolute; */
        min-width: 350px;
        cursor: default;

        /*transition: 200ms ease-in;*/
        position: relative;
    }

    address paper-chip&gt;div {
        background-color: #E6E6E6;
        color: #666;
        vertical-align: top;
        padding-right: 0.5rem;
        position: relative;
        outline: none;
    }
}

/*@media screen and (min-width: 768px) and (max-width: 1600px) {*/
@media screen and (min-width: 1601px) and (max-width: 1600px) {

    address paper-chip:hover,
    address paper-chip:hover img,
    address paper-chip:hover iron-image,
    address paper-chip:hover p,
    address paper-chip:hover ol,
    address paper-chip:hover&gt;div {
        transition-delay: 400ms;
    }

    address paper-chip:not(:hover) img,
    address paper-chip:not(:hover) iron-image {
        border-radius: 32px;
        width: 32px;
        height: 32px;
        line-height: 32px;
    }

    address paper-chip:not(:hover) div.ce-element--type-image {
        background-size: 32px 32px;
        border-radius: 32px;
        line-height: 32px;
        width: 32px !important;
        height: 32px !important;
        padding: 0;
    }

    address paper-chip:hover img {
        border-radius: 0;
        box-sizing: content-box;
        height: 64px;
        margin: 0 0.5rem 0.5rem 0;
        width: 64px;
    }

    address paper-chip:hover div.ce-element--type-image {
        box-sizing: content-box;
        height: 64px !important;
        margin: 0 0.5rem 0.5rem 0;
        width: 64px !important;
        background-size: 64px 64px;
    }

    address paper-chip:not(:hover) p {
        line-height: 32px;
        padding: 0 16px 0 8px;
    }

    address paper-chip:not(:hover) p:last-of-type,
    address paper-chip:not(:hover) ol {
        display: none;
    }

    address paper-chip:not(:hover)&gt;div {
        border-radius: 32px;
        display: inline-block !important;
    }

    address paper-chip:hover&gt;div {
        border-radius: 0;
        box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
        display: block;
        max-width: 100%;
        position: absolute;
        top: 0;
        width: 300px;
        z-index: 1;
    }
}

address div[itemtype="http://schema.org/Place"] ol li:last-child {
    display: flex;
}

/* Footer Nav */
footer-nav {
    background: var(--nav-background);
    color: var(--nav-color);
    display: block;
    padding: 1.5rem 1rem 1rem 1rem;

    &amp;&gt;h4 {
        margin-top: 0;
    }

    h4 a {
        text-decoration: none;
    }

    a {
        color: var(--nav-color);

        &amp;:hover {
            background: var(--nav-highlight-background);
            border: 1px solid var(--nav-highlight-background);
            border-width: 0 0 1px 0;
        }
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        margin-right: -.75rem;

        coa-list {
            -ms-flex: 1 1 100%;
            -webkit-flex: 1;
            flex: 1;
            box-sizing: border-box;
            -webkit-flex-basis: calc((100% - .1px - (.75rem * 4))/ 4);
            flex-basis: calc((100% - .1px - (.75rem * 4))/ 4);
            max-width: calc((100% - .1px - (.75rem * 4))/ 4);
            margin-right: .75rem
        }
    }
}

@media (max-width:1400px) {
    footer-nav nav {
        margin-right: -.5rem
    }

    footer-nav nav coa-list {
        -webkit-flex-basis: calc((100% - .1px - (.5rem * 3))/ 3);
        flex-basis: calc((100% - .1px - (.5rem * 3))/ 3);
        max-width: calc((100% - .1px - (.5rem * 3))/ 3);
        margin-right: .5rem
    }
}

@media (max-width:1128px) {
    footer-nav nav coa-list {
        -webkit-flex-basis: calc((100% - .1px - (.5rem * 2))/ 2);
        flex-basis: calc((100% - .1px - (.5rem * 2))/ 2);
        max-width: calc((100% - .1px - (.5rem * 2))/ 2)
    }
}

@media (max-width:480px) {
    footer-nav nav coa-list {
        -webkit-flex-basis: calc((100% - .1px - (.5rem * 1))/ 1);
        flex-basis: calc((100% - .1px - (.5rem * 1))/ 1);
        max-width: calc((100% - .1px - (.5rem * 1))/ 1)
    }
}

/* List */
coa-list {
    a {
        text-decoration: none;
    }

    heading {
        display: flex;
        align-items: center;
    }

    h6 {
        display: inline-block;
        font-size: 1.2rem;
        margin: 0 0 0 4px;
        padding: 0;
        vertical-align: text-top;
    }

    ul {
        list-style: none;
        margin-top: 6px;
        padding-left: 2.5rem;

        li {
            margin-bottom: .318em;
        }
    }

    coa-icon,
    iron-icon {
        border-radius: 1px;
        display: inline-block;
        padding: 6px;
        width: 2.66rem;
        height: 2.66rem
    }
}

/* COA-ICON */
coa-icon,
iron-icon {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    vertical-align: middle;
    fill: currentcolor;
    stroke: none;
    /* Required in IE/Edge - now breaks Edge */
    width: 100%;
    height: 100%;

    &amp;.paper-dropdown-menu {
        height: 24px;
        width: 24px;
    }

    svg {
        pointer-events: none;
        display: block;
        width: 100%;
        height: 100%
    }
}

/* Social Media Links doesn't work because overflow on header in article */
main header page-title page-social {
    display: grid;
    position: absolute;
    right: 16px;
    margin-left: auto;
    grid-template-columns: 48px 48px;
    background-color: rgba(0, 73, 107, 0.95);
    border-radius: 5px 5px 0 0;
    gap: 16px;
    padding: 8px;
    box-sizing: border-box;
    top: -64px;
    height: 64px;
    box-shadow: 1px -1px 1px rgb(255 255 255 / 80%);

    a {
        padding: 8px;

        &amp;:hover {
            background: rgba(0, 0, 0, 0.2);
        }
    }
}

/* Outlook Calendar */
section.outlook-calendar {
    display: block;

    header {
        display: flex;
        flex-direction: row;
        align-items: center;

        h3 {
            flex: 1;
            color: #009DDC;
            color: var(--coa-blue);
        }

        a {
            border-radius: 3px;
            border: 1px solid #009DDC;
            color: #009DDC;
            display: inline-block;
            text-decoration: none;
            padding: 5px;

            margin-left: 1em;
            font-size: 0.8rem;
        }
    }

    iframe {
        border: 0;
        height: 1200px;
        width: 100%;
    }
}

/* Print */
@media print {

    body,
    html {
        border: 1px solid #fff;
        display: none;
        height: 99%;
        page-break-after: avoid;
        page-break-before: avoid
    }

    body&gt;footer,
    body&gt;header,
    main&gt;header {
        display: none
    }

    main&gt;article {
        margin-top: 0
    }

    body,
    html {
        border: 1px solid #fff;
        display: block;
        min-height: initial !important;
        height: 99%;
        page-break-after: avoid;
        page-break-before: avoid
    }

    img,
    .ct-app {
        display: none
    }
}

/*Editor*/
#respondViewBtn {
    display: none !important;
}

/* Civic Services */
civic-services {
    display: block;
    max-width: 100%;
    overflow-x: auto;

    header {
        h2 {
            color: var(--surface-color-bold-alt);
            display: inline-block;
            margin: 0;
        }
    }

    form {
        margin: 0;
        padding: 0;

        fieldset {
            display: inline-flex;
            flex-wrap: wrap;
            width: 44ch;

            input {
                width: 35ch;
            }

            #verify-btn {
                justify-self: center;
            }
        }

        button[type="submit"] {
            margin-bottom: 4px;
            margin-top: auto;
        }
    }

    footer {
        margin: 1rem 0;
    }
}</pre></body></html>