﻿/*	font-family:'Neo Sans W02'; 400 Regular	
    font-family:'Neo Sans W01'; 400 Italic, 500 Medium, 700 bold
    font-family:'Helvetica W01'; 300 Light, 700 Bold
    font-family:'Helvetica W02'; 400 Regular */

/* vars */
:root {
    font-size: 16px;
    --bodyFont: 'Helvetica W02', Arial, sans-serif;
    --bodyFontAlt: 'Helvetica W01', Arial, sans-serif;
    --titleFont: 'Neo Sans W02', Arial, sans-serif;
    --titleFontAlt: 'Neo Sans W01', Arial, sans-serif;
    --colWhite: #fff;
    --colWhiteSemi: rgba(255,255,255,0.5);
    --colWhiteAlpha: rgba(255,255,255,0.2);
    --colBlack: #000;
    --greyDark: #111;
    --greyText: #333;
    --greyMid: #656870;
    --greyAlpha: rgba(0,0,0,0.125);
    --greyLighter: #eee;
    --greyLight: #bbb;
    --greyLightAlpha: rgba(0,0,0,0.25);
    --greyPale: #f3f3f3;
    --greyPaleAlpha: rgba(0,0,0,0.06);
    --greyVPale: #f9f9f9;
    --tint: brightness(0) saturate(1) invert(18%) sepia(18%) saturate(3035%) hue-rotate(242deg) brightness(90%) contrast(88%);
    --tintSub: brightness(0) saturate(1) invert(9%) sepia(82%) saturate(6041%) hue-rotate(307deg) brightness(101%) contrast(102%);
    /* Purple */
    --colMain: #4c2b5e;
    --colMainAlpha: rgba(76,43,94,0.1);
    --colMainMidAlpha: rgba(76,43,94,0.3);
    --colMainDarkAlpha: rgba(76,43,94,0.85);
    --colMainPaleAlpha: rgba(76,43,94,0.05);
    --colMainLight: #cdc3d2;
    --colMainPale: #e8e3ea;
    --colMainDark: #301B3B;
    --colMainText: #e1b7f7;
    /* Sub - Pink */
    --colSub: #a5027d;
    --colSubDark: #730157 /*#590143*/;
    --colSubMid: #c45f91;
    --colSubLight: #dd9fc1;
    --colSubPale: #f6dfe9;
    /* Accent - Green */
    --colAccent: #a5bb27;
    --colAccentAccess: #6c7a1a;
    --borderRound: 2rem;
    --borderRad: 1rem;
    --borderRadSm: 0.5rem;
    --borderRadMin: 0.375rem;
}

/* #Reset & Basics ================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* #Basic Styles================================================== */
body {
    background: var(--colWhite);
    font-family: var(--bodyFont);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--greyDark);
    -webkit-text-size-adjust: 100%;
    overflow-y: scroll
}
    body.scrollDisabled {
        position: fixed;
    }

