html {
    /* stops vertical scroll bar shifting page  */
    width: 100vw;
    margin-right: 0;
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    background: white;
    color: black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    overflow-x: hidden; /* needed because hiding the menu on the right side is not perfect,  */
    height:100vh;
}
.w150{
    width:150px;
}
.h150{
    height:150px;
}
.p {
    padding: 10px;
    text-align: left;
    color: black;
}
.bbg{
    border-bottom:1px solid gainsboro;
}
.pp10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.bb1white{
    border-bottom:1px solid white;
}
.brad5{
    border-radius:5px;
}
.pp50 {
    padding: 50px;
}
.mr10 {
    margin-right: 10px;
}
.spp {
    padding-bottom: 20px;
    font-size: 75%;
    color: gainsboro;
}
.contain {
    background-color: white;
}
.i4 {
    border-left: 1px solid white;
}

.uu1 {
    min-width: 400px;
    border-bottom: 1px solid gainsboro;
}

.uu2 {
    min-width: 300px;
    border-bottom: 1px solid gainsboro;
}

.uu3 {
    min-width: 300px;
    border-bottom: 1px solid gainsboro;
}

.ud0 {
    min-width: 50px;
}

.ud1 {
    min-width: 400px;
}

.ud2 {
    min-width: 300px;
}

.ud3 {
    min-width: 100px;
}

.ud4 {
    min-width: 300px;
}

.ud5 {
    min-width: 300px;
}
.likeatextbox {
    width: 100%;
    height: 40px;
    outline:none;
    border: 1px solid gainsboro;
    border-radius: 5px;
    background-color: whitesmoke;
}
.desktop {
    /* stops grid oerwriting frame. with css-grid we should be able to fix this  */
    margin-left: 71px !important;
}
.fcbh {
    font-weight: 600;
}
.b1 {
    width: 60px;
}
.b2 {
    width: 100%;
    word-wrap: break-word;
    border-bottom: 1px solid whitesmoke;
}
.b3 {
    width: 10px;
}
.b4 {
    width: 50px;
}
.in1 {
    padding-left: 20px;
}
.in2 {
    padding-left: 40px;
}
.in3 {
    padding-left: 60px;
}
.in4 {
    padding-left: 80px;
}
.in5 {
    padding-left: 100px;
}
brandies {
    margin-left: 100px;
    margin-top: -28px;
    display: block;
   color:white;
}
brandy {
    margin-left: 50px;
    margin-top: -52px;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    background: white;
    font-size: 14px;
    line-height: 1.7em;
}
    brandy img {
        display: inline-block;
        max-width: 100%;
        max-height: 100%;
        border-radius: 50%;
        object-fit:scale-down;
    }
/* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 2px;
    font-size: 16px;
    border: none;
    width:200px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}
a.menua {
    text-decoration: none;
    color: #232323;
    transition: color 0.3s ease;
}
    a.menua:hover {
        color: cornflowerblue;
    }
#menuToggle {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 12000;
    background-color: black;
    -webkit-user-select: none;
    user-select: none;
}
    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0; /* hide this */
        z-index: 2; /* and place it over the hamburger */
        -webkit-touch-callout: none;
    }
    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #cdcdcd;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), opacity 0.55s ease;
    }
        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }
        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 100%;
        }
    /*
* Transform all the slices of hamburger
* into a crossmark.
*/
    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }
        /*
* But let's hide the middle one.
*/
        #menuToggle input:checked ~ span:nth-last-child(3) {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }
        /*
* last one goes in the other direction
*/
        #menuToggle input:checked ~ span:nth-last-child(2) {
            opacity: 1;
            transform: rotate(-45deg) translate(0, -1px);
        }
/*
* Make this absolute positioned
* at the top left of the screen
*/
#menu {
    position: absolute;
    width: 400px;
    margin: -100px 0 0 0;
    padding: 50px;
    padding-top: 125px;
    right: -100px;
    background: black;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
    #menu li {
        color: white;
    }
