﻿/* ------------------- Standard Page Styles ----------------------- */
* {
    box-sizing: border-box;
}

.floating-divs::after {
    content: "";
    clear: both;
    display: table;
}

body {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 15px;
    background-color: #333;
    margin: 0px;
    padding: 0px;
    color: #444;
    width: 100%;
}


ul, ol, dl {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 0
}

a img {
    border: none;
}

img {
    border: none;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0px;
}

td {
    vertical-align: top;
}

/* ------------------- Page Layout Divs ----------------------- */



.page-background {
    background-color: #FFFFFF;
}

.header {
    width: 100%;
    margin-bottom: 10px;
    position: fixed;
    top: 0;
    z-index: 99;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    -moz-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
}

.header-offset {
    scroll-margin-top: 50px;
}


.central-page {
    margin: 0px auto auto auto;
    max-width: 1600px;
}


.page-padding {
    width: 100%;
    padding: 0 10px 0 10px;
}


.no-select {
    user-select: none;
}

.title {
    background-color: #A40029;
    width: 10px;
    height: 40px;
    border-radius: .625rem;
}

.title-red {
    background-color: #A40029;
    width: 10px;
    height: 40px;
    border-radius: .625rem;
}

.title-blue {
    background-color: #4E6FB1;
    width: 10px;
    height: 40px;
    border-radius: .625rem;
}

.title-teal {
    background-color: #54A9A9;
    width: 10px;
    height: 40px;
    border-radius: .625rem;
}

.title-dark-grey {
    background-color: #444;
    width: 10px;
    height: 40px;
    border-radius: .625rem;
}

.breaker-red {
    background-color: #A40029;
    width: 100%;
    height: 10px;
    border-radius: .625rem;
}

.breaker-blue {
    background-color: #4E6FB1;
    width: 100%;
    height: 10px;
    border-radius: .625rem;
}

.breaker-teal {
    background-color: #54A9A9;
    width: 100%;
    height: 10px;
    border-radius: .625rem;
}

.breaker-dark-grey {
    background-color: #444;
    width: 100%;
    height: 10px;
    border-radius: .625rem;
}

.footer {
    width: 100%;
}

a.footer-link:link, a.footer-link:visited {
    text-decoration: none;
    color: #FFFFFF;
}

a.footer-link:hover, a.footer-link:active, a.footer-link:focus {
    text-decoration: none;
    color: #A40029;
}


a.link-nounderline:link, a.link-nounderline:visited {
    text-decoration: none;
}

a.link-nounderline:hover, a.link-nounderline:active, a.link-nounderline:focus {
    text-decoration: none;
}

a.link-white-nounderline:link, a.link-white-nounderline:visited {
    text-decoration: none;
    color: #FFFFFF;
}

a.link-white-nounderline:hover, a.link-white-nounderline:active, a.link-white-nounderline:focus {
    text-decoration: none;
    color: #FFFFFF;
}

.roundimage {
    border-radius: 50%;
}

.rounded-corners {
    border-radius: .625rem;
}

.image-100 {
    width: 100%;
    height: auto;
    max-width: 1000px;
}

.image-75 {
    width: 75%;
    height: auto;
    max-width: 750px;
}

.image-50 {
    width: 50%;
    height: auto;
    max-width: 500px;
}



.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*align-items: center;*/
}

.container-left {
    display: flex;
    flex-wrap: wrap;
    /*            justify-content: center;*/
    /*align-items: center;*/
}

.container-left-verticalcenter {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
}

.container-verticalcenter {
    display: flex;
    flex-wrap: wrap;
/*    justify-content: right;*/
    align-items: center;
}

.container-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.container-right-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    align-items: end;
}


.container-spacebetween {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.container-spacebetween-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
/*    align-items: center;*/
}

.container-spacearound-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    /*    align-items: center;*/
}


.item-flat {
    background-color: #F9F8F5;
    border: none;
    border-radius: .625rem;

}

.item-shadow {
    background-color: #F9F8F5;
    box-shadow: 0 2px 0 rgba(90,97,105,.11), 0 4px 8px rgba(90,97,105,.12), 0 10px 10px rgba(90,97,105,.06), 0 7px 70px rgba(90,97,105,.1);
    border: none;
    border-radius: .625rem;

}

.item-white-flat {
    background-color: #FFFFFF;
    border: none;
    border-radius: .625rem;

}