*:focus-visible {
    outline: 2px solid var(--colSub);
}
#footerWrap *:focus-visible {
    outline: 2px solid var(--colMainText);
}
/* #Typography================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--colSubDark);
    font-weight: 700;
    font-family: var(--bodyFontAlt);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
    text-decoration: none;
}
    h1,
    h2.fauxh1 {
        font-weight: 600;
        font-family: var(--titleFontAlt);
        font-size: clamp(2rem, 4vw, 2.6rem);
        line-height: 1.25;
        margin-bottom: 1.25rem;
        letter-spacing: -0.03em;
        color: var(--colMain);
    }
h2 {
    font-weight: 600;
    font-family: var(--titleFontAlt);
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
h2.alt {
    color: #222;
}
h3, h3 a {
    font-weight: 600;
    font-family: var(--titleFontAlt);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 32px;
    margin-bottom: 1.25rem;
    color: var(--colMain);
}
h3 img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    display: inline;
    margin-right: 10px;
}
h4 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 1.25rem;
}
h5 {
    font-size: 1.0625rem;
    line-height: 24px;
    margin-bottom: 0;
}
h6 {
    font-size: 0.9375rem;
    line-height: 23px;
    font-weight: 700;
}
.headerIcon {
    display: inline-block;
    padding-left: 2.75rem;
    background-size: 2rem;
    background-repeat: no-repeat;
    background-position: 0 50%;
}
*.superHeader {
    font-size: clamp(2rem, 4vw, 3rem);
}

.overline {
    border-top: 1px solid var(--colSub);
    padding-top: 0.3em
}
.subheader {
    color: var(--greyMid);
}
p {
    margin: 0 0 20px 0;
}
    p.icon {
        font-family: var(--bodyFontAlt);
        font-weight: 700;
        padding-top: 6px;
        min-height: 21px;
    }
p.icon a {
    display: block;
    font-size: 1.125rem;
}
p.icon a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url('../block-images/sprite.png') no-repeat -172px -180px;
    background-size: 500px 500px;
    width: 32px;
    height: 32px;
    margin-top: -3px;
    margin-right: 10px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
p.icon a:hover::before, .cta p.icon a::before {
    background: url('../block-images/sprite.png') no-repeat -140px -180px;
    background-size: 500px 500px;
    transform: rotate3d(32, 1, 0, 180deg);
}
.cta p.icon a:hover::before {
    background: url('../block-images/sprite.png') no-repeat -108px -180px;
    background-size: 500px 500px;
}
p.icon.left a::before {
    -ms-transform: rotate(180deg); /* IE 9 */
    -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */
    transform: rotate(180deg);
}
p.icon.right {
    text-align: right;
}
p.icon.right a::before {
    display: none
}
    p.icon.right a::after {
        width: 32px;
        height: 32px;
        content: "";
        display: inline-block;
        vertical-align: middle;
        background: url('../block-images/sprite.png') no-repeat -172px -180px;
        background-size: 500px 500px;
        margin-top: -3px;
        margin-right: 10px;
        transition: all 0.2s ease-out;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
    }
p.lead {
    font-family: var(--bodyFontAlt);
    font-size: 1.125rem;
    line-height: 1.625rem;
    font-weight: 700;
}

em {
    font-style: italic;
}
strong {
    font-family: inherit;
    font-weight: 600;
}
p strong,
li strong {
    font-family: var(--bodyFontAlt);
    font-weight: 700 
}
small {
    font-size: 85%;
}
/*	Blockquotes  */
blockquote, blockquote p {
    font-family: var(--titleFontAlt);
    font-weight: 400;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.75rem;
    padding-bottom: 10px;
    margin-bottom: 0;
    color: var(--colMain);
}
blockquote {
    margin: 0 0 30px;
    padding: 25px 0 10px 20px;
    border-left: 8px solid var(--colMain); /*quotes: "\201C""\201D""\2018""\2019";*/
}
blockquote:before {
    color: var(--colSub);
    content: "“";
    font-size: 5rem !important;
    font-style: normal;
    line-height: 0;
    margin-right: 8px;
    vertical-align: -40px;
}
blockquote p {
    display: inline;
}
    blockquote .footer {
        display: block;
        font-family: var(--titleFont);
        font-size: 0.8125rem !important;
        font-style: normal;
        text-transform: uppercase;
        line-height: 1.1875rem;
        color: var(--colSub);
        margin: 10px 0 0 0;
    }