/*
* And let's fade it in from the left
*/
#menuToggle input:checked ~ ul {
    transform: scale(1.0, 1.0);
    opacity: 1;
}
.padt {
    padding-top: 20px;
}
.p22 {
    padding-top: 10px;
    padding-left: 10px;
}
.pall {
    padding: 10px;
}
.ug1 {
    font-size: 50%;
}
.ug2 {
    width: 200px !important;
    position: absolute !important;
    background-color: white;
}
.ug3 {
    min-width: 200px;
    overflow: auto;
}
.k9 {
    padding-right: 15px;
}
.w25{
    width:25px;
}
.dirdy {
    padding-right: 0px;
}
/*
* centralise buttons re spinner hidden
*/
.bs7 {
    margin-left: 25px;
}
.mn1 {
    position: fixed;
    top: 10px;
    right: 10px;
    text-align: left;
    background-color: white;
    margin: 0;
    padding: 0;
    z-index: 12000;
}
.buttgrouping {
    position: fixed;
    top: 0px;
    z-index: 99999;
}
.mboxer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    border: 1px solid black;
    border-radius: 5px;
    background-color: gainsboro;
    padding: 20px;
    transition-delay: 0.8s;
}
.malertcontainer {
    display: block;
    height: 100%;
    background-color: rgba(255,0,0,0.4);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11111111;
}
.malertmessage {
    height: 200px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*  SECTIONS  */
.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}
/*  COLUMN SETUP  */
.colraw {
    display: block;
    float: left;
    margin:0;
}

.col {
    display: block;
    float: left;
    margin: 0 0 1% 1.6%;
}
    .col:first-child, .colraw:first-child {
        margin-left: 0;
    }
.colt {
    display: block;
    float: left;
    margin: 5px 0 0 10px;
}
    .colt:first-child {
        margin-left: 0;
    }
/*  GROUPING  */
.group:before,
.group:after {
    content: "";
    display: table;
}
.group:after {
    clear: both;
}
.group {
    zoom: 1; /* For IE 6/7 */
}
/*  GRID OF FIVE  */
.span_5_of_5 {
    width: 100%;
}
.span_4_of_5 {
    width: 79.68%;
}
.span_3_of_5 {
    width: 59.36%;
}
.span_2_of_5 {
    width: 39.04%;
}
.span_1_of_5 {
    width: 18.72%;
}
.s20 {
    max-width: 20%;
}
.s31 {
    width: 31px;
}
.s56 {
    text-align: left;
}
.grg {
    color: gainsboro;
}
.ncon {
    padding: 20px;
    overflow: auto;
}
.h1 {
    font-weight: 600;
    padding: 10px;
    color: black;
    background: white;
    margin-top: 10px;
    padding-left: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid gainsboro;
}
.h2 {
    font-weight: 600;
}
.h3 {
    font-size: 12px;
    color: black;
    background: white;
    margin-top: 10px;
    padding-left: 10px;
    border-bottom: 1px solid gainsboro;
}
.font50 {
    font-size: 50%;
}
.font80 {
    font-size: 80%;
}
/* page header*/
.ph {
    display: block;
    background: white;
    color: black;
}
/* footer */
.fbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: whitesmoke;
    border-top: 1px solid gainsboro;
    z-index: 1000;
}
/* accordian*/
.rcontainer:after, .rcontainer:before, .rpanel:after, .rpanel:before, .rrow:after, .rrow:before, .rrow-padding:after, .rrow-padding:before, .rhide {
    display: none !important
}
.rshow-block, .rshow {
    display: block !important
}
.rshow-inline-block {
    display: inline-block !important
}
.mt8 {
    height: 100%;
    overflow: auto;
    background-color: gainsboro;
}
.mt9 {
    height: 100%;
    overflow: auto;
    background-color: whitesmoke;
}
.strip4 {
    background-color: yellow;
}
.mh1 {
    cursor: pointer;
}
.ml8 {
    margin-left: 50px;
    border: 1px solid gainsboro;
    padding-bottom: 5px;
}
.fit4 {
    font-size: 90%;
    padding-left: 10px;
    padding-top: 5px;
}
.fit5 {
    font-size: 90%;
    padding-left: 5px;
    padding-bottom: 5px;
}
.file5 {
    width: 30px;
}
.midbox {
    border: 1px solid gainsboro;
}
.lfix {
    position: fixed;
    overflow-y: visible;
    padding-top: 15px;
}
.lf1 {
    font-size: 90%;
    text-align: left;
    padding-left: 45px;
}
/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
    .col {
        margin: 0 0 1% 0%;
    }
    .colt {
        margin: 5px 0 0 0
    }
    .s20 {
        max-width: 100%;
    }
    .mobflex {
        padding: 5px;
    }
    .bh8 {
        font-size: 100% !important;
    }
    .ncon {
        padding: 1px;
    }
    .fit4 {
        font-size: 100%;
    }
    .lfix {
        position: static;
    }
    .span_1_of_5, .span_2_of_5, .span_3_of_5, .span_4_of_5, .span_5_of_5 {
        width: 100%;
    }
    .menucontainer {
        display: none;
    }
    .geye {
        margin-top: -100px !important;
        margin-left: 0 !important;
        text-align: right;
        margin-right: 10px
    }
    .left {
        position: static;
    }
    .mg {
        margin-left: 90% !important;
    }
    .mg1 {
        margin-left: 90% !important;
    }
    #map {
        height: 100vh;
        width: 90%;
    }
    div#chart_div, div#chart_div2, div#chart_div3 {
        zoom: 0.8;
    }
}
/*tooltips*/
.tooltip {
    position: relative;
    display: inline-block;
}
.tooltip-image {
    top: 2px;
    position: relative;
    padding-left: 5px
}
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    right: 50%;
    opacity: 0;
    transition: opacity .3s
}
    .tooltip .tooltiptext::after {
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: #555 transparent transparent
    }
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1
}
beer {
    margin-left: 7px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}
    beer img {
        display: inline-block;
        width: 30px;
        height: auto;
        position: absolute;
        border-radius: 50%;
        margin-top: 15px;
    }
