
* {
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-kerning: auto;
    color-scheme: light dark;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
}


@supports (font: -apple-system-body) {
    html {
        font: -apple-system-body;
        line-height: 1.4;
    }
}


.h2twist {
    font: -apple-system-body;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: calc(25px + 1vw);
    text-align: center;
}

.h1twist {
    font: -apple-system-body;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: calc(45px + 1.1vw);
    text-align: center;
    margin-bottom: 10pt;
}

.twistBody {
    font: -apple-system-body;
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(15px + 1vw);
    line-height: calc(1.1em + 0.5vw);
    padding: 1em;
    margin: 0 auto;
    text-align: center;
}

.policyBody {
    font: -apple-system-body;
    font-family: Helvetica, Arial, sans-serif;
    font-size: calc(14px + 1vw);
    line-height: calc(1.1em + 0.5vw);
    padding: 1em;
    margin: 0 auto;
}


hr {
    border: 1.0pt solid;
    opacity: 0.5;
}

.contain {
    /* Image is scaled to fit within the container. */
    /* Aspect ratio IS maintained */
    object-fit: contain;
    padding: 0pt;
    vertical-align: top;
}


.image-cell {
    vertical-align: middle; / Aligns content to the middle of the cell /
    text-align: center; / Centers the content horizontally /
    height: 100%; / Ensures the cell takes full height /
    left: 0;
    right: 0;
    margin: 0 auto;
}

.image-cell-top {
    vertical-align: top; / Aligns content to the top of the cell /
    text-align: center; / Centers the content horizontally /
    height: 100%; / Ensures the cell takes full height /
    left: 0;
    right: 0;
    margin: 0 auto;
}

.image-cell img {
    max-width: 100%; / Ensures the image is responsive /
    height: auto; / Maintains aspect ratio /
}


.responsive-image {
    width: 100%;
    height: auto;
}

/* Toolbar Styles */
#navcontainer {
    height: 46px;
    background: url(MenuBackground.png) repeat-x;
    position: relative;
    z-index: 99;
}

#navcontainer #current {
    color: #fff;
}

#navcontainer .currentAncestor {
    color: #fff;
}

/* Parent - Level 0 */
#navcontainer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    display: flex;
    justify-content: center;
}

#navcontainer li {
    position: relative;
    display: inline;
    float: left;
    vertical-align: middle;
}

#navcontainer a {
    display: block;
    text-shadow: 0px -1px 0px #000;
    color: #b3b3b3;
    font-weight: bold;
    text-decoration: none;
    float: left;
    padding: 0em 0em 0;
    height: 46px;
    line-height: 46px; / Set line-height to match the height for vertical centering /
    vertical-align: middle;
}

#navcontainer a:hover {
    color: #fff;
}

/* Fix IE. Hide from IE Mac \*/
* html #navcontainer ul li {
    float: left;
    height: 1%;
}
* html #navcontainer ul li a {
    height: 46px;
}
/* End */