/*blockquote .footer:before {	content: "\2014 \0020";}*/
blockquote .footer a,
blockquote .footer a:visited,
blockquote .footer a:visited
{
    color: var(--colSub);
}
/*hr {
    display: block;
    border: dotted #d3d3d3;
    border-width: 0 0 1px;
    clear: both;
    padding-top: 15px;
    margin: 0 1rem 30px;
    height: 0;
    width: 100%;
}*/
hr {
    display: block;
    border: dashed var(--greyLight);
    border-width: 0 0 1px;
    clear: both;
    padding-top: 10px;
    margin: 0 10px 30px;
    height: 0;
}
/*article hr {
    padding-top: 2rem;
    margin: 0 1rem;
}*/
.column hr, .columns hr {
    margin-left: 0;
    margin-right: 0;
}
hr.tall {
    padding-top: 40px;
    margin-bottom: 40px;
}
hr.noTop {
    padding-top: 0 !important;
}
hr.mini {
    border: solid var(--greyLight);
    border-width: 3px 0 0 !important;
    clear: both;
    width: 80px;
    margin: 20px auto 32px !important;
    padding: 0;
}
hr.dotGreen {
    border: dotted var(--colAccent);
    border-width: 0 0 6px;
}
hr.dotGrey {
    border: dotted var(--greyLight);
    border-width: 0 0 6px;
}
hr.dotPink {
    border: dotted var(--colSub);
    border-width: 0 0 6px;
}
hr.dotPurple {
    border: dotted var(--colMain);
    border-width: 0 0 6px;
}
hr.thinDash {
    border: dashed var(--greyLight);
    border-width: 0 0 1px;
}
hr.thinSolid {
    border: solid var(--greyLight);
    border-width: 0 0 1px;
}
hr.fourDot {
    border-width: 0 0 4px !important;
}

/* #Links================================================== */
a {
    color: var(--colSub);
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    word-break: break-word;
}
a:hover {
    color: var(--colBlack);
}
p a, p a:visited {
    line-height: inherit;
}
a[href^=tel] {
    color: inherit;
    text-decoration: none;
}
/* #Lists================================================== */
  ul, ol {
    margin-bottom: 25px;
}
ul {
    list-style: square outside;
}
ol {
    list-style: decimal;
}
ol.roman {
    list-style: lower-roman;
}
ol, ul {
    margin-left: 30px;
}
/* Creates extra-large ordered list numbering */

    ol.bigNumber {
        margin-left: 0;
        counter-reset: listItem;
        font-size: 2rem;
    }
    ol.bigNumber > li {
        font-size: 1.125rem;
        line-height: 1.5;
        list-style: none;
        position: relative;
        margin-left: 0;
        margin-bottom: 1em;
        padding-left: 40px;
        min-height: 2em;

    }
        ol.bigNumber > li:before {
            position: absolute;
            counter-increment: listItem;
            content: counter(listItem) ".";
            font-family: var(--bodyFontAlt);
            font-size: 1.75rem;
            font-weight: 700;
            line-height: 1;
            width: 40px;
            text-align: right;
            top: -0.125em;
            left: -0.25em;
            color: var(--colSub);
        }

ul.circle {
    list-style: circle outside;
}
ul.disc {
    list-style: disc outside;
}
ul ul, ul ol, ol ol, ol ul {
    margin: 4px 0 5px 18px;
    /*font-size: 90%;*/
}
ul ul li, ul ol li, ol ol li, ol ul li {
    margin-bottom: 6px;
}
li {
    margin-bottom: 3px;
}
ul.spaced li {
    margin-bottom: 1rem;
}