.bdiv, .gbl, .gumess {
    word-break: break-word;
    text-align: left
}
.slogo {
    max-height: 100px;
}
.geye {
    margin-top: 12px;
    margin-left: -60px;
}
.button {
    width: 100% !important;
}
.lk1 {
    padding-left: 6px;
}
.rh5 {
    text-align: right;
}
.circl {
    position: relative;
    display: inline-block;
    margin: 1px;
    width: 150px;
    height: 0;
    padding: 75px 0;
    font-size: 25px;
    line-height: 10px;
    border-radius: 50%;
    background: #38a9e4;
    color: white;
    text-align: center;
}
    .circl span {
        position: absolute;
        display: table-cell;
        vertical-align: middle;
        height: 0;
        width: 150px;
        margin-top: -35px;
        text-align: center;
        padding: 0 15px;
    }
.circlb {
    border: solid black 2px;
}
.sliderbut {
    border: 1px solid gainsboro;
    border-radius: 5px;
    height: 25px;
    outline-color: none;
    outline: 0;
}
.tabbut {
    border: 1px solid gainsboro;
    border-radius: 5px;
    height: 25px;
    outline-color: none;
    outline: 0;
    background: black;
    color: white;
    width: 100px;
}
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px dotted gainsboro;
    border-radius: 7px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
/*Also */
.btn-success {
    border: 1px solid #c5dbec;
    background: white;
    font-weight: bold;
    color: #2e6e9e;
}
.fileinput-button {
    position: relative;
    overflow: hidden;
}
    .fileinput-button input {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        opacity: 0;
        -ms-filter: "alpha(opacity=0)";
        font-size: 200px;
        direction: ltr;
        cursor: pointer;
    }
.thumb {
    height: 80px;
    width: 100px;
    border: 1px solid gainsboro;
    border-radius: 3px;
}
ul.thumb-images li {
    width: 120px;
    float: left;
    display: inline-block;
    vertical-align: top;
    height: 120px;
}
.img-wrap {
    position: relative;
    display: inline-block;
    font-size: 0;
}
    .img-wrap .close {
        position: absolute;
        top: 2px;
        right: 2px;
        z-index: 100;
        background-color: #d0e5f5;
        color: #000;
        font-weight: bolder;
        cursor: pointer;
        opacity: 0.5;
        font-size: 23px;
        line-height: 10px;
        border-radius: 50%;
    }
    .img-wrap:hover .close {
        opacity: 1;
        background-color: darkgray;
        color: white;
    }
.FileNameCaptionStyle {
    font-size: 12px;
    word-break: break-all;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 10px;
}
.slidery {
    margin-left: 5px;
}
.sits {
    margin-top: 9px;
    margin-left: 3px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid darkgray;
    color: black;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    padding-top: 6px;
    color: white;
}
.cits {
    position: fixed;
    margin-top: 9px;
    margin-left: 9px;
    z-index: 9999999999;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: lightpink;
    color: black;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    padding-top: 7px;
}
.nits {
    margin-top: 9px;
    margin-left: 9px;
    z-index: 9999999999;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: lightpink;
    color: black;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    padding-top: 7px;
}
.grits {
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: forestgreen;
    color: white;
    display: inline-block;
    text-align: center;
    font-size: 8px;
    padding-top: 3px;
    margin-top: 3px;
}

