html {
    margin:0;
    padding:0;
}

body {
    background-color: #fff;
    color: #000;
    font-family: "Arial";
    font-size: 14px;
    line-height: 18px;
}

::-moz-selection {
    background: #cd0337;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #cd0337;
    color: #fff;
    text-shadow: none;
}

h1,
h2,
h3,
h4 {
    color: #2c5c91; 
    margin:0 0 10px 0;
    font-weight: normal;
    display: inline-flex;
    min-height:25px;
}

h1 {
    font-size: 18px;
    line-height: 22px;
}

h2 {
    font-size: 18px;
    line-height: 20px;
}

h3 {
    font-size: 16px;
    line-height: 18px;
}

h5{
    font-size: 14px;
    line-height: 16px;
}

p {
    margin: 0 0 15px 0;
    line-height: 1.3;
    padding:0;
}

ul {
    margin:0 0 25px 0;
    padding-left:15px;
    list-style-type: square;
}

ol {
    margin:0 0 25px 0;
    padding-left:15px;
}

/**
HEADER
**/
.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.header__row{
    display: flex;
}

.header__column {
    align-items: center;
    display: flex;
    flex-basis: 100%;
    margin: 0 auto;
    min-height: inherit;
}

.header__column:first-child {   
    padding-left: 5px;
}
.header__column:first-child img {
    margin-top: -3px;
}

.header__column:last-child {
    justify-content: flex-end;
    padding-right: 7px;
}
.header__column:last-child img {
    margin-top: -5px;
}

.header__row--first {
    background: #fff;
    border-bottom: 30px solid #154176;
    height: 90px;
}

.header__row--various {
    height: 35px;
    background: #2c5c91;
    background: -moz-linear-gradient(top, #2d5c92 0%, #4079b0 4%, #4079b0 26%, #3c73ab 45%, #2e6095 89%, #2e5f97 91%, #2e5d91 96%, #2d5c92 98%, #275a89 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2d5c92), color-stop(4%, #4079b0), color-stop(26%, #4079b0), color-stop(45%, #3c73ab), color-stop(89%, #2e6095), color-stop(91%, #2e5f97), color-stop(96%, #2e5d91), color-stop(98%, #2d5c92), color-stop(100%, #275a89)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #2d5c92 0%, #4079b0 4%, #4079b0 26%, #3c73ab 45%, #2e6095 89%, #2e5f97 91%, #2e5d91 96%, #2d5c92 98%, #275a89 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #2d5c92 0%, #4079b0 4%, #4079b0 26%, #3c73ab 45%, #2e6095 89%, #2e5f97 91%, #2e5d91 96%, #2d5c92 98%, #275a89 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #2d5c92 0%, #4079b0 4%, #4079b0 26%, #3c73ab 45%, #2e6095 89%, #2e5f97 91%, #2e5d91 96%, #2d5c92 98%, #275a89 100%); /* IE10+ */
    background: linear-gradient(to bottom, #2d5c92 0%, #4079b0 4%, #4079b0 26%, #3c73ab 45%, #2e6095 89%, #2e5f97 91%, #2e5d91 96%, #2d5c92 98%, #275a89 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2d5c92', endColorstr='#275a89', GradientType=0); /* IE6-9 */
    border-top: 1px solid #000;
}

.image-link:focus {
    outline: 1px dotted #2c5c91;
}

/**
* MAIN
**/
.main {
    background-color: #fff;
    display: flex;
    padding:15px;
}

.main__content {
    margin: 0 auto;
    padding-top: 13px;
}

.main a,
.main a:visited {
    color: #2c5c91;
    text-decoration: none;
}

.main a:hover {
    text-decoration: underline;
}

.main a:focus {
    outline: 1px dotted #2c5c91;
}



.image-subtitle {
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.contact {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}

.contact a {
    margin-right:auto;
}

/**
FOOTER
**/
.footer {
    background-color: #fff;
    color:#000;
    display: flex;
    flex-direction: column;
    margin: 80px 0 50px 0;
    min-height: 26px;
}

.footer__row {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    min-height: inherit;
}

.footer__column {
    padding:0 15px;
}

.footer a,
.footer a:visited{
    color:#2c5c91;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer a:focus {
    outline: 1px dotted #2c5c91;
}

.seperator {
    display: inline-block;
    padding: 0 5px;
}

.layout--boxed {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/**
HELPERS
**/
.margin--top-20 {
    margin-top: 20px;
}

.margin--bottom-10 {
    margin-bottom: 10px;
}

/**
PRINT-STYLE
**/
@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

@media (max-width: 576px) {
    .respo-image {
        display: none;
    }
}