/* pagination */
ul.pagination {
    margin: 0 0 2rem 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

    ul.pagination li {
        display: block;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1;
        list-style: none;
        box-sizing: border-box;
        text-align: center;
        margin-bottom: 0;
    }

        ul.pagination li.active a {
            background-color: var(--colMainDark);
            color: var(--colWhite);
        }

        ul.pagination li a {
            display: block;
            background-color: var(--colMain);
            color: var(--colWhite);
            padding: 0.75rem 1rem;
            margin-bottom: 0;
            box-sizing: border-box;
            text-decoration: none;
            min-width: 1.5rem;
            border-radius: 3px
        }

            ul.pagination li a:hover {
                background: var(--colSub);
            }

        ul.pagination li.disabled a {
            background: var(--greyLighter);
            color: var(--greyText);
        }

        ul.pagination li.next a,
        ul.pagination li.previous a {
            padding: 0.875rem;
        }

ul.pagination li.next img,
ul.pagination li.previous img {
    height: 14px;
    width: 14px;
    display: block;
    margin: 0 auto;
    transform: rotate(-90deg)
}

ul.pagination li.previous img {
    transform: rotate(90deg)
}

/* linklist */
ul.linklist, ul.navlist {
    margin: 0 0 10px;
    list-style: none;
}
    ul.linklist li, ul.navlist li {
        font-family: var(--titleFont);
        line-height: 1.6;
        margin-bottom: 10px;
        position: relative;
        padding-left: 32px;
        text-align: left;
    }
ul.linklist li:before, ul.navlist li:before {
    float: left;
    margin-top: 0;
    margin-right: 12px;
    display: block;
    content: "";
    position: absolute;
    left: 0;
}
ul.linklist li.dx:before {
    background: url('../block-images/sprite.png') no-repeat -117px -133px;
    background-size: 500px 500px;
    width: 17px;
    height: 11px;
    margin-top: 8px;
}
ul.linklist li.email:before {
    background: url('../block-images/sprite.png') no-repeat -32px -137px;
    background-size: 500px 500px;
    width: 16px;
    height: 14px;
    margin-top: 7px;
}
ul.linklist li.fax:before {
    background: url('../block-images/sprite.png') no-repeat -63px -134px;
    background-size: 500px 500px;
    width: 16px;
    height: 16px;
}
ul.linklist li.event:before {
    background: url('../block-images/sprite.png') no-repeat -26px -183px;
    background-size: 500px 500px;
    width: 24px;
    height: 24px;
}
ul.linklist li.link:before {
    background: url('../block-images/sprite.png') no-repeat -78px -183px;
    background-size: 500px 500px;
    width: 24px;
    height: 24px;
}
ul.linklist li.news:before {
    background: url('../block-images/sprite.png') no-repeat -52px -186px;
    background-size: 500px 500px;
    width: 24px;
    height: 24px;
}
ul.linklist li.office:before {
    background: url('../block-images/sprite.png') no-repeat -145px -134px;
    background-size: 500px 500px;
    width: 16px;
    height: 16px;
}
ul.linklist li.pdf:before {
    background: url('../block-images/sprite.png') no-repeat 0 -183px;
    background-size: 500px 500px;
    width: 24px;
    height: 24px;
}
ul.linklist li.tel:before {
    background: url('../block-images/sprite.png') no-repeat 0 -134px;
    background-size: 500px 500px;
    width: 16px;
    height: 16px;
}
ul.linklist li.tick:before {
    background: url('../block-images/sprite.png') no-repeat -172px -130px;
    background-size: 500px 500px;
    width: 16px;
    height: 16px;
}
    ul.navlist li {
        font-family: var(--bodyFont);
        font-size: 1.3125rem;
        font-weight: 600;
        padding-left: 23px;
    }
        ul.navlist li:before {
            background: none;
            content: '\00b7';
            font-size: 4rem;
            color: var(--colAccent);
            line-height: 0.35;
        }

/* tab navigation */
ul.tabNavigation {
    list-style: none;
    margin: 0 0 22px 0;
    padding: 0;
    border-bottom: 1px solid var(--greyLight);
}
ul.tabNavigation li {
    float: left;
    margin: 5px 5px -1px 0;
    padding: 0;
    list-style: none;
}
ul.tabNavigation li a {
    display: block;
    padding: 8px 12px 7px;
    background-color: var(--colSub);
    color: var(--colWhite);
    border: 1px solid var(--colSub);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8125rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
}
ul.tabNavigation li a:hover {
    background-color: var(--colMain);
    border: 1px solid var(--colMain);
    border-bottom: 1px solid var(--colMain);
}
ul.tabNavigation li a.selected {
    background-color: var(--colWhite);
    border: 1px solid var(--greyLight);
    border-bottom: 1px solid var(--colWhite);
    color: var(--colMain);
}


/* blog tags */
ul.tags {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}
ul.tags li {
    margin: 0;
    padding: 0;
}
ul.tags li a {
    display: block;
    float: left;
    margin: 0 8px 8px 0;
    padding: 5px 10px;
    background: var(--greyLighter);
    text-align: center;
    color: var(--greyText);
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
ul.tags li a:hover {
    background: var(--greyDark);
    color: var(--colWhite);
}

ul.searchResults {
    padding: 0;
    margin: 0 0 1.25rem;
}
    ul.searchResults li {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: clamp(1rem, 2vw, 1.5rem);
        font-weight: 700;
        line-height: 1.4;
        color: var(--colSub);
        border-bottom: 1px dashed var(--greyLight);
        margin-bottom: 1.25rem;
        padding-bottom: 1.375rem;
    }
    ul.searchResults li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
        ul.searchResults li span.encap {
            display: inline-block;
            margin-top: 0.5rem;
            padding: 0.25rem 0.5rem;
            color: var(--colWhite);
            border-radius: 0.25rem;
            font-size: 0.875rem;
        }
        ul.searchResults li span.current {
            background: var(--colAccent);
        }
        ul.searchResults li span.lapsed {
            background: #c00;
        }

/* #Images================================================== */

#mainContent img, img.scale {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px
}
#mainContent img.insetL, #mainContent img.insetR, img.insetL, img.insetR {
    max-width: 50%;
    box-sizing: border-box; /*-webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);	-moz-box-shadow: 0 0 2px 0 rgba(0,0,0,0.3);	box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);*/
}
#mainContent img.insetL, img.insetL {
    float: left;
    margin: 0 30px 20px 0;
}
#mainContent img.insetR, img.insetR {
    float: right;
    margin: 0 0 20px 30px;
}
#mainContent img.insetL.sm, #mainContent img.insetR.sm, img.insetL.sm, img.insetR.sm {
    max-width: 30%;
}