.gritsv {
    position: absolute;
    margin-top: 3px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: inline-block;
    text-align: center;
    font-size: 8px;
    padding-top: 3px;
    margin-left: 20px;
}
.gits {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: forestgreen;
    color: white;
    display: inline-block;
    text-align: center;
    font-size: 8px;
    padding-top: 3px;
    margin-left: -10px;
    margin-top: 3px;
}
.gitsv {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: black;
    color: white;
    display: inline-block;
    text-align: center;
    font-size: 8px;
    padding-top: 3px;
    margin-left: -20px;
}
.bits {
    position: absolute;
}
.dits, .bits {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    color: white;
    display: inline-block;
    text-align: center;
    font-size: 8px;
    padding-top: 2px;
}
.dits {
    background-color: red;
}
.bits {
    background-color: royalblue;
}
.mid8 {
    bottom: 0px;
    height: 100%;
    border-left: 1px solid gainsboro;
    background-color: white;
    color: black;
    padding-right: 5px;
    padding-left: 5px;
}
.w80 {
    width: 80%;
}
.fixhead {
    position: fixed;
    height: 53px;
    background-color: black;
    top: 0;
    padding-left: 4px;
    text-align: left;
    margin: 0;
    padding: 0;
    z-index: 10000;
}
/* Style default summary details */
/* Style default summary details */
details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}
@keyframes sweep {
    0% {
        opacity: 0;
        margin-left: -10px
    }
    100% {
        opacity: 1;
        margin-left: 0px
    }
}
summary {
    font-weight: bold;
    list-style-image: url(../images/right-arrow.svg);
    outline: none;
    background: whitesmoke;
    border-radius: 3px;
}
    summary:focus {
        list-style-image: url(../images/down-arrow.svg);
    }
    summary::-webkit-details-marker {
        background: url(../images/right-arrow.svg);
        color: transparent;
    }
    summary:focus::-webkit-details-marker {
        background: url(../images/down-arrow.svg);
    }
/* Style the buttons that are used to open and close an accordion panel */
.accordion {
    overflow-wrap: break-word;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    height: 60px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    border-bottom: 1px solid gainsboro;
    display: inline;
}
    .accordion:after {
        content: "  \25B7";
    }
.active:after {
    content: "  \25BD";
}
legend {
    text-align: center;
}
fieldset {
    border: 1px solid gainsboro;
    background-color: whitesmoke;
    border-radius: 5px;
}
.bgw {
    background-color: white;
}
.bgws {
    background-color: whitesmoke;
}
.cent8 {
    text-align: center;
}
.accordionx {
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
}
    .accordionx:hover {
        background: gainsboro;
    }
    .accordionx:after {
        content: "  \25B7";
        font-size: 70%;
    }
.activex:after {
    content: "  \25BD";
    font-size: 70%;
}
.accordiono {
    cursor: pointer;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
}
    .accordiono:after {
        content: "  \25B7";
        font-size: 70%;
    }