.item-white-shadow {
    background-color: #FFFFFF;
    box-shadow: 0 2px 0 rgba(90,97,105,.11), 0 4px 8px rgba(90,97,105,.12), 0 10px 10px rgba(90,97,105,.06), 0 7px 70px rgba(90,97,105,.1);
    border: none;
    border-radius: .625rem;

}




.item-left {
    width: 100%;
    margin-bottom: 20px;
}

.item-right {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.item-left-reverse {
    width: 100%;
    margin-bottom: 20px;
}

.item-right-reverse {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}


.banner-privacy {
    width: 100%;
    margin-bottom: 40px;
    padding: 50px;
    background-image: url('Graphics/Privacy2.jpg');
    background-position: right;
    background-repeat: no-repeat;
}

.hideonmobile {
    display: none;
}


@media only screen and (min-width: 500px) {
    /* ----- From 500px ----- */

    .hideonmobile {
        display: initial;
    }


}

@media only screen and (min-width: 940px) {


    /* ----- From 940px ----- */


    .item-left {
        width: calc(70% - 10px);
        margin-right: 10px;
        margin-bottom: 0;
    }

    .item-right {
        width: calc(30% - 10px);
        margin-left: 10px;
        margin-bottom: 0;
        text-align: center;
    }

    .item-left-reverse {
        width: calc(30% - 10px);
        margin-left: 10px;
        margin-bottom: 0;
        text-align: center;
    }

    .item-right-reverse {
        width: calc(70% - 10px);
        margin-right: 10px;
        margin-bottom: 0;
    }



    .hideonmobile {
        display: initial;
    }

    .banner-privacy {

        background-image: url('Graphics/Privacy1.jpg');

    }

}

@media only screen and (min-width: 1200px) {


    /* ----- From 1200px ----- */


}







/*Only appears under 500px width*/

.main-div-mobileonly {
    width: 100%;
    padding: 10px;
}

@media only screen and (min-width: 500px) {
    /* For desktop: */

    .main-div-mobileonly {
        width: 100%;
        padding: 10px;
        display: none;
    }
}





/* ------------------- Other Layout Styles ----------------------- */


/* ------------ TopNav ------------------*/

.valign {
    display: flex;
    flex-wrap: wrap;
    /*    justify-content: right;*/
    align-items: center;
}

.topnav {
    overflow: hidden;
    min-width: 100px;

}

    .topnav a {
        float: left;
        display: block;
        text-align: center;
        padding: 14px 16px;
    }



a.topnav-link:link, a.topnav-link:visited {
    text-decoration: none;
    color: #444;
}

a.topnav-link:hover, a.topnav-link:active, a.topnav-link:focus {
    text-decoration: none;
    color: #A40029;
}

/**/

    .topnav .icon {
        display: none;
    }

@media screen and (max-width: 800px) {

    /* Mobile only */

    .valign {
        display: initial;
        flex-wrap: initial;
        /*    justify-content: right;*/
        align-items: initial;
    }

    .topnav a:not(:first-child) {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }

/*    .topnav.responsive {
        position: relative;
    }*/

/*        .topnav.responsive .icon {
            position: absolute;
            right: 0;
            top: 0;
        }
*/
    .topnav.responsive a {
        float: none;
        display: block;
        /*            text-align: left;*/
        text-align: right;
    }
}


/* ------------ TopNav ------------------*/


/* ------------ Accordion ------------------*/

.accordion {
    cursor: pointer;
    /*    padding: 18px;*/
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
}

.accordion-open {
    cursor: pointer;
    /*    padding: 18px;*/
    width: 100%;
    border: none;
    outline: none;
    transition: 0.4s;
}

    .active, .accordion:hover, .accordion-open:hover {
        text-decoration: underline;
    }

.panel {
    /*    padding: 0 18px;*/
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* ------------ Accordion ------------------*/


/* ------------ Alert ------------------*/

.alert-wrapper {
    position: fixed;
    z-index: 98;
    top: 10px;
    left: 0px;
    width: 100%;
}

.alert-red {
    background-color: #f44336;
    color: #FFF;
}

.alert-green {
    background-color: #178A00;
    color: #FFF;
}

.alert {
    margin: 0px auto auto auto;
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    opacity: 0.9;
}

@media only screen and (min-width: 500px) {
    /* For desktop: */

    .alert {
        margin: 0px auto auto auto;
        width: 500px;
        padding: 20px;
        border-radius: 10px;
    }
}


.alert-closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

    .alert-closebtn:hover {
        color: black;
    }

/* ------------ Alert ------------------*/



/* --------- Link to top ----------------- */

#LinkToTop, #LinkToTop:link, #LinkToTop:visited {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    opacity: 0.4;
}

    #LinkToTop:hover, #LinkToTop:active, #LinkToTop:focus {
        background-color: #333;
        cursor: pointer;
    }