/* #Buttons================================================== */
.button, button, input[type="submit"], input::file-selector-button, input[type="reset"], input[type="button"], .button:visited {
    font-family: var(--titleFont);
    font-size: 1rem;
    text-transform: uppercase;
    background: var(--colMain);
    border: none;
    color: var(--colWhite);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 30px;
    padding: 12px 16px 12px;
    transition: all 0.2s ease-out;
    -webkit-appearance: none;
}
input::file-selector-button {
    margin-right: 10px;
}
input[type="file"] {
    font-family: var(--titleFont);
    font-size: 1rem;
}
    .button:hover, button:hover, input[type="submit"]:hover, input::file-selector-button:hover, input[type="reset"]:hover, input[type="button"]:hover {
        color: var(--colWhite);
        background: var(--colSub);
    }
    .button:active, button:active, input[type="submit"]:active, input::file-selector-button:active, input[type="reset"]:active, input[type="button"]:active {
        background: var(--colSub);
    }
.button.full-width, button.full-width, input[type="submit"].full-width, input[type="file"].full-width, input[type="reset"].full-width, input[type="button"].full-width {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
}

.yes .button, .no .button, .yn .button {
    margin: 20px 0 0;
}
.yes .button, .yes input[type="button"] {
    background: var(--colAccent);
    color: var(--colBlack);
}
.no .button, .no input[type="button"] {
    background: #c00;
}
.yes .button:hover, .yes input[type="button"]:hover {
    background: var(--colAccentAccess);
    color: var(--colWhite);
}
.no .button:hover, .no input[type="button"]:hover {
    background: #600;
}
.matchLabel {
    margin-left: 280px
}

/* Fix for odd Mozilla border & padding issues */
  button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
  
/* #Forms================================================== */

form {
    margin-bottom: 0;
}
    form.panel {
        padding: 19px;
        border: 1px solid var(--greyLight);
        background: var(--greyLighter);
    }