.activeo:after {
    content: "  \25BD"
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover, .accordion2:hover {
    background-color: #ccc;
}
/* Style the accordion panel. apanel hidden by default - opanel open by default */
.apanel {
    display: none;
    overflow: hidden;
}
.opanel {
    display: block;
    overflow: hidden;
}
/*flex containers*/
.flex-container-clean {
    display: flex;
    width: 100%;
}
    .flex-container-clean > div {
        width: 100%;
    }
.flex-container-block {
    display: flex;
    overflow: auto;
}
    .flex-container-block > div {
        text-align: left;
    }
.flex-container-raw {
    display: flex;
    width: 100%;
}
    .flex-container-raw > div {
        margin: 1px;
        width: 100%;
    }
.flex-container {
    display: flex;
    width: 100%;
    text-align: right;
    border-bottom: solid 1px gainsboro;
}
    .flex-container > div {
        background-color: white;
        width: 100%;
    }
.flexleft {
    text-align: left;
    font-weight: 600;
    padding-left: 10px;
}
.zflex-container {
    display: flex;
    width: 100%;
    text-align: right;
    border-bottom: solid 1px black;
}
    .zflex-container > div {
        margin: 1px;
        padding: 1px;
        width: 100%;
    }
.yoyo1 {
    background-color: gainsboro;
    color: black;
    padding: 3px;
}
.yoyo2 {
    background-color: white;
    color: black;
    padding: 3px;
    font-weight: 700;
}
.iced {
    margin-top: 20px;
}
.r1 {
    text-align: center;
}
.r2 {
    text-align: right;
}
.r3 {
    text-align: left;
}
.dbg {
    padding: 10px;
    border-bottom: 1px solid gainsboro;
}
.db7 {
    padding-left: 5px;
}
.db8 {
    padding-top: 10px;
}
.db88 {
    margin-bottom: 5px;
}
.gb88 {
    padding-left:5px;
    padding-top:7px;
    color:orangered;
}
.db9 {
    padding-top: 10px;
    border-bottom: 1px solid gainsboro;
    border-left: 1px solid gainsboro;
    border-right: 1px solid gainsboro;
}
.regtextbox {
    height: 25px;
    border: 1px solid gainsboro;
    border-radius: 5px;
    outline: none;
}
.gtextbox {
    padding: 15px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    outline: none;
}
.gtextboxlower {
    text-transform: lowercase;
}
.mb1 {
    padding-left: 8px;
    display: block;
}
    .mb1:hover {
        background: #bd1220;
        font: white;
    }
.ggbutton, ggbuttonx, lbutton {
    padding: 15px 3px;
    margin: 0px 0px 15px 0px;
    outline: none;
}
.ggbuttonslim {
    padding: 5px 5px;
    margin: 0px 0px 3px 0px;
}
.lbutton {
    border: 1px solid white;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    padding: 3px 10px;
    border-radius: 25px;
}
.ggbutton, .ggbuttonx, .ggbuttonslim {
    border: 1px solid black;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: black;
    cursor: pointer;
    padding: 3px 10px;
    border-radius: 25px;
}
    .ggbutton:hover, .ggbuttonslim:hover {
        cursor: pointer;
        background-color: gainsboro;
        color: black;
    }
.boxr {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19);
    padding: 5px;
    margin-bottom: 10px;
}
#map {
    height: 100vh;
    width: 99%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)
}
* {
    box-sizing: border-box;
}
a.whitel {
    color: white;
    text-decoration: none;
}
    a.whitel:hover {
        text-decoration: none;
        color: gainsboro;
    }
.figg {
    margin-top: 0;
    font-size: 50%;
    color: gainsboro;
}
a.ikon {
    color: white;
    text-decoration: none;
}
    a.ikon:hover {
        text-decoration: none;
        color: gainsboro;
    }
ikon:active {
    transition: color 0.3s ease-in, background-color 0.3s ease-in, border-color 0.3s ease-in;
}
a.lselect {
    color: orange;
    text-decoration: none;
    background: white;
}
a.narr {
    color: black;
    text-decoration: none;
    background: white;
}
    a.narr:hover {
        background: white;
        text-decoration: none;
        color: darkslategray;
    }
a.normall {
    color: darkblue;
    text-decoration: none;
    background: white;
}
    a.normall:hover {
        background: white;
    }
a.normaln {
    color: darkblue;
    text-decoration: underline;
    background: white;
}
    a.normaln:hover {
        background: white;
        color: black;
        text-decoration: underline;
        background: white;
    }
a.normala {
    color: white;
    text-decoration: none;
    display: block;
}
    a.normala:hover {
        color: black;
        text-decoration: underline;
        background: white;
    }
a.imagea {
    color: #bd1220;
    display: inherit;
    text-decoration: none;
}
    a.imagea:hover {
        color: black;
        text-decoration: none;
        background: transparent;
    }
a {
    color: black;
    text-decoration: none;
}
    a:hover {
        color: darkgray;
    }
/* Style the side navigation */
.sidenav {
    height: 100%;
    width: 150px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
}
    /* Side navigation links */
    .sidenav a {
        color: white;
        padding: 4px;
        text-decoration: none;
        display: block;
    }
        /* Change color on hover */
        .sidenav a:hover {
            background-color: #ddd;
            color: black;
        }
/* Style the content */
.content {
    margin-left: 150px;
    padding-left: 20px;
    height: 600px;
}
.xfootcol {
    text-align: center;
    position: fixed;
    width: 100%;
    height: 20px;
    bottom: 0;
    background-color: #1c4587;
    color: white;
}
.hbut {
    display: inline-block;
    width: 120px;
    padding: 8px;
    color: #fff;
    background: black;
    border: 1px solid #fff;
    text-align: center;
    outline: none;
    text-decoration: none;
}
.menuheadcol {
    color: white;
    background-color: black;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)
}
.titleheadcol {
    color: black;
    background-color: gainsboro;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2),0 6px 20px 0 rgba(0,0,0,.19)
}
.menuhead {
    padding: 9px;
    display: block;
    margin-bottom: 1px;
    text-transform: uppercase;
}
.menucontainer {
    padding-bottom: 45px;
    background-color: white;
}
.hbut:hover,
.hbut:active {
    background-color: red;
    border-color: red;
    color: #fff;
    transition: color 0.3s ease-in, background-color 0.3s ease-in, border-color 0.3s ease-in;
}
.radlab {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid gainsboro;
    font-weight: 400;
}
input[type="radio"] {
    display: none;
}
    input[type="radio"]:checked + label {
        font-weight: bold;
        background-color: gainsboro;
        width: 100%;
    }
