﻿html, body {
    height: 100%;
}

/*body {
    margin: 0px auto;
    margin: 0 auto;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 125%;
    color: #000;
    -webkit-text-size-adjust: 100%;
}*/
.topbody {
    margin: 0px auto;
    margin: 0 auto;
    font-family: Lato, sans-serif !important;
    font-size: 16px !important;
    line-height: 125% !important;
    color: #000;
    -webkit-text-size-adjust: 100% !important;
}


    body * {
        box-sizing: border-box;
    }

h1, h2, h3, h4, h5, h6 {
    margin-top: 35px;
    margin-bottom: 20px;
}

h1 {
    font-size: 175%;
    line-height: 150%;
}

h2 {
    font-size: 143.75%;
    line-height: 140%;
}

h3 {
    font-size: 125%;
    line-height: 130%;
}

h4 {
    font-size: 100%;
    line-height: 120%;
}

h5 {
    font-size: 87.5%;
    line-height: 110%;
}

h6 {
    font-size: 75%;
    line-height: 100%;
}

a {
    /*color: #0072ca;*/
    transition: all 0.25s;
    text-decoration: none;
}

    a:visited {
        text-decoration: none;
        /*color: #9900CC;*/
    }

    a:hover {
       /* color: #0163af;*/
        transition: all 0.25s;
    }

.content a {
    padding-bottom: 1px;
    margin-bottom: -1px;
    border-bottom: 1px solid transparent;
}

    .content a:hover {
        border-bottom: 1px solid #0163af;
    }

/*hr {
    background-color: #0072ca;
    border: 0;
    height: 2px;
    margin: 20px 0 20px;
}*/

/*ul, ol {
    padding: 0;
    margin: 0;
}
*/
.content ul, .content ol {
    padding: 0 0 0 30px;
    margin: 0 0 30px;
    line-height: 160%;
}

    .content ul > li, .content ol > li {
        margin-top: 5px;
        margin-bottom: 10px;
    }

img {
    display: block;
}

/*table {
    table-layout: fixed;
    border-collapse: collapse;
}*/

    table tr {
    }

       /* table tr td {
            border: 1px solid #d9d9d9;
            background-color: transparent;
            padding: 20px 20px;
            line-height: 160%;
        }*/

      /*  table tr th {
            border: 1px solid #d9d9d9;
            background-color: #f3f3f3;
            padding: 20px 20px;
            line-height: 160%;
        }*/

.content table {
    margin-bottom: 20px;
}

.form-grp {
    margin-bottom: 15px;
}

    .form-grp > * {
        width: 98%;
    }

    .form-grp.two-col {
    }

        .form-grp.two-col > * {
            width: 48%;
        }

            .form-grp.two-col > *:first-child {
                margin-right: 10px;
            }

/*input[type="text"], input[type="search"],
textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border: 1px solid #bababa;
    padding: 15px 15px;
    border-radius: 5px;
    font-family: "Lato", sans-serif;
    font-size: 100%;
}*/

input[type="search"] {
    border-radius: 0px;
}

/*select {
    padding: 14px 50px 14px 15px;
    background-image: url("../image/select-down.png");
    background-position: 95% center;
    background-repeat: no-repeat;
}*/

textarea {
    resize: vertical;
    /*min-height: 200px;*/
}

/*a.btn,
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    font-weight: 700;
    display: inline-block;
    border: 2px solid #0072ca;
    padding: 15px 50px;
    transition: all 0.25s;
    background-color: #fff;
    font-family: "Lato", sans-serif;
    color: #0072ca;
}*/

   /* a.btn:hover,
    input[type="button"]:hover,
    input[type="submit"]:hover {
        background-color: #0072ca;
        color: #fff;
        transition: all 0.25s;
        border: 2px solid #0072ca;
    }*/

iframe {
    max-width: 100%;
    margin-bottom: 20px;
    min-height: 300px;
}