.errorBox {
    padding: 10px;
    border: 1px solid #e50004;
    background: #ffe6e6;
    color: #e50004;
    margin: 0 0 20px 0 !important;
    box-sizing: border-box
}
.successBox {
    padding: 10px;
    border: 1px solid #41672b;
    background: #d3e6c8;
    color: #41672b;
    margin: 0 0 20px 0 !important;
    box-sizing: border-box
}
fieldset {
    margin-bottom: 20px;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea, select, .previewBox {
    font-family: var(--titleFont);
    font-size: 1rem;
    border: 1px solid var(--greyLight);
    padding: 0 10px;
    color: var(--greyText);
    margin: 0 0 10px;
    width: 300px;
    max-width: 100%;
    display: block;
    background: var(--colWhite);
    height: 43px;
    line-height: normal;
    text-overflow: ellipsis !important;
    -webkit-appearance: none;
    box-sizing: border-box;
}
.full-width,
.formatText,
.previewBox {
    width: 100% !important;
}
.previewBox,
.formatText {
    white-space: pre-wrap;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.6);
}
input[type="submit"] {
    -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.7);
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.7);
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.7);
}
/*input.datePicker {	background: var(--colWhite) url('../block-images/sprite.png') no-repeat 22px -41px;	background-size: 500px 500px;}*/
textarea,
.previewBox {
    padding: 10px 10px 0;
    min-height: 236px;
}
label, legend {
    float: left;
    font-size: 0.9375rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 7px;
    margin-bottom: 8px;
    color: var(--colBlack);
    width: 280px;
}
label.autoLabel {
    width: auto;
    margin-right: 12px;
}
select {
    -webkit-appearance: none;
    width: 300px;
    background: var(--colWhite) url('../block-images/select-arrow.gif') center right no-repeat;
    padding: 5px 5px 7px;
    height: 37px;
}
input[type="checkbox"] {
    display: inline;
}
label span, legend span {
    font-weight: normal;
    font-size: 0.8125rem;
    color: var(--greyText);
}
input.error, select.error {
    -webkit-box-shadow: inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
    -moz-box-shadow: inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
    box-shadow: inset 0px 0px 1px 0px rgba(229, 0, 4, 1);
    background-color: var(--greyPale)
}
.checkgroup {
    margin: 0 0 20px 0;
}
.checkgroup ul, .checkgroup ul li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}
.checkgroup ul li {
    float: left;
    width: auto;
    line-height: 10px;
    margin: 0 0 30px 0;
}
.checkgroup ul li label {
    display: inline;
    font-size: 0.875rem !important;
    width: auto;
    margin: 0 30px 0 0;
    padding-left: 0;
}
/* Contour form fixes */
.umbraco-forms-form {
    clear: both;
}
.radiobuttonlist {
    display: block;
    float: left;
    margin-bottom: 10px;
}
.checkboxlist {
    display: inline-block;
}
.checkboxlist input, .radiobuttonlist input {
    display: inline-block;
    margin-right: 10px;
    clear: left;
    vertical-align: middle;
    margin-left: 6px;
    transform: translateY(-2px);
}
.umbraco-forms-label {
    display: inline-block;
    padding-right: 1%;
    width: 100%;
    box-sizing: border-box;
}
.umbraco-forms-page .checkboxlist label, .umbraco-forms-page .radiobuttonlist label {
    float: none;
    display: inline-block;
    clear: right;
    width: auto;
}
.umbraco-forms-field {
    clear: both;
    margin-bottom: 20px;
}
.help-block {
    display: block;
    margin-left: 38% !important;
    font-style: italic;
}
.g-recaptcha {
    width: 62%;
    box-sizing: border-box;
    float: left;
}
input[type="submit"].g-recaptcha {
    width: auto;
}
.umbraco-forms-form input[type="text"], .umbraco-forms-form select, .umbraco-forms-form textarea {
    width: 100%;
}
/* #Tables================================================== */
table {
    width: 100%;
    margin-bottom: 25px;
    border-left: 1px solid var(--greyLight);
}
table th, table td {
    padding: 8px;
    border-right: 1px solid var(--greyLight);
    font-size: 0.8125rem;
    line-height: 1.5;
}
table tr {
    border-bottom: 1px solid var(--greyLight);
    background: var(--colWhite);
}
table tr:nth-child(even) {
    background-color: var(--greyVPale);
}
table.samerows tr:nth-child(even) {
    background-color: var(--colWhite);
}
table th {
    background: var(--greyDark);
    border-right: 1px solid var(--colWhiteSemi);
    color: var(--colWhite);
    text-align: left;
}
    table th.subheading {
        background: var(--colSub);
    }