/* --------- Link to top ----------------- */



/* --------- Drop-down Menu ----------------- */

.dropmenu {
    padding: 10px;
    border: none;
    cursor: pointer;
}

/*    .dropmenu:hover, .dropmenu:focus {
        border-radius: .625rem;
        background-color: #eee
    }*/

.dropdown {
    float: right;
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2A2A2A;
    min-width: 200px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    right: 0;
    z-index: 1;
}

    .dropdown-content a {
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

.dropdown a:hover {
}

.dropdown-show {
    display: block;
}

/* --------- Drop-down Menu ----------------- */



/* --------- Notepad----------------- */

.notepad {
    position: relative;
    z-index: 1;
    margin: 30px auto; /* centrally aligned */
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 30px 20px 20px 60px;
    background-color: #F9F8F5;
    border: none;
    max-width: 500px;
}

.notepad-top-margin {
    position: absolute;
    border-bottom: 1px solid #d88;
    width: 100%;
    top: 50px;
    left: 0;
}

.notepad-margin {
    position: absolute;
    border-left: 1px solid #d88;
    height: 100%;
    left: 50px;
    top: 0;
}

.notepad-title {
    display: block;
    font-weight: bold;
    padding-top: 40px;
    padding-bottom: 20px;
}

.notepad-paragraph {
    margin: 0;
    text-indent: 20px;
    padding-bottom: 20px;
}

.notepad-footer {
    margin: 0;
    text-align: right;
    font-weight: bold;
    text-indent: 20px;
    padding-bottom: 20px;
}



/* --------- Notepad----------------- */


/* --------- Written Letter Style (formal) ----------------- */
.document-style {
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    margin: 26px auto 0;
    max-width: 800px;
    min-height: 300px;
    padding: 24px;
    position: relative;
    width: 90%;
}



/* --------- Written Letter Style (formal, stacked) ----------------- */



/* ------------------- Control Styles ----------------------- */


.btn, .btn:link, .btn:visited {
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    outline: 0;
    background-color: #3F8CDB;
    color: #fff;
    border: 1px solid #3F8CDB;
    padding: 6px;
    max-width: 100%;
    transition: background linear 0.3s;
}

    .btn:hover, .btn:active, .btn:focus {
        background-color: #3A6E9F;
        cursor: pointer;
    }


.btn-red, .btn-red:link, .btn-red:visited {
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    outline: 0;
    background-color: #D5290B;
    color: #fff;
    border: 1px solid #D5290B;
    padding: 6px;
    max-width: 100%;
    transition: background linear 0.3s;
}

    .btn-red:hover, .btn-red:active, .btn-red:focus {
        background-color: #C1260B;
        cursor: pointer;
    }


.btn-grey, .btn-grey:link, .btn-grey:visited {
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    outline: 0;
    background-color: #999;
    color: #fff;
    border: 1px solid #666;
    padding: 6px;
    max-width: 100%;
    transition: background linear 0.3s;
}

    .btn-grey:hover, .btn-grey:active, .btn-grey:focus {
        background-color: #666;
        cursor: pointer;
    }


.btn-green, .btn-green:link, .btn-green:visited {
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    outline: 0;
    background-color: #178A00;
    color: #fff;
    border: 1px solid #178A00;
    padding: 6px;
    max-width: 100%;
    transition: background linear 0.3s;
}

    .btn-green:hover, .btn-green:active, .btn-green:focus {
        background-color: #157700;
        cursor: pointer;
    }


.btn-dark-green, .btn-dark-green:link, .btn-dark-green:visited {
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    outline: 0;
    background-color: #116901;
    color: #fff;
    border: 1px solid #116901;
    padding: 6px;
    max-width: 100%;
    transition: background linear 0.3s;
}

    .btn-dark-green:hover, .btn-dark-green:active, .btn-dark-green:focus {
        background-color: #0D5201;
        cursor: pointer;
    }


.btn-orange, .btn-orange:link, .btn-orange:visited {
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    line-height: 1.2;
    text-decoration: none;
    outline: 0;
    background-color: #FF6600;
    color: #fff;
    border: 1px solid #FF6600;
    padding: 6px;
    max-width: 100%;
    transition: background linear 0.3s;
}

    .btn-orange:hover, .btn-orange:active, .btn-orange:focus {
        background-color: #D95700;
        cursor: pointer;
    }



/*------------ All text boxes --------------------- */

.inputbox {
    padding: 10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
    border: 1px solid #CCC;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: Verdana, Geneva, Tahoma, sans-serif; /*for multi-line*/
}

    .inputbox:hover {
        border: 1px solid #999;
    }

    .inputbox:focus, .inputbox:active {
        border: 1px solid #999;
        outline: 0;
        -webkit-box-shadow: 0 0 0 0.1875rem #b0cae2;
        box-shadow: 0 0 0 0.1875rem #b0cae2;
    }


/*------------ File upload boxes --------------------- */

input[type=file] {
    width: 0;
    height: 0;
    position: absolute;
    z-index: -1;
    overflow: hidden;
    opacity: 0;
}


/*------------ Checkboxes --------------------- */


.switch {
    display: inline-block;
    position: relative;
    height: 22px;
    width: 40px;
}

    .switch input {
        display: none;
    }

.slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

    .slider:before {
        background-color: #fff;
        content: "";
        position: absolute;
        transition: .4s;
        bottom: 3px;
        height: 16px;
        left: 3px;
        width: 16px;
    }

input:checked + .slider {
    background-color: #3F8CDB;
}

    input:checked + .slider:before {
        transform: translateX(18px);
    }

.slider.round {
    border-radius: 16px;
}

    .slider.round:before {
        border-radius: 50%;
    }



/* ------------------- Text Link/Button Styles ----------------------- */



.link-button-red {
    background-color: #A40029;
    border-radius: .625rem;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    -moz-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    padding: 5px 10px 5px 10px;
    transition: background linear 0.3s;
}

    .link-button-red:hover, .link-button-red:active, .link-button-red:focus {
        background-color: #66001A;
        cursor: pointer;
    }


.link-button-blue {
    background-color: #4E6FB1;
    border-radius: .625rem;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    -moz-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    padding: 5px 10px 5px 10px;
    transition: background linear 0.3s;
}

    .link-button-blue:hover, .link-button-blue:active, .link-button-blue:focus {
        background-color: #395182;
        cursor: pointer;
    }

.link-button-blue-flat {
    background-color: #4E6FB1;
    border-radius: .625rem;
    padding: 5px 10px 5px 10px;
    transition: background linear 0.3s;
}

    .link-button-blue-flat:hover, .link-button-blue-flat:active, .link-button-blue-flat:focus {
        background-color: #395182;
        cursor: pointer;
    }

.link-button-teal {
    background-color: #54A9A9;
    border-radius: .625rem;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    -moz-box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    box-shadow: 0px 3px 3px 0px rgba(153,153,153,0.75);
    padding: 5px 10px 5px 10px;
    transition: background linear 0.3s;
}

    .link-button-teal:hover, .link-button-teal:active, .link-button-teal:focus {
        background-color: #397575;
        cursor: pointer;
    }



/* ------------------- Text Background Styles ----------------------- */


.text-background-white {
    background-color: rgb(255, 255, 255, 0.95);
    border-radius: .625rem;
    padding: 5px 10px 5px 10px
}


.text-background-dark-grey {
    background-color: rgb(68, 68, 68, 0.5);
    border-radius: .625rem;
    padding: 5px 10px 5px 10px
}

.text-background-dark-greyblue {
    background-color: rgb(52, 72, 101, 0.7);
    border-radius: .625rem;
    padding: 5px 10px 5px 10px
}

.text-background-dark-red {
    background-color: rgb(51, 11, 9, 0.2);
    border-radius: .625rem;
    padding: 5px 10px 5px 10px
}

.text-background-dark-teal {
    background-color: rgb(4, 57, 45, 0.5);
    border-radius: .625rem;
    padding: 5px 10px 5px 10px
}





/* ------------------- Font Styles ----------------------- */


/* ----- Standard (smartphone) ----- */

a:link, a:visited {
    text-decoration: underline;
    color: #4E6FB1;
}

a:hover, a:active, a:focus {
    text-decoration: underline;
    color: #A40029;
}

.font-colour-red {
    color: #E82C0C;
}

.font-colour-dark-red {
    color: #9F1E06;
}

.font-colour-bright-red {
    color: #FF0000;
}

.font-colour-green {
    color: #178A00;
}

.font-colour-dark-green {
    color: #0D5201;
}

.font-colour-blue {
    color: #3F8CDB;
}

.font-colour-clear-blue {
    color: #037AE2;
}

.font-colour-orange {
    color: #FF6600;
}

.font-colour-yellow {
    color: #FFAC03;
}

.font-colour-bright-yellow {
    color: #FFD000;
}

.font-colour-darker-grey {
    color: #333;
}

.font-colour-dark-grey {
    color: #444;
}

.font-colour-grey {
    color: #666;
}

.font-colour-lighter-grey {
    color: #CCC;
}

.font-colour-light-grey {
    color: #999;
}

.font-colour-white {
    color: #FFFFFF;
}

.font-colour-hooburgundy {
    color: #A40029;
}

.font-bold {
    font-weight: bold;
}

.font-italic {
    font-style: italic;
}

.font-watermark {
    color: #999999;
}




.font-pageheadline {
    font-size: 30px;
    line-height: 120%;
    font-weight: bold;
}

.font-h1 {
    font-size: 24px;
    line-height: 100%;
    font-weight: bold;
}

.font-h2 {
    font-size: 20px;
    line-height: 120%;
    font-weight: bold;
}

.font-h3 {
    font-size: 17px;
    line-height: 118%;
    font-weight: bold;
}

.font-h4 {
    font-size: 15px;
    line-height: 134%;
    font-weight: bold;
}

.font-lead {
    font-size: 17px;
    line-height: 124%;
}

.font-paragraph {
    font-size: 13px;
    line-height: 147%;
}

.font-small {
    font-size: 11px;
    line-height: 137%;
}

@media only screen and (min-width: 768px) {

    /* ----- From 768px ----- */

    .font-pageheadline {
        font-size: 42px;
        line-height: 100%;
        font-weight: bold;
    }

    .font-h1 {
        font-size: 30px;
        line-height: 120%;
        font-weight: bold;
    }

    .font-h2 {
        font-size: 20px;
        line-height: 111%;
        font-weight: bold;
    }

    .font-h3 {
        font-size: 17px;
        line-height: 118%;
        font-weight: bold;
    }

    .font-h4 {
        font-size: 15px;
        line-height: 120%;
        font-weight: bold;
    }
}

@media only screen and (min-width: 1440px) {

    /* ----- From 1440px ----- */

    .font-pageheadline {
        font-size: 42px;
        line-height: 100%;
        font-weight: bold;
    }

    .font-h1 {
        font-size: 36px;
        line-height: 117%;
        font-weight: bold;
    }

    .font-h2 {
        font-size: 26px;
        line-height: 116%;
        font-weight: bold;
    }

    .font-h3 {
        font-size: 22px;
        line-height: 119%;
        font-weight: bold;
    }

    .font-h4 {
        font-size: 17px;
        line-height: 130%;
        font-weight: bold;
    }
}

@media only screen and (min-width: 1920px) {

    /* ----- From 1920px ----- */

    .font-pageheadline {
        font-size: 50px;
        line-height: 100%;
        font-weight: bold;
    }

    .font-h1 {
        font-size: 42px;
        line-height: 100%;
        font-weight: bold;
    }

    .font-h2 {
        font-size: 30px;
        line-height: 120%;
        font-weight: bold;
    }

    .font-h3 {
        font-size: 22px;
        line-height: 119%;
        font-weight: bold;
    }

    .font-h4 {
        font-size: 17px;
        line-height: 130%;
        font-weight: bold;
    }
}


/* ------------------- Div Styles ----------------------- */


.blankrow {
    height: 20px;
}

.blankrow15 {
    height: 15px;
}

.blankrow10 {
    height: 10px;
}

.blankrow5 {
    height: 5px;
}

.hr {
    height: 1px;
    background-color: #EEE;
    width: 100%;
}

.hrthick {
    height: 2px;
    background-color: #EEE;
    width: 100%;
}

.hrdotted {
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    border-bottom-color: #ccc;
    width: 100%;
}

.hrdotted-white {
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    border-bottom-color: #FFFFFF;
    width: 100%;
}

.hrdotted-dark {
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    border-bottom-color: #666;
    width: 100%;
}