input[type=text] {
    width: 80%;
}
    input[type=text]:focus {
        width: 90%;
    }
textarea {
    outline: none;
    resize: none;
    width: 100%;
    border: 1px solid gainsboro;
    border-radius: 5px;
    background-color: whitesmoke;
    height: 100%;
}
.tah {
    height: 200px;
}
.itsme {
    background-color: darkorange;
    color: white;
    border-radius: 7px;
}
.loghed {
    padding-left: 10px;
}
.lo88 {
    padding-left: 20px;
}
.menhed {
    font-weight: 500;
    text-align: center;
}
@media print {
    .col {
        margin: 1% 0 1% 0%;
    }
    .colt {
        margin: 5px 0 0 0
    }
    .s20 {
        max-width: 100%;
    }
    .s {
    }
    .ncon {
        padding: 1px;
    }
    .lfix {
        position: static;
    }
    .span_1_of_5, .span_2_of_5, .span_3_of_5, .span_4_of_5, .span_5_of_5 {
        width: 100%;
    }
    .fixhead, .mn1, .noprint {
        display: none;
    }
    .col {
        margin: 0 0 1% 0%;
    }
    menutop, .xfootcol {
        display: none;
    }
    footer {
        page-break-after: always;
    }
}
.lrcol {
    background-color: #1c4587;
    background-color: #1c4587;
    color: white;
    height: 100%;
}
.lrcol2 {
    height: 100%;
    width: 40px;
    padding-top: 60px;
    bottom: 0px;
    background-color: #1c4587;
    position: fixed;
    margin-top: 55px;
}
.lcol {
    background-color: darkslategray;
    color: white;
    height: 100%;
    top: 0;
    bottom: 0;
}
.bh8 {
    padding: 8px;
    padding-left: 20px;
    word-wrap: break-word;
    font-size: 70%;
}
.bd8 {
    padding-bottom: 35px;
}
.bt8 {
    word-wrap: break-word;
}
.bti8 {
    max-width: 100%;
    width: 125%;
}
.bth1 {
    font-weight: 500;
    padding: 15px;
    padding-top: 30px;
}
.btsh1 {
    color: darkgray;
}
.comboxy {
    padding-top: 25px;
}
.cap {
    text-align: center;
    font-size: 80%;
    color: darkgray;
    padding-bottom: 15px;
}
.lefti {
    text-align: left;
}
.flexy {
    padding-top: 15px;
}
.rd8 {
    font-size: 80%;
    color: darkgray;
}
.smallprint {
    font-size: 60%;
    color: darkgray;
    padding-top: 30px;
}
h3 {
    font-weight: 800;
}
.fixl {
    position: relative;
    overflow: auto;
    word-wrap: break-word;
}
@media only screen and (max-width: 480px) {
    body, span, div, a, p, textarea, input {
        font-size: calc(14px + (26 - 14) * ((100vw - 300px) / (1600 - 300)));
        line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1600 - 300)));
    }
    .fixl {
        position: relative;
        width: 100%;
    }
    .desktop {
        margin-left: 0px !important;
    }
    .mainframe {
        display: none !important;
    }
    .rh5, .r2 {
        text-align: center;
        border-bottom:1px solid white;
        font-weight:600;
    }
    .loghed, .r3, .tac{
        text-align:center;
    }
    .tal{
        text-align:left;
    }
    .sdate{
        font-size:70% !important;
    }
    .flex-container-raw {
        display: block !important;
        text-align: center;
    }
        .flex-container-raw > div {
            display: block;
        }
    .flex-mobile {
        display: block;
        padding-left: 30px;
        width: 100%;
        text-align: right;
        border-bottom: solid 1px gainsboro;
    }
        .flex-mobile > div {
            background-color: white;
            width: 100%;
            padding-left: 30px;
            width: 100%;
            text-align: center;
        }
    lcol {
        background-color: darkslategray;
        color: white;
        height: 100%;
        top: 0;
        bottom: 0;
    }
}