table th.right {
    text-align: right;
}
table th.center {
    text-align: center;
}
table td {
    border-bottom: 1px solid var(--greyLight);
}
table .button, table input {
    margin: 0
}
table label {
    font-weight: normal;
    width: 100%;
}
/* info grid */
table.infogrid {
    margin-bottom: 25px;
    border-left: 1px solid var(--greyLight);
}
.infogrid th, .infogrid td {
    padding: 8px;
}
.infogrid tr {
    background: var(--colWhite);
}
.infogrid tr.highlightRow/*,
.infogrid tr:hover*/ {
    background: var(--greyPale) !important;
}
tr:nth-child(even) {
    background-color: var(--greyVPale);
}
.infogrid th {
    /*background: #999;*/
    color: var(--colWhite);
    text-align: left;
}
.infogrid th.right {
    text-align: right;
}
.infogrid th.center {
    text-align: center;
}
.infogrid td {
    border-bottom: 1px solid var(--greyLight);
}
.infogrid .button, .infogrid input {
    margin: 0
}
.infogrid label {
    font-weight: normal;
    width: 100%;
}

/* #Misc================================================== */

.neo {
    font-weight: 600 !important;
    font-family: var(--titleFontAlt);
}
.twoCol {
    column-count: 2;
    column-gap: 20px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-12 {
    margin-bottom: 12px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mr-15 {
    margin-right: 15px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.m-0 {
    margin: 0 !important;
}
.flo-l {
    float: left !important;
}
.flo-r {
    float: right !important;
}
.flo-n {
    float: none !important;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.largerText {
    font-size: 1.15em !important;
    line-height: 1.5 !important;
}
.largeText {
    font-size: 1.25em !important;
    line-height: 1.4 !important;
}
.extraLargeText {
    font-size: 1.5em !important;
    line-height: 1.3 !important;
}
.loader {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.5) url('/images/preload.gif') 50% 50% no-repeat;
}
.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.divider {
    margin: 0 10px;
    color: var(--greyMid);
}
::selection {
    background: var(--colSub); /* Safari */ color: var(--colWhite);
}
::-moz-selection {
    background: var(--colSub); /* Firefox */ color: var(--colWhite);
}
.hilight {
    color: var(--colSub) !important;
}
.lolight {
    color: var(--greyMid);
    font-size: 0.8125rem;
}
.greyedOut {
    color: var(--greyMid);
}
.inverted {
    padding: 5px 13px 5px 15px;
    background: var(--colSubDark);
    color: var(--colWhite) !important;
    letter-spacing: 0.2rem;
    margin-right: 6px;
}
    .purple .inverted,
    .inverted.purple {
        background: var(--colMain);
    }
    .pink .inverted,
    .inverted.pink {
        background: var(--colSub);
    }
.date {
    font-size: 0.8125rem;
    line-height: 1.4375rem;
    color: var(--greyMid);
}
.disclaimer {
    font-size: 0.8125rem;
    line-height: 1.4375rem;
    color: var(--greyText);
}
.purple {
    color: var(--colMain);
}
.pink {
    color: var(--colSub);
}
.pinkDark {
    color: var(--colSubDark);
}
/*  Cookie law  */
#cookie-law {
    max-width: 100%;
    background: var(--colSub);
    padding: 20px 0;
    position: relative;
    z-index: 100;
}
#cookie-law p {
    padding: 0;
    font-size: 0.875rem;
    color: var(--colWhite);
    margin: 0;
}
#cookie-law a {
    color: var(--colWhite);
    text-decoration: underline;
}
#cookie-law a.close-cookie-banner {
    position: absolute;
    right: 10px;
    top: 10px;
    margin-top: -10px;
}

/* Full screen backdrop */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* Dimmed background */
    z-index: 9999; /* Sit on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: sans-serif;
}

.spinner-container {
    text-align: center;
}

/* CSS Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--colWhite);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 15px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.mob-only, .mob-only-p, .mob-only-all, .mob-only-inline, .hidden {
    display: none;
}