.radio-grp {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .radio-grp input[type="radio"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.radiobtn {
    position: absolute;
    top: 4px;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #bababa;
    border-radius: 50%;
}

.radio-grp:hover input ~ .radiobtn {
    background-color: #ccc;
}

.radio-grp input:checked ~ .radiobtn {
}

.radiobtn:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-grp input:checked ~ .radiobtn:after {
    display: block;
}

.radio-grp .radiobtn:after {
    top: 2px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0072ca;
}

.check-grp {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .check-grp input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #bababa;
}

.check-grp:hover input ~ .checkmark {
    background-color: #ccc;
}

.check-grp input:checked ~ .checkmark {
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-grp input:checked ~ .checkmark:after {
    display: block;
}

.check-grp .checkmark:after {
    left: 3px;
    top: 0px;
    width: 3px;
    height: 7px;
    border: solid #0072ca;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

input[type=text]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=text]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration,
nput[type="text"]::-webkit-search-decoration,
input[type="text"]::-webkit-search-cancel-button,
input[type="text"]::-webkit-search-results-button,
input[type="text"]::-webkit-search-results-decoration {
    display: none;
}

input[type="search"]::-ms-clear,
input[type="text"]::-ms-clear {
    display: none;
}

.scrollWrap {
    position: fixed;
    bottom: 25px;
    left: 0;
    max-width: 1440px;
    margin: auto;
    right: 0;
    padding: 0 80px;
    z-index: 10;
    pointer-events: none;
    width: 100%;
}

.scrollBtn {
    pointer-events: all;
    width: 40px;
    padding: 8px;
    text-align: center;
    background-color: #ededed;
    border: 0px none;
    left: 5%;
    color: #717171;
    font-size: 12px;
    line-height: 95%;
    margin: auto;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 1px;
    opacity: 0;
}

    .scrollBtn:hover {
        background-color: #fff;
        color: #717171;
        transition: all 0.25s;
    }

    .scrollBtn:before {
        content: "";
        content: "";
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #717171;
        display: inline-block;
        margin: auto auto 2px;
        transition: all 0.25s;
    }

    .scrollBtn:hover:before {
        border-bottom: 7px solid #717171;
        transition: all 0.25s;
    }


/** Image initial width ***/
img.wInit {
    width: initial !important;
}
/** responsive horizontal scrolling ***/
.resCont {
    width: 100%;
    overflow: hidden;
}

    .resCont .cnt {
        overflow: auto;
    }

/*for scaling 110% and above*/
/* @media (-webkit-min-device-pixel-ratio: 1.1) { */
/* body { font-size: 12px; } */
/* h1, h2, h3, h4, h5, h6 { margin-top: 24px; margin-bottom: 14px; } */

/* .content ul, .content ol { padding: 0 0 0 14px; margin: 0; } */
/* .content ul > li, .content ol > li { margin-top: 4px; margin-bottom: 7px; } */

/* table tr td { padding: 4px 7px; } */
/* table tr th { padding: 4px 7px; } */

/* .form-grp { margin-bottom: 10px; } */
/* .form-grp.two-col > *:first-child { margin-right: 7px; } */

/* input[type="text"], */
/* textarea, select { padding: 10px 10px; background-color: #fff; } */
/* select { padding: 10px 34px 10px 10px; } */
/* textarea { min-height: 134px; } */

/* a.btn, */
/* input[type="button"], */
/* input[type="submit"] { padding: 10px 34px; } */

/* .radio-grp { padding-left: 14px; margin-bottom: 8px; } */
/* .radiobtn { top: 3px; height: 9px; width: 9px; } */
/* .radio-grp .radiobtn:after { top: 2px; left: 2px; width: 5px; height: 5px; } */

/* .check-grp { padding-left: 14px; margin-bottom: 8px; } */
/* .checkmark { top: 2px; height: 9px; width: 9px; } */
/* .check-grp .checkmark:after { left: 2px; width: 2px; height: 5px; } */
/* } */

/* @media (-webkit-min-device-pixel-ratio: 2) { */
/* body { font-size: 9px; } */
/* h1, h2, h3, h4, h5, h6 { margin-top: 18px; margin-bottom: 10px; } */

/* .content ul, .content ol { padding: 0 0 0 10px; margin: 0; } */
/* .content ul > li, .content ol > li { margin-top: 3px; margin-bottom: 5px; } */

/* table tr td { padding: 3px 5px; } */
/* table tr th { padding: 3px 5px; } */

/* .form-grp { margin-bottom: 8px; } */
/* .form-grp.two-col > *:first-child { margin-right: 5px; } */

/* input[type="text"], */
/* textarea, select { padding: 8px 8px; background-color: #fff; } */
/* select { padding: 8px 25px 8px 8px; } */
/* textarea { min-height: 100px; } */

/* a.btn, */
/* input[type="button"], */
/* input[type="submit"] { padding: 8px 25px; } */

/* .radio-grp { padding-left: 10px; margin-bottom: 6px; } */
/* .radiobtn { top: 2px; height: 7px; width: 7px; } */
/* .radio-grp .radiobtn:after { top: 2px; left: 2px; width: 4px; height: 4px; } */

/* .check-grp { padding-left: 10px; margin-bottom: 6px; } */
/* .checkmark { top: 2px; height: 7px; width: 7px; } */
/* .check-grp .checkmark:after { left: 2px; width: 2px; height: 4px; } */
/* } */

/* @media (-webkit-min-device-pixel-ratio: 2.5) { */
/* body { font-size: 7px; } */
/* h1, h2, h3, h4, h5, h6 { margin-top: 14px; margin-bottom: 8px; } */

/* .content ul, .content ol { padding: 0 0 0 8px; margin: 0; } */
/* .content ul > li, .content ol > li { margin-top: 2px; margin-bottom: 4px; } */

/* table tr td { padding: 2px 4px; } */
/* table tr th { padding: 2px 4px; } */

/* .form-grp { margin-bottom: 6px; } */
/* .form-grp.two-col > *:first-child { margin-right: 4px; } */

/* input[type="text"], */
/* textarea, select { padding: 6px 6px; background-color: #fff; } */
/* select { padding: 6px 20px 6px 6px; } */
/* textarea { min-height:80px; } */

/* a.btn, */
/* input[type="button"], */
/* input[type="submit"] { padding: 6px 20px; } */

/* .radio-grp { padding-left: 8px; margin-bottom: 5px; } */
/* .radiobtn { top: 2px; height: 6px; width: 6px; } */
/* .radio-grp .radiobtn:after { top: 2px; left: 2px; width: 3px; height: 3px; } */

/* .check-grp { padding-left: 8px; margin-bottom: 5px; } */
/* .checkmark { top: 2px; height: 6px; width: 6px; } */
/* .check-grp .checkmark:after { left: 2px; width: 2px; height: 3px; } */
/* } */
/* @media (-webkit-min-device-pixel-ratio: 3) { */

/* } */

/*Style for Ask Jamie (VA)*/

a.ask_cheryl_minimized_tab {
    bottom: 30% !important;
    top: 70% !important;
}

textarea.chat_textarea {
    min-height: auto;
}
/*End of Ask Jamie (VA) */


/*screen up till 1152*/
@media screen and (max-width: 1152px) {
}


/*screen up till 1024*/
@media screen and (max-width: 1024px) {
}

/*screen up till 960*/
@media screen and (max-width: 960px) {
}

/*screen up till 854*/
@media screen and (max-width: 854px) {
}
