:root {
    --primary-colour-blue: #0F599A;
    --primary-colour-dark-blue: #0A4273;
    --primary-colour-light-blue: #0190D2;
    --background-colour-white: #fff;
    --alternate-colour-light-grey: #DBDBDB;
    --alternate-colour-grey: #BBBBBB;
    --alternate-colour-dark-grey: #3E3E3E;
    --primary-font-arial: Arial, Helvetica, Sans-Serif;
}

html {
    overflow-y: scroll;
    min-height: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    font-size:1em;
}

body {
    /*Always include scroll bar on side to remove jitter when scroll 
      bar is added when showmore / advanced search are clicked.*/
    /*Had this on the comatiner before as was causing an issue with the position of the 
        range picker. Seems to be working now:*/
    margin: 0 auto;
    margin-bottom: 136px;
    min-height: 100%;
    min-width: 750px;
    min-height: 100%;
    padding: 0;
    font-size: .85em;
    font-family: var(--primary-font-arial);
    color: #232323;

    background-color: #FAFAFA;
}

.pageContent {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    width: 940px;
    color: var(--alternate-colour-dark-grey);
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

.container {
    max-width: 960px;
}


a {
    font-weight: bold;
    color: var(--primary-colour-blue);
}

    a:link {
        text-decoration: none;
        color: var(--primary-colour-blue);
    }

    a:visited {
        text-decoration: none;
        color: var(--primary-colour-light-blue);
    }

    a:hover {
        text-decoration: underline;
        color: #004a84;
    }


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
    color: #ff0000;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #ff0000;
    border: 1px solid;
    padding: 8px;
    width: 500px;
    margin: 0 auto;
    margin-bottom: 1em;
    background-color: #ffeeee;
}

.validation-summary-valid {
    display: none;
}

img {
    border-style: none;
}

.errorPageMainMessage {
    text-align: center;
    color: #0094c3;
}

.InfoPageHeader {
    font-size: 1.5em;
    color: #666666;
    font-family: var(--primary-font-arial);
    -webkit-font-variant: small-caps;
    -moz-font-variant: small-caps;
    -ms-font-variant: small-caps;
    -o-font-variant: small-caps;
    font-variant: small-caps;
    text-transform: none;
    font-weight: 600;
    margin: 1em;
    margin-top: 2em;
}
/*Footer stuff, including wrapper which allows the footer to locate at page bottom.*/
.footer {
}

    .footer a {
        font-weight: bold;
        font-size: .95em;
    }

        .footer a:link {
            text-decoration: none;
            color: white;
        }

        .footer a:visited {
            text-decoration: none;
            color: white;
        }

        .footer a:hover {
            text-decoration: underline;
            color: #000000;
        }

div#footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    min-height: 40px;
    background-color: #FFF;
    background: url(../Content/Images/footer-curve.jpg) no-repeat center center scroll;
    background-color: #3e3e3e;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

#footer > .container {
    max-width: 960px;
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 768px) {
    #footer > .container {
    width: 960px;
}
}
}

div#footerRightBlock {
    text-align: right;
    float: right;
}

div#footerLeftBlock {
    text-align: left;
    float: left;
}

.footerLink {
    float: left;
    padding-left: 10px;
}
.footerLinkLeft {
    padding-right: 10px;
    border-right: 2px solid;
    border-color: #808080;
}

div#wrapper {
    height: auto !important;
    min-height: 100%;
    height: 100%;
    /*TODO added to remove extra space after the footer, note to be removed once tested.*/
    overflow: hidden;
    background-color: var(--background-colour-white);
}