@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,100");
@import url(fontawesome-all.min.css);

/*
	Concentric by Pixelarity
	pixelarity.com | hello@pixelarity.com
	License: pixelarity.com/license
*/

html {
    scroll-behavior: smooth;
    background-color: #ededed !important;
}

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    background: #333131;
    line-height: 1;
}

    body.is-preload *, body.is-preload *:before, body.is-preload *:after {
        -moz-animation: none !important;
        -webkit-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
        -moz-transition: none !important;
        -webkit-transition: none !important;
        -ms-transition: none !important;
        transition: none !important;
    }

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after, q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none;
}

mark {
    background-color: transparent;
    color: inherit;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input, select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

    select.form-control {
        color: rgb(136, 135, 135);
        background-color: rgba(0, 0, 0, 0.03);
        border: none;
    }

        select.form-control:focus {
            color: rgb(136, 135, 135);
            background-color: rgba(0, 0, 0, 0.03);
        }

/* Basic */

html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, input, textarea, select {
    font-family: 'Roboto', sans-serif;
    font-size: 15pt;
    font-weight: 300;
    line-height: 1.75em;
    color: #888787;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: #333131;
}

h1 {
    font-size: 2.3em;
    font-weight: 300;
}

h3 {
    font-size: 1.3em;
    /*font-weight: 300;*/
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: inherit;
        text-decoration: none;
    }

strong, b {
    font-weight: 400;
    //color: #333131;
}

em, i {
    font-style: italic;
}

a {
    color: #DA7E79;
}

sub {
    position: relative;
    top: 0.5em;
    font-size: 0.8em;
}

sup {
    position: relative;
    top: -0.5em;
    font-size: 0.8em;
}

hr {
    border: 0;
    border-top: solid 1px #ddd;
}

blockquote {
    border-left: solid 0.5em #ddd;
    padding: 1em 0 1em 2em;
    font-style: italic;
}

p, ul, ol, dl, table {
    margin-bottom: 1em;
}

header {
    margin-bottom: 3em;
}


.nav-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

header h2 {
    font-weight: 300;
    font-size: 2.3em;
    color: #333131;
}

header .byline {
    display: block;
    padding: 0.5em 0;
    font-size: 1em;
    font-weight: 300;
}

br.clear {
    clear: both;
}

.btn-primary {
    background-color: #b72429;
    border-color: #b72429;
    color: white;
}

    .btn-primary:hover {
        background-color: #dd5559;
        border-color: #dd5559;
    }

    .btn-primary:active {
        background-color: #dd5559 !important;
        border-color: #dd5559 !important;
    }


.caption {
    color: #5b5c6b;
}

.article-date {
    color: #5b5c6b;
    padding-bottom: 0.5em;
}

.pageHeader {
    height: 200px;
    margin: 0;
}

/* Row */

.row {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
}

    .row > * {
        box-sizing: border-box;
    }

    .row.gtr-uniform > * > :last-child {
        margin-bottom: 0;
    }

    .row.aln-left {
        justify-content: flex-start;
    }

    .row.aln-center {
        justify-content: center;
    }

    .row.aln-right {
        justify-content: flex-end;
    }

    .row.aln-top {
        align-items: flex-start;
    }

    .row.aln-middle {
        align-items: center;
    }

    .row.aln-bottom {
        align-items: flex-end;
    }

    .row > .imp {
        order: -1;
    }

    .row > .col-1 {
        width: 8.33333%;
    }

    .row > .off-1 {
        margin-left: 8.33333%;
    }

    .row > .col-2 {
        width: 16.66667%;
    }

    .row > .off-2 {
        margin-left: 16.66667%;
    }

    .row > .col-3 {
        width: 25%;
    }

    .row > .off-3 {
        margin-left: 25%;
    }

    .row > .col-4 {
        width: 33.33333%;
    }

    .row > .off-4 {
        margin-left: 33.33333%;
    }

    .row > .col-5 {
        width: 41.66667%;
    }

    .row > .off-5 {
        margin-left: 41.66667%;
    }

    .row > .col-6 {
        width: 50%;
    }

    .row > .off-6 {
        margin-left: 50%;
    }

    .row > .col-7 {
        width: 58.33333%;
    }

    .row > .off-7 {
        margin-left: 58.33333%;
    }

    .row > .col-8 {
        width: 66.66667%;
    }

    .row > .off-8 {
        margin-left: 66.66667%;
    }

    .row > .col-9 {
        width: 75%;
    }

    .row > .off-9 {
        margin-left: 75%;
    }

    .row > .col-10 {
        width: 83.33333%;
    }

    .row > .off-10 {
        margin-left: 83.33333%;
    }

    .row > .col-11 {
        width: 91.66667%;
    }

    .row > .off-11 {
        margin-left: 91.66667%;
    }

    .row > .col-12 {
        width: 100%;
    }

    .row > .off-12 {
        margin-left: 100%;
    }

    .row.gtr-0 {
        margin-top: 0;
        margin-left: 0px;
    }

        .row.gtr-0 > * {
            padding: 0 0 0 0px;
        }

        .row.gtr-0.gtr-uniform {
            margin-top: 0px;
        }

            .row.gtr-0.gtr-uniform > * {
                padding-top: 0px;
            }

    .row.gtr-25 {
        margin-top: 0;
        margin-left: -10px;
    }

        .row.gtr-25 > * {
            padding: 0 0 0 10px;
        }

        .row.gtr-25.gtr-uniform {
            margin-top: -10px;
        }

            .row.gtr-25.gtr-uniform > * {
                padding-top: 10px;
            }

    .row.gtr-50 {
        margin-top: 0;
        margin-left: -20px;
    }

        .row.gtr-50 > * {
            padding: 0 0 0 20px;
        }

        .row.gtr-50.gtr-uniform {
            margin-top: -20px;
        }

            .row.gtr-50.gtr-uniform > * {
                padding-top: 20px;
            }

.row {
    margin-top: 0;
    margin-left: -40px;
}

    .row > * {
        padding: 0 0 0 40px;
    }

    .row.gtr-uniform {
        margin-top: -40px;
    }

        .row.gtr-uniform > * {
            padding-top: 40px;
        }

    .row.gtr-150 {
        margin-top: 0;
        margin-left: -60px;
    }

        .row.gtr-150 > * {
            padding: 0 0 0 60px;
        }

        .row.gtr-150.gtr-uniform {
            margin-top: -60px;
        }

            .row.gtr-150.gtr-uniform > * {
                padding-top: 60px;
            }

    .row.gtr-200 {
        margin-top: 0;
        margin-left: -80px;
    }

        .row.gtr-200 > * {
            padding: 0 0 0 80px;
        }

        .row.gtr-200.gtr-uniform {
            margin-top: -80px;
        }

            .row.gtr-200.gtr-uniform > * {
                padding-top: 80px;
            }

@media screen and (max-width: 3000px) {

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

        .row > * {
            box-sizing: border-box;
        }

        .row.gtr-uniform > * > :last-child {
            margin-bottom: 0;
        }

        .row.aln-left {
            justify-content: flex-start;
        }

        .row.aln-center {
            justify-content: center;
        }

        .row.aln-right {
            justify-content: flex-end;
        }

        .row.aln-top {
            align-items: flex-start;
        }

        .row.aln-middle {
            align-items: center;
        }

        .row.aln-bottom {
            align-items: flex-end;
        }

        .row > .imp-wide {
            order: -1;
        }

        .row > .col-1-wide {
            width: 8.33333%;
        }

        .row > .off-1-wide {
            margin-left: 8.33333%;
        }

        .row > .col-2-wide {
            width: 16.66667%;
        }

        .row > .off-2-wide {
            margin-left: 16.66667%;
        }

        .row > .col-3-wide {
            width: 25%;
        }

        .row > .off-3-wide {
            margin-left: 25%;
        }

        .row > .col-4-wide {
            width: 33.33333%;
        }

        .row > .off-4-wide {
            margin-left: 33.33333%;
        }

        .row > .col-5-wide {
            width: 41.66667%;
        }

        .row > .off-5-wide {
            margin-left: 41.66667%;
        }

        .row > .col-6-wide {
            width: 50%;
        }

        .row > .off-6-wide {
            margin-left: 50%;
        }

        .row > .col-7-wide {
            width: 58.33333%;
        }

        .row > .off-7-wide {
            margin-left: 58.33333%;
        }

        .row > .col-8-wide {
            width: 66.66667%;
        }

        .row > .off-8-wide {
            margin-left: 66.66667%;
        }

        .row > .col-9-wide {
            width: 75%;
        }

        .row > .off-9-wide {
            margin-left: 75%;
        }

        .row > .col-10-wide {
            width: 83.33333%;
        }

        .row > .off-10-wide {
            margin-left: 83.33333%;
        }

        .row > .col-11-wide {
            width: 91.66667%;
        }

        .row > .off-11-wide {
            margin-left: 91.66667%;
        }

        .row > .col-12-wide {
            width: 100%;
        }

        .row > .off-12-wide {
            margin-left: 100%;
        }

        .row.gtr-0 {
            margin-top: 0;
            margin-left: 0px;
        }

            .row.gtr-0 > * {
                padding: 0 0 0 0px;
            }

            .row.gtr-0.gtr-uniform {
                margin-top: 0px;
            }

                .row.gtr-0.gtr-uniform > * {
                    padding-top: 0px;
                }

        .row.gtr-25 {
            margin-top: 0;
            margin-left: -10px;
        }

            .row.gtr-25 > * {
                padding: 0 0 0 10px;
            }

            .row.gtr-25.gtr-uniform {
                margin-top: -10px;
            }

                .row.gtr-25.gtr-uniform > * {
                    padding-top: 10px;
                }

        .row.gtr-50 {
            margin-top: 0;
            margin-left: -20px;
        }

            .row.gtr-50 > * {
                padding: 0 0 0 20px;
            }

            .row.gtr-50.gtr-uniform {
                margin-top: -20px;
            }

                .row.gtr-50.gtr-uniform > * {
                    padding-top: 20px;
                }

    .row {
        margin-top: 0;
        margin-left: -40px;
    }

        .row > * {
            padding: 0 0 0 40px;
        }

        .row.gtr-uniform {
            margin-top: -40px;
        }

            .row.gtr-uniform > * {
                padding-top: 40px;
            }

        .row.gtr-150 {
            margin-top: 0;
            margin-left: -60px;
        }

            .row.gtr-150 > * {
                padding: 0 0 0 60px;
            }

            .row.gtr-150.gtr-uniform {
                margin-top: -60px;
            }

                .row.gtr-150.gtr-uniform > * {
                    padding-top: 60px;
                }

        .row.gtr-200 {
            margin-top: 0;
            margin-left: -80px;
        }

            .row.gtr-200 > * {
                padding: 0 0 0 80px;
            }

            .row.gtr-200.gtr-uniform {
                margin-top: -80px;
            }

                .row.gtr-200.gtr-uniform > * {
                    padding-top: 80px;
                }
}

@media screen and (max-width: 1280px) {

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

        .row > * {
            box-sizing: border-box;
        }

        .row.gtr-uniform > * > :last-child {
            margin-bottom: 0;
        }

        .row.aln-left {
            justify-content: flex-start;
        }

        .row.aln-center {
            justify-content: center;
        }

        .row.aln-right {
            justify-content: flex-end;
        }

        .row.aln-top {
            align-items: flex-start;
        }

        .row.aln-middle {
            align-items: center;
        }

        .row.aln-bottom {
            align-items: flex-end;
        }

        .row > .imp-normal {
            order: -1;
        }

        .row > .col-1-normal {
            width: 8.33333%;
        }

        .row > .off-1-normal {
            margin-left: 8.33333%;
        }

        .row > .col-2-normal {
            width: 16.66667%;
        }

        .row > .off-2-normal {
            margin-left: 16.66667%;
        }

        .row > .col-3-normal {
            width: 25%;
        }

        .row > .off-3-normal {
            margin-left: 25%;
        }

        .row > .col-4-normal {
            width: 33.33333%;
        }

        .row > .off-4-normal {
            margin-left: 33.33333%;
        }

        .row > .col-5-normal {
            width: 41.66667%;
        }

        .row > .off-5-normal {
            margin-left: 41.66667%;
        }

        .row > .col-6-normal {
            width: 50%;
        }

        .row > .off-6-normal {
            margin-left: 50%;
        }

        .row > .col-7-normal {
            width: 58.33333%;
        }

        .row > .off-7-normal {
            margin-left: 58.33333%;
        }

        .row > .col-8-normal {
            width: 66.66667%;
        }

        .row > .off-8-normal {
            margin-left: 66.66667%;
        }

        .row > .col-9-normal {
            width: 75%;
        }

        .row > .off-9-normal {
            margin-left: 75%;
        }

        .row > .col-10-normal {
            width: 83.33333%;
        }

        .row > .off-10-normal {
            margin-left: 83.33333%;
        }

        .row > .col-11-normal {
            width: 91.66667%;
        }

        .row > .off-11-normal {
            margin-left: 91.66667%;
        }

        .row > .col-12-normal {
            width: 100%;
        }

        .row > .off-12-normal {
            margin-left: 100%;
        }

        .row.gtr-0 {
            margin-top: 0;
            margin-left: 0px;
        }

            .row.gtr-0 > * {
                padding: 0 0 0 0px;
            }

            .row.gtr-0.gtr-uniform {
                margin-top: 0px;
            }

                .row.gtr-0.gtr-uniform > * {
                    padding-top: 0px;
                }

        .row.gtr-25 {
            margin-top: 0;
            margin-left: -10px;
        }

            .row.gtr-25 > * {
                padding: 0 0 0 10px;
            }

            .row.gtr-25.gtr-uniform {
                margin-top: -10px;
            }

                .row.gtr-25.gtr-uniform > * {
                    padding-top: 10px;
                }

        .row.gtr-50 {
            margin-top: 0;
            margin-left: -20px;
        }

            .row.gtr-50 > * {
                padding: 0 0 0 20px;
            }

            .row.gtr-50.gtr-uniform {
                margin-top: -20px;
            }

                .row.gtr-50.gtr-uniform > * {
                    padding-top: 20px;
                }

    .row {
        margin-top: 0;
        margin-left: -40px;
    }

        .row > * {
            padding: 0 0 0 40px;
        }

        .row.gtr-uniform {
            margin-top: -40px;
        }

            .row.gtr-uniform > * {
                padding-top: 40px;
            }

        .row.gtr-150 {
            margin-top: 0;
            margin-left: -60px;
        }

            .row.gtr-150 > * {
                padding: 0 0 0 60px;
            }

            .row.gtr-150.gtr-uniform {
                margin-top: -60px;
            }

                .row.gtr-150.gtr-uniform > * {
                    padding-top: 60px;
                }

        .row.gtr-200 {
            margin-top: 0;
            margin-left: -80px;
        }

            .row.gtr-200 > * {
                padding: 0 0 0 80px;
            }

            .row.gtr-200.gtr-uniform {
                margin-top: -80px;
            }

                .row.gtr-200.gtr-uniform > * {
                    padding-top: 80px;
                }
}

@media screen and (max-width: 1080px) {

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

        .row > * {
            box-sizing: border-box;
        }

        .row.gtr-uniform > * > :last-child {
            margin-bottom: 0;
        }

        .row.aln-left {
            justify-content: flex-start;
        }

        .row.aln-center {
            justify-content: center;
        }

        .row.aln-right {
            justify-content: flex-end;
        }

        .row.aln-top {
            align-items: flex-start;
        }

        .row.aln-middle {
            align-items: center;
        }

        .row.aln-bottom {
            align-items: flex-end;
        }

        .row > .imp-narrow {
            order: -1;
        }

        .row > .col-1-narrow {
            width: 8.33333%;
        }

        .row > .off-1-narrow {
            margin-left: 8.33333%;
        }

        .row > .col-2-narrow {
            width: 16.66667%;
        }

        .row > .off-2-narrow {
            margin-left: 16.66667%;
        }

        .row > .col-3-narrow {
            width: 25%;
        }

        .row > .off-3-narrow {
            margin-left: 25%;
        }

        .row > .col-4-narrow {
            width: 33.33333%;
        }

        .row > .off-4-narrow {
            margin-left: 33.33333%;
        }

        .row > .col-5-narrow {
            width: 41.66667%;
        }

        .row > .off-5-narrow {
            margin-left: 41.66667%;
        }

        .row > .col-6-narrow {
            width: 50%;
        }

        .row > .off-6-narrow {
            margin-left: 50%;
        }

        .row > .col-7-narrow {
            width: 58.33333%;
        }

        .row > .off-7-narrow {
            margin-left: 58.33333%;
        }

        .row > .col-8-narrow {
            width: 66.66667%;
        }

        .row > .off-8-narrow {
            margin-left: 66.66667%;
        }

        .row > .col-9-narrow {
            width: 75%;
        }

        .row > .off-9-narrow {
            margin-left: 75%;
        }

        .row > .col-10-narrow {
            width: 83.33333%;
        }

        .row > .off-10-narrow {
            margin-left: 83.33333%;
        }

        .row > .col-11-narrow {
            width: 91.66667%;
        }

        .row > .off-11-narrow {
            margin-left: 91.66667%;
        }

        .row > .col-12-narrow {
            width: 100%;
        }

        .row > .off-12-narrow {
            margin-left: 100%;
        }

        .row.gtr-0 {
            margin-top: 0;
            margin-left: 0px;
        }

            .row.gtr-0 > * {
                padding: 0 0 0 0px;
            }

            .row.gtr-0.gtr-uniform {
                margin-top: 0px;
            }

                .row.gtr-0.gtr-uniform > * {
                    padding-top: 0px;
                }

        .row.gtr-25 {
            margin-top: 0;
            margin-left: -5px;
        }

            .row.gtr-25 > * {
                padding: 0 0 0 5px;
            }

            .row.gtr-25.gtr-uniform {
                margin-top: -5px;
            }

                .row.gtr-25.gtr-uniform > * {
                    padding-top: 5px;
                }

        .row.gtr-50 {
            margin-top: 0;
            margin-left: -10px;
        }

            .row.gtr-50 > * {
                padding: 0 0 0 10px;
            }

            .row.gtr-50.gtr-uniform {
                margin-top: -10px;
            }

                .row.gtr-50.gtr-uniform > * {
                    padding-top: 10px;
                }

    .row {
        margin-top: 0;
        margin-left: -50px;
    }

        .row > * {
            padding: 0 0 0 20px;
        }

        .row.gtr-uniform {
            margin-top: -20px;
        }

            .row.gtr-uniform > * {
                padding-top: 20px;
            }

        .row.gtr-150 {
            margin-top: 0;
            margin-left: -30px;
        }

            .row.gtr-150 > * {
                padding: 0 0 0 30px;
            }

            .row.gtr-150.gtr-uniform {
                margin-top: -30px;
            }

                .row.gtr-150.gtr-uniform > * {
                    padding-top: 30px;
                }

        .row.gtr-200 {
            margin-top: 0;
            margin-left: -40px;
        }

            .row.gtr-200 > * {
                padding: 0 0 0 40px;
            }

            .row.gtr-200.gtr-uniform {
                margin-top: -40px;
            }

                .row.gtr-200.gtr-uniform > * {
                    padding-top: 40px;
                }
}

@media screen and (max-width: 960px) {

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

        .row > * {
            box-sizing: border-box;
        }

        .row.gtr-uniform > * > :last-child {
            margin-bottom: 0;
        }

        .row.aln-left {
            justify-content: flex-start;
        }

        .row.aln-center {
            justify-content: center;
        }

        .row.aln-right {
            justify-content: flex-end;
        }

        .row.aln-top {
            align-items: flex-start;
        }

        .row.aln-middle {
            align-items: center;
        }

        .row.aln-bottom {
            align-items: flex-end;
        }

        .row > .imp-narrower {
            order: -1;
        }

        .row > .col-1-narrower {
            width: 8.33333%;
        }

        .row > .off-1-narrower {
            margin-left: 8.33333%;
        }

        .row > .col-2-narrower {
            width: 16.66667%;
        }

        .row > .off-2-narrower {
            margin-left: 16.66667%;
        }

        .row > .col-3-narrower {
            width: 25%;
        }

        .row > .off-3-narrower {
            margin-left: 25%;
        }

        .row > .col-4-narrower {
            width: 33.33333%;
        }

        .row > .off-4-narrower {
            margin-left: 33.33333%;
        }

        .row > .col-5-narrower {
            width: 41.66667%;
        }

        .row > .off-5-narrower {
            margin-left: 41.66667%;
        }

        .row > .col-6-narrower {
            width: 50%;
        }

        .row > .off-6-narrower {
            margin-left: 50%;
        }

        .row > .col-7-narrower {
            width: 58.33333%;
        }

        .row > .off-7-narrower {
            margin-left: 58.33333%;
        }

        .row > .col-8-narrower {
            width: 66.66667%;
        }

        .row > .off-8-narrower {
            margin-left: 66.66667%;
        }

        .row > .col-9-narrower {
            width: 75%;
        }

        .row > .off-9-narrower {
            margin-left: 75%;
        }

        .row > .col-10-narrower {
            width: 83.33333%;
        }

        .row > .off-10-narrower {
            margin-left: 83.33333%;
        }

        .row > .col-11-narrower {
            width: 91.66667%;
        }

        .row > .off-11-narrower {
            margin-left: 91.66667%;
        }

        .row > .col-12-narrower {
            width: 100%;
        }

        .row > .off-12-narrower {
            margin-left: 100%;
        }

        .row.gtr-0 {
            margin-top: 0;
            margin-left: 0px;
        }

            .row.gtr-0 > * {
                padding: 0 0 0 0px;
            }

            .row.gtr-0.gtr-uniform {
                margin-top: 0px;
            }

                .row.gtr-0.gtr-uniform > * {
                    padding-top: 0px;
                }

        .row.gtr-25 {
            margin-top: 0;
            margin-left: -5px;
        }

            .row.gtr-25 > * {
                padding: 0 0 0 5px;
            }

            .row.gtr-25.gtr-uniform {
                margin-top: -5px;
            }

                .row.gtr-25.gtr-uniform > * {
                    padding-top: 5px;
                }

        .row.gtr-50 {
            margin-top: 0;
            margin-left: -10px;
        }

            .row.gtr-50 > * {
                padding: 0 0 0 10px;
            }

            .row.gtr-50.gtr-uniform {
                margin-top: -10px;
            }

                .row.gtr-50.gtr-uniform > * {
                    padding-top: 10px;
                }

    .row {
        margin-top: 0;
        margin-left: -20px;
    }

        .row > * {
            padding: 0 0 0 20px;
        }

        .row.gtr-uniform {
            margin-top: -20px;
        }

            .row.gtr-uniform > * {
                padding-top: 20px;
            }

        .row.gtr-150 {
            margin-top: 0;
            margin-left: -30px;
        }

            .row.gtr-150 > * {
                padding: 0 0 0 30px;
            }

            .row.gtr-150.gtr-uniform {
                margin-top: -30px;
            }

                .row.gtr-150.gtr-uniform > * {
                    padding-top: 30px;
                }

        .row.gtr-200 {
            margin-top: 0;
            margin-left: -40px;
        }

            .row.gtr-200 > * {
                padding: 0 0 0 40px;
            }

            .row.gtr-200.gtr-uniform {
                margin-top: -40px;
            }

                .row.gtr-200.gtr-uniform > * {
                    padding-top: 40px;
                }
}

@media screen and (max-width: 736px) {

    .row {
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        align-items: stretch;
    }

        .row > * {
            box-sizing: border-box;
        }

        .row.gtr-uniform > * > :last-child {
            margin-bottom: 0;
        }

        .row.aln-left {
            justify-content: flex-start;
        }

        .row.aln-center {
            justify-content: center;
        }

        .row.aln-right {
            justify-content: flex-end;
        }

        .row.aln-top {
            align-items: flex-start;
        }

        .row.aln-middle {
            align-items: center;
        }

        .row.aln-bottom {
            align-items: flex-end;
        }

        .row > .imp-mobile {
            order: -1;
        }

        .row > .col-1-mobile {
            width: 8.33333%;
        }

        .row > .off-1-mobile {
            margin-left: 8.33333%;
        }

        .row > .col-2-mobile {
            width: 16.66667%;
        }

        .row > .off-2-mobile {
            margin-left: 16.66667%;
        }

        .row > .col-3-mobile {
            width: 25%;
        }

        .row > .off-3-mobile {
            margin-left: 25%;
        }

        .row > .col-4-mobile {
            width: 33.33333%;
        }

        .row > .off-4-mobile {
            margin-left: 33.33333%;
        }

        .row > .col-5-mobile {
            width: 41.66667%;
        }

        .row > .off-5-mobile {
            margin-left: 41.66667%;
        }

        .row > .col-6-mobile {
            width: 50%;
        }

        .row > .off-6-mobile {
            margin-left: 50%;
        }

        .row > .col-7-mobile {
            width: 58.33333%;
        }

        .row > .off-7-mobile {
            margin-left: 58.33333%;
        }

        .row > .col-8-mobile {
            width: 66.66667%;
        }

        .row > .off-8-mobile {
            margin-left: 66.66667%;
        }

        .row > .col-9-mobile {
            width: 75%;
        }

        .row > .off-9-mobile {
            margin-left: 75%;
        }

        .row > .col-10-mobile {
            width: 83.33333%;
        }

        .row > .off-10-mobile {
            margin-left: 83.33333%;
        }

        .row > .col-11-mobile {
            width: 91.66667%;
        }

        .row > .off-11-mobile {
            margin-left: 91.66667%;
        }

        .row > .col-12-mobile {
            width: 100%;
        }

        .row > .off-12-mobile {
            margin-left: 100%;
        }

        .row.gtr-0 {
            margin-top: 0;
            margin-left: 0px;
        }

            .row.gtr-0 > * {
                padding: 0 0 0 0px;
            }

            .row.gtr-0.gtr-uniform {
                margin-top: 0px;
            }

                .row.gtr-0.gtr-uniform > * {
                    padding-top: 0px;
                }

        .row.gtr-25 {
            margin-top: 0;
            margin-left: -5px;
        }

            .row.gtr-25 > * {
                padding: 0 0 0 5px;
            }

            .row.gtr-25.gtr-uniform {
                margin-top: -5px;
            }

                .row.gtr-25.gtr-uniform > * {
                    padding-top: 5px;
                }

        .row.gtr-50 {
            margin-top: 0;
            margin-left: -10px;
        }

            .row.gtr-50 > * {
                padding: 0 0 0 10px;
            }

            .row.gtr-50.gtr-uniform {
                margin-top: -10px;
            }

                .row.gtr-50.gtr-uniform > * {
                    padding-top: 10px;
                }

    .row {
        margin-top: 0;
        margin-left: -20px;
    }

        .row > * {
            padding: 0 0 0 20px;
        }

        .row.gtr-uniform {
            margin-top: -20px;
        }

            .row.gtr-uniform > * {
                padding-top: 20px;
            }

        .row.gtr-150 {
            margin-top: 0;
            margin-left: -30px;
        }

            .row.gtr-150 > * {
                padding: 0 0 0 30px;
            }

            .row.gtr-150.gtr-uniform {
                margin-top: -30px;
            }

                .row.gtr-150.gtr-uniform > * {
                    padding-top: 30px;
                }

        .row.gtr-200 {
            margin-top: 0;
            margin-left: -40px;
        }

            .row.gtr-200 > * {
                padding: 0 0 0 40px;
            }

            .row.gtr-200.gtr-uniform {
                margin-top: -40px;
            }

                .row.gtr-200.gtr-uniform > * {
                    padding-top: 40px;
                }
}

/* Container */

.container {
    margin: 0 auto;
    width: 1400px;
}

#footer > div.container {
    width: 100%;
    max-width: 80%;
}

.articles > .container {
    width: 100%;
    max-width: 80%;
}

#cta > .container {
    width: 100%;
    max-width: 80%;
}

.services > .container {
    width: 100%;
    max-width: 80%;
}

#article-list .container {
    max-width: 75% !important;
    width: 100% !important;
}

    #article-list .container form {
        width: 100% !important;
    }

#contact .container {
    width: 100%;
    max-width: 80%;
}

@media screen and (max-width: 1680px) {

    .container {
        width: 1200px;
    }
}

@media screen and (max-width: 1280px) {

    .container {
        width: 1000px;
    }
}

@media screen and (max-width: 1080px) {

    .container {
        width: 95%;
    }
}

@media screen and (max-width: 960px) {

    .container {
        width: 95%;
    }
}

@media screen and (max-width: 736px) {

    .container {
        width: 90%;
    }

    .pageHeader {
        display: none;
    }
}

/* Sections/Articles */

section, article {
    margin-bottom: 3em;
}

    section > :last-child, section:last-child, article > :last-child, article:last-child {
        margin-bottom: 0;
    }

.row > section, .row > article {
    margin-bottom: 0;
}

/* Small Article & Feed */

.latest-article, .latest-feed {
    padding-top: 0;
    margin-bottom: 1.5em;
}

    .latest-article h1, .latest-feed h1 {
        padding: 0.4em 0em 0.3em 0em;
        margin: -2px -1px 0px -1px;
        font-size: 1.6em;
        font-weight: 600;
        letter-spacing: 2px;
        color: #fff;
        border: 1px solid #000;
        border-bottom: none;
        background-color: #2c0404;
    }

    .latest-article a, .latest-feed a {
        text-decoration: none;
    }

        .latest-article a:hover h1, .latest-feed a:hover h1 {
            background-color: #b72429;
        }


.small-article, .small-feed {
    padding: 1em;
    display: flex;
}

.small-feed {
    padding-top: 0;
}

.small-article .container {
    margin: 0;
    padding: 0;
}

.small-article a:hover h3, .small-article a:hover h5, .small-feed a:hover h3 {
    color: #da4247;
}

.small-article .content {
    width: 100%;
    text-align: center;
    padding-right: 1em;
}

.small-feed .content {
    width: 35%;
    text-align: left;
    margin: 0em 0.2em 0em 0.2em;
}

.preview {
    width: 60%;
}

.small-article .preview {
    padding-left: 1em;
}

.small-article h3 {
    margin-bottom: 0.8em;
    font-size: 1.4em;
    font-weight: 400;
    text-align: center;
}

.small-feed h3 {
    font-size: 1em;
    font-weight: 400;
}

.small-feed span {
    font-size: 0.9em;
}

.small-feed small {
    color: black;
    font-size: 10px;
}

.small-article h4 {
    font-size: 1.2em;
}

.small-article h5 {
    padding-top: 0.5em;
    font-size: 1em;
    font-weight: 400;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.small-article a:first-child h5 {
    border-top: none !important;
}

/*
.small-article h6 {
    font-size: 0.7em;
}*/

.small-article img, .small-feed img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
}

/* Article List */

.old-header {
    padding: 0.6em 0;
    text-align: center;
    font-size: 2em;
    color: #b72429;
}

#article-list a:hover {
    text-decoration: none;
}

#article-list .link-list .list-body {
    margin: 0;
    padding: 0.5em 3em;
}

#article-list .list-article {
    margin: 0.5em 0;
}

.reframe {
    width: 100%;
    height: 15em;
    overflow: hidden;
}

.reframe-main {
    width: 100%;
    overflow: hidden;
}

#article-list .link-list .list-article img {
    height: 100%;
    filter: grayscale(70%);
}

#article-list .link-list .list-article h3 {
    font-size: 1.3em;
    font-weight: 500;
    color: #b72429;
}

#article-list .link-list .list-article h4 {
    font-size: 1.1em;
}

#article-list .link-list:hover {
    text-decoration: none;
}

    #article-list .link-list:hover .list-body h3 {
        font-weight: 600;
    }

    #article-list .link-list:hover .list-body p {
        text-decoration: none;
        color: #841a1d;
    }

    #article-list .link-list:hover img {
        filter: none;
    }


#article-list .list-icons {
    margin-top: 0.4em;
    padding: 0.6em 0;
}

    #article-list .list-icons i, #article-list .list-icons span {
        padding: 0.3em;
        border: 1px solid rgba(132,26,29,0.5);
        border-radius: 5px;
    }

    #article-list .list-icons span {
        padding: 0.2em 0.45em;
    }

    #article-list .list-icons a:hover * {
        background-color: #841a1d;
        color: #fff !important;
    }

    #article-list .list-icons i.active, #article-list .list-icons span.active {
        color: white;
        background-color: #b72429;
        -moz-appearance: none;
        -webkit-appearance: none;
        -ms-appearance: none;
        appearance: none;
        -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url(images/bg01.png);
        background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url(images/bg01.png);
        background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url(images/bg01.png);
        background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url(images/bg01.png);
        ;
    }

    #article-list .list-icons span.active {
        font-weight: 400;
    }

#article-list .no-article h1 {
    font-size: 1.5em;
    line-height: 1.5em;
    margin: 0.5em 0;
}

.first-post-preview {
    padding: 0.8em 0em;
    border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
}

    .first-post-preview img {
        max-width: 100%;
    }

    .first-post-preview h3 {
        font-size: 1.8em !important;
        font-weight: 700;
        padding: 0 0 0.3em 0;
    }

    .first-post-preview h4 {
        font-size: 1.3em;
        font-weight: 300;
        padding: 1em 0;
    }

    .first-post-preview a {
        color: #da4247;
        text-decoration: none
    }

        .first-post-preview a:hover h3 {
            color: #da4247;
        }

        .first-post-preview a:hover {
            color: #3b0607;
        }

.not-first-article > li {
    border: none !important;
    border-radius: 0px !important;
    margin: 10px 2px 0px 0px !important;
}

.not-first-article h3 {
    color: #da4247;
    font-weight: 600;
    padding: 0.3em 0px !important;
}

.not-first-article h4 {
    color: #da4247;
    font-weight: 300;
    padding-bottom: 0.5em;
}

.not-first-article .article-date {
    padding-bottom: 0.2em;
}

.not-first-article img {
    width: 90%;
    filter: grayscale(80%);
    margin-bottom: 0.2em;
}

.not-first-article > li:hover {
    background-color: #da4247 !important;
}

    .not-first-article > li:hover h3 {
        color: white !important;
        font-weight: 700;
    }

    .not-first-article > li:hover h4 {
        color: white !important;
        font-weight: 400;
    }

    .not-first-article > li:hover .article-date {
        color: white !important;
    }

    .not-first-article > li:hover img {
        filter: grayscale(0%);
    }

.search-article {
    padding-bottom: 1em;
    margin: 0;
}

    .search-article label {
        color: #841a1d;
        font-weight: 400;
    }

/* Paging */

#paging {
    padding-top: 0.9em;
    display: flex;
    justify-content: space-between;
}

.paging-block {
    color: #b72429;
    font-weight: 700;
}

/* Article */

#article-container {
    color: #333447;
    max-width: 90%;
}


    #article-container h3 {
        color: #dc3545;
        margin-bottom: 0.5em;
    }

    #article-container h2 {
        font-weight: 500;
        margin-bottom: 0.5em;
        line-height: 1em;
    }

    #article-container h3 {
        margin-top: 1em;
        font-size: 1.2em;
        font-weight: 400;
        color: #da4247;
    }

    #article-container header {
        margin-bottom: 1.5em;
        padding-bottom: 0.7em;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    #article-container #sidebar header {
        margin-bottom: 0em;
        padding-bottom: 0em;
        border-bottom: none;
    }

.tag {
    font-size: 0.6em;
    color: #dedede !important;
    background-color: #b72429;
    border-radius: 20px;
    padding: 0.4em 0.5em 0.4em 0.5em;
}

    .tag:hover {
        background-color: #da4247;
    }

/* Images */

.image {
    border: 0;
    display: inline-block;
    position: relative;
    border-radius: 5px;
}

    .image img {
        display: block;
        border-radius: 5px;
    }

    .image.left {
        display: block;
        float: left;
        margin: 0 2em 2em 0;
        position: relative;
        top: 0.25em;
    }

        .image.left img {
            display: block;
            width: 100%;
        }

.post img {
    max-height: 150px;
    max-width: 100%;
    height: auto !important;
    width: auto !important;
    margin-left: auto;
    margin-right: auto;
}

/* Brand Logo */

#brand-logo {
    margin-top: 1em;
    width: 200px;
    height: auto;
}

.image {
    display: inline-block;
}

    .image img {
        display: block;
        width: 100%;
    }

    .image.featured {
        display: block;
        width: 100%;
        margin: 0 0 2em 0;
    }

    .image.full {
        display: block;
        width: 100%;
    }

    .image.left {
        float: left;
        margin: 0 2em 2em 0;
    }

    .image.centered {
        display: block;
        margin: 0 0 2em 0;
    }

        .image.centered img {
            margin: 0 auto;
            width: auto;
        }

/* Lists */

ul {
    list-style: disc;
    padding-left: 1.25em;
}

    ul > li {
        padding-left: 0.25em;
        margin: 0 1em;
    }

    ul.alt {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        ul.alt > li {
            display: block;
            border-top: solid 1px #aaa;
            border-top-color: rgba(0, 0, 0, 0.1);
            line-height: 2.5em;
            padding-left: 0;
            display: block;
            border-top: solid 1px #aaa;
            border-top-color: rgba(0, 0, 0, 0.1);
            line-height: 2.5em;
            padding-left: 0;
            padding-top: 10px;
            padding-bottom: 10px;
        }

            ul.alt > li:first-child {
                padding-top: 0;
                border-top: 0;
            }

        ul.alt a {
            text-decoration: none;
            color: #888787;
        }

            ul.alt a:hover {
                color: #DA7E79;
            }

ol {
    list-style: decimal;
    padding-left: 1.25em;
}

    ol > li {
        padding-left: 0.25em;
    }

/* Lists */

ul.lists {
    text-align: center;
    padding-left: 0;
    list-style: none;
}

    ul.lists > li {
        display: inline-block;
        padding: 0em 1em;
    }

/* Main */

#main {
    position: relative;
    padding: 2em 0em 2em 0em;
    background-color: #fff;
    justify-content: center;
}

    #main.homepage {
        text-align: center;
        background-color: #3b0607 !important;
    }

        #main.homepage h3 {
            display: block;
            font-size: 1.3em;
            color: #fff;
        }

        #main.homepage h2 {
            font-size: 2.7em;
            font-variant: small-caps;
            font-weight: 500;
            color: #fff;
            text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
        }

    #main .pennant, #main .icon {
        border-color: #c9c9c9;
    }

    #main .actions {
        padding-top: 1em;
    }

    #main .row.clearfix a:hover {
        color: #841a1d;
    }

/* Featured */

ul.featured {
    text-align: center;
    padding-left: 0;
    list-style: none;
}

    ul.featured a {
        text-decoration: none;
    }

    ul.featured > li {
        display: inline-block;
        width: 30%;
        margin: 1.5em 1.5em 0 0;
        padding: 0em 0.50em;
        vertical-align: top;
        background-color: #fff;
        padding-top: 10px;
        border: 1px solid #841a1d;
        border-radius: 10%;
    }

        ul.featured > li h3 {
            color: #3b0607 !important;
        }

ul.featuredhover > li:hover {
    background-color: #b72429;
    border-color: #fff;
    color: #fff;
}

    ul.featuredhover > li:hover > a {
        background-color: #b72429;
        border-color: #fff;
        color: #fff;
    }

    ul.featuredhover > li:hover h3 {
        color: #fff !important;
        font-weight: bold;
    }

/* Staff */

ul.staff {
    margin: 0em 0em 3em 0em;
    padding: 2em 0em 1.5em 0em;
    list-style: none;
    text-align: center;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1), 0px -1px 0px rgba(0, 0, 0, 0.1);
}

    ul.staff > li {
        display: inline-block;
        width: 160px;
        height: 160px;
        margin: 0 0.75em;
        background: #DA7E79;
        border-radius: 50%;
        padding-left: 0;
    }

    ul.staff img {
        border-radius: 50%;
    }

/* Social */

ul.social {
    margin: 3em 0em;
    padding: 2em 0em;
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1), 0px -1px 0px rgba(255, 255, 255, 0.1);
    text-align: center;
    list-style: none;
}

    ul.social > li {
        display: inline-block;
        margin: 0;
    }

#footer ul.social > li {
    margin: 0 1em;
}

ul.social > li span {
    display: none;
}

ul.social > li a {
    font-size: 2em;
    display: inline-block;
    width: 60px;
    height: 60px;
    padding-top: 11px;
    background: #da4247;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: #333131;
    text-decoration: none;
    border: 1px solid transparent;
}

ul.social > li:hover a {
    background: #fff;
}



a.fa-twitter:hover {
    color: #00aced !important;
    border: 1px solid #00aced;
}

a.fa-linkedin-in:hover {
    color: #0e76a8 !important;
    border: 1px solid #0e76a8;
}

a.fa-facebook-f:hover {
    color: #0e76a8 !important;
    border: 1px solid #0e76a8;
}

a.fa-youtube:hover {
    color: #FF0000 !important;
    border: 1px solid #FF0000;
}

/* Partenaires */

ul.partenaires {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.2em 0.2em;
    padding: 0em 0em /*2em*/ 0em 0em;
    justify-content: center;
    text-align: center;
}

    ul.partenaires > li {
        display: inline-block;
        padding: 0px 3px;
        margin: 1em 3em;
        vertical-align: middle;
    }


.partenaires > li > a > img {
    /*max-height: 150px;
    width: 200px;*/
    max-height: 200px;
    width: 250px;
    height: auto;
    filter: grayscale(80%);
}

img.top_logo {
    /*max-height: 300px !important;
    width: 370px !important;*/
    max-height: 200px;
    width: 250px;
    height: auto;
    filter: grayscale(80%);
}

@media (max-width: 992px) {
    img.top_logo {
        height: 80px;
        width: auto;
    }
}

.partenaires > li > a > img:hover {
    filter: grayscale(0%);
}

/* Icons */

.icon.major {
    margin-top: 0.7em !important;
    text-align: center;
    cursor: default;
    color: #fff;
    border-radius: 100%;
    display: inline-block;
    width: 3.5em;
    height: 3.5em;
    line-height: 3.75em;
    box-shadow: 0 0 0 7px white, 0 0 0 8px rgba(132,26,29, 0.7);
    margin: 0 0 1em 0;
}

    .icon.major:before {
        font-size: 1.5em;
    }

ul.icons {
    cursor: default;
    padding-left: 0;
    list-style: none;
}

    ul.icons > li {
        display: inline-block;
        padding-left: 0;
    }

    ul.icons a {
        display: inline-block;
        width: 2em;
        height: 2em;
        line-height: 2em;
        text-align: center;
        border: 0;
    }

/* Menu */

ul.menu {
    cursor: default;
    padding-left: 0;
    list-style: none;
}

    ul.menu > li {
        display: inline-block;
        line-height: 1em;
        border-left: solid 1px #ddd;
        padding: 0 0 0 0.5em;
        margin: 0 0 0 0.5em;
    }

        ul.menu > li:first-child {
            border-left: 0;
            padding-left: 0;
            margin-left: 0;
        }

/* Team */

.team img {
    height: auto;
}

    .team img:hover {
        opacity: 0.7;
    }

.team h3 {
    font-size: 1.2em;
    font-weight: 400;
}

.team-division {
    margin-bottom: 1em;
}

/* Missions */

.missions h3 {
    font-size: 1.3em;
    font-weight: 500;
}

.missions h4 {
    font-size: 1.2em;
    font-weight: 400;
}

/* Publications */

.publications .tabcontent > .row, .publications #old-collapse > .row {
    margin: 0;
    padding: 0;
}

.publications form {
    margin: 0;
    width: 100%;
}

    .publications form .row {
        margin: 0;
    }

        .publications form .row > div {
            padding: 0;
        }

.publications #old-wrapper {
    padding: 1em 0 0 0.7em;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.publications h3 {
    font-size: 1.2em;
    color: #841a1d;
    margin-bottom: 0.8em;
}

.publications a:hover {
    text-decoration: none;
    color: #b72429;
}

.publications .button-wrapper {
    text-align: center;
}

.pdf {
    margin: 1em 0;
    padding: 0 1.5em;
}

    .pdf h4 {
        font-size: 1em;
        font-weight: 400;
    }

    .pdf h5 {
        font-size: 0.9em;
    }

    .pdf i {
        font-size: 0.8em;
    }

    .pdf img {
        width: 100%;
    }

    .pdf a:hover {
        text-decoration: none;
    }

        .pdf a:hover > .row {
            background-color: #fff7f7;
        }

        .pdf a:hover h4 {
            color: #841a1d;
            font-weight: 600;
        }

#baromater .fa {
    font-size: 2.5em;
    color: #841a1d;
}

/* Search */

.searchresults > div {
    padding: 0;
    margin: 0;
}

.search form {
    margin: 0;
    width: 100%;
}

.search label {
    margin-bottom: 0.3em;
    color: #841a1d;
    font-weight: 400;
    font-size: 1em;
}

.search .checkboxes {
    margin-top: 0.5em;
    display: flex;
    justify-content: space-between
}

.search h1 {
    font-size: 1.4em;
}

.search h2 {
    font-size: 1.2em;
    font-weight: 500;
}

.search h3 {
    font-weight: 600;
}

.search .searchresults {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
    width: 100% !important;
}

.search .page a {
    text-decoration: none;
}

    .search .page a:hover h3 {
        color: #841a1d;
    }

    .search .page a:hover h4 {
        color: #b72429;
    }

.search header {
    margin: 1.5em 0;
    border-bottom: 1px solid #e1e2ed;
}

.search input, .search select {
    line-height: 1em;
    height: 2.5em;
}

/* Tabs */

.tab {
    overflow: hidden;
}

    .tab .row {
        margin: 0;
    }

    .tab button {
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        color: white;
        font-size: 0.8em;
    }

.publications .tab button {
    font-size: 1em;
}

.tab button.active {
    background-color: #841a1d;
}

.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: 2px solid #b72429;
}

/* Partner page */

.partners h3 {
    font-size: 1.3em;
    font-weight: 500;
    margin: 0.8em 0 0.3em 0;
}

.partners a:hover {
    text-decoration: none;
}

    .partners a:hover h4 {
        font-weight: 400;
        color: #b72429;
    }

/* Actions */

ul.actions {
    display: -moz-flex;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    cursor: default;
    list-style: none;
    margin-left: -1em;
    padding-left: 0;
}

    ul.actions li {
        padding: 0 0 0 1em;
        vertical-align: middle;
    }

    ul.actions.special {
        -moz-justify-content: center;
        -webkit-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        width: 100%;
        margin-left: 0;
    }

        ul.actions.special li:first-child {
            padding-left: 0;
        }

    ul.actions.stacked {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: 0;
    }

        ul.actions.stacked li {
            padding: 1.3em 0 0 0;
        }

            ul.actions.stacked li:first-child {
                padding-top: 0;
            }

    ul.actions.fit {
        width: calc(100% + 1em);
    }

        ul.actions.fit li {
            -moz-flex-grow: 1;
            -webkit-flex-grow: 1;
            -ms-flex-grow: 1;
            flex-grow: 1;
            -moz-flex-shrink: 1;
            -webkit-flex-shrink: 1;
            -ms-flex-shrink: 1;
            flex-shrink: 1;
            width: 100%;
        }

            ul.actions.fit li > * {
                width: 100%;
            }

        ul.actions.fit.stacked {
            width: 100%;
        }

@media screen and (max-width: 736px) {

    ul.actions:not(.fixed) {
        -moz-flex-direction: column;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: 0;
        width: 100% !important;
    }

        ul.actions:not(.fixed) li {
            -moz-flex-grow: 1;
            -webkit-flex-grow: 1;
            -ms-flex-grow: 1;
            flex-grow: 1;
            -moz-flex-shrink: 1;
            -webkit-flex-shrink: 1;
            -ms-flex-shrink: 1;
            flex-shrink: 1;
            padding: 1em 0 0 0;
            text-align: center;
            width: 100%;
        }

            ul.actions:not(.fixed) li > * {
                width: 100%;
            }

            ul.actions:not(.fixed) li:first-child {
                padding-top: 0;
            }

            ul.actions:not(.fixed) li input[type="submit"],
            ul.actions:not(.fixed) li input[type="reset"],
            ul.actions:not(.fixed) li input[type="button"],
            ul.actions:not(.fixed) li button,
            ul.actions:not(.fixed) li .button {
                width: 100%;
            }

                ul.actions:not(.fixed) li input[type="submit"].icon:before,
                ul.actions:not(.fixed) li input[type="reset"].icon:before,
                ul.actions:not(.fixed) li input[type="button"].icon:before,
                ul.actions:not(.fixed) li button.icon:before,
                ul.actions:not(.fixed) li .button.icon:before {
                    margin-left: -0.5em;
                }
}

/* Forms */

form {
    width: 80%;
    margin: 0em auto;
}

    form input[type="text"], form input[type="password"], form input[type="email"] {
        -moz-transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        -webkit-transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        -ms-transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        -webkit-appearance: none;
        width: 100%;
        border: 0;
        padding: 0.70em 1em;
        font-size: 1em;
        font-family: 'Roboto', sans-serif;
        font-weight: 300;
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0);
        outline: none;
        color: #888787;
    }

    form select, form textarea {
        -moz-transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        -webkit-transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        -ms-transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        transition: background-color 0.25s ease-in-out, border-color 0.35s ease-in-out;
        -webkit-appearance: none;
        width: 100%;
        border: 0;
        padding: 0.70em 1em;
        font-size: 1em;
        font-family: 'Roboto', sans-serif;
        font-weight: 300;
        border-radius: 6px;
        background: rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0);
        outline: none;
        color: #888787;
    }

    form input[type=text]:focus, form input[type=password]:focus {
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    form select:focus {
        background: rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    form textarea {
        height: 10em;
    }

        form textarea:focus {
            background: rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

    form .formerize-placeholder, form ::-webkit-input-placeholder, form :-moz-placeholder, form ::-moz-placeholder, form :-ms-input-placeholder {
        color: #93989f !important;
    }

    form ::-moz-focus-inner {
        border: 0;
    }

input[type="checkbox"],
input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    float: left;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}

    input[type="checkbox"] + label,
    input[type="radio"] + label {
        text-decoration: none;
        color: #2c0404;
        cursor: pointer;
        display: inline-block;
        font-size: 1em;
        font-weight: 400;
        padding-left: 2.4em;
        padding-right: 0.75em;
        position: relative;
    }

        input[type="checkbox"] + label:before,
        input[type="radio"] + label:before {
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
            text-transform: none !important;
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
        }

        input[type="checkbox"] + label:before,
        input[type="radio"] + label:before {
            background: #f0f0f0;
            content: '';
            display: inline-block;
            font-size: 0.8em;
            height: 2.0625em;
            left: 0;
            line-height: 2.0625em;
            position: absolute;
            text-align: center;
            top: 0;
            width: 2.0625em;
        }

    input[type="checkbox"]:checked + label:before,
    input[type="radio"]:checked + label:before {
        background: #b72429;
        color: #ffffff;
        content: '\f00c';
    }

    input[type="checkbox"]:focus + label:before,
    input[type="radio"]:focus + label:before {
        box-shadow: 0 0 0 2px #e96c77;
    }

    input[type="radio"] + label:before {
        border-radius: 100%;
    }

::-webkit-input-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

:-moz-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

::-moz-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

:-ms-input-placeholder {
    color: #aaa !important;
    opacity: 1.0;
}

/* Tables */

table {
    width: 100%;
}

    table tbody tr:nth-child(2n+2) {
        background: #f4f4f4;
    }

    table td {
        padding: 0.5em 1em 0.5em 1em;
    }

    table th {
        text-align: left;
        font-weight: 400;
        padding: 0.5em 1em 0.5em 1em;
    }

    table thead {
        background: #444;
        color: #fff;
    }

    table tfoot {
        background: #eee;
    }

/* Buttons */

.button, button {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
    background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
    background-color: #b72429;
    border-radius: 5px;
    border: 0;
    color: white !important;
    cursor: pointer;
    display: inline-block;
    padding: 0 1.5em;
    line-height: 2.75em;
    min-width: 9em;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.025em;
}

    .button:hover, button:hover {
        background-color: #841a1d;
        color: #fff !important;
    }

    .button.alt {
        padding: 0.50em 2em 0.50em 2em;
        border-radius: 5px;
        border-color: rgba(0, 0, 0, 0.1);
        color: #333131 !important;
    }

        .button.alt:hover {
            background: #333131;
            color: #FFF !important;
        }

/* FA Icons */

.pennant {
    position: relative;
    display: inline-block;
    margin-bottom: 0em;
    padding: 0.40em;
    border-radius: 0%;
    border: 0px solid #b72429;
    cursor: default;
}

.icon {
    position: relative;
    display: inline-block;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    border: 1px solid #b72429;
    line-height: 3em;
    font-size: 1.8em;
    color: #fff;
    text-decoration: none;
    background-color: #b72429;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 0%);
}

    .icon.solid:before {
        font-weight: 900;
    }

    .icon.brands:before {
        font-family: 'Font Awesome 5 Brands';
    }

    .icon:before {
        display: inline-block;
        font-family: 'Font Awesome 5 Free';
        font-size: 1.25em;
        text-decoration: none;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

/* Header */

#header {
    font-size: 0.95em;
    text-align: center;
    background-color: #333;
    padding: 0;
    margin: 0;
    z-index: 100;
}

#logo-bar {
    text-align: center;
    background-color: white !important; /*//#333;*/
    padding: 0;
    margin: 0;
    z-index: 100;
    height: 100px;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 100;
}

#header h1 {
    padding: 0;
    margin: 0;
}

    #header h1 a {
        font-size: 1.5em;
        letter-spacing: -0.025em;
        border: 0;
    }

#nav {
    cursor: default;
    background-color: white !important;
    /*background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");
    background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");*/
    padding: 0;
    margin: 0;
}

    #nav:after {
        content: '';
        display: block;
        width: 100%;
        height: 0.75em;
        background-color: #e4332d; /*#b72429*/
        background-image: url("images/bg01.png");
    }

    #nav > ul {
        margin: 0;
        padding: 0;
    }

        #nav > ul > li {
            position: relative;
            display: inline-block;
            margin-left: 1em;
        }

            #nav > ul > li a {
                color: /*#c0c0c0;*/ #333 !important;
                text-decoration: none;
                border: 0;
                display: block;
                padding: 1.5em 0.5em 1.35em 0.5em;
            }

            #nav > ul > li:first-child {
                margin-left: 0;
            }

            #nav > ul > li:hover a {
                color: #fff;
            }

            #nav > ul > li.current {
                font-weight: 600;
            }

                #nav > ul > li.current:before {
                    -moz-transform: rotateZ(45deg);
                    -webkit-transform: rotateZ(45deg);
                    -ms-transform: rotateZ(45deg);
                    transform: rotateZ(45deg);
                    width: 1em; /*0.75em;*/
                    height: 1em; /*0.75em;*/
                    content: '';
                    display: block;
                    position: absolute;
                    bottom: -0.5em;
                    left: 50%;
                    margin-left: -0.375em;
                    background-color: #e4332d; /*#b72429*/
                    background-image: url("images/bg01.png");
                }

#logo-bar a.current:before {
    -moz-transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    width: 1.5em;
    height: 1.5em;
    content: '';
    display: block;
    position: absolute;
    bottom: -0.5em;
    left: 50%;
    top: -0.8em;
    margin-left: -0.375em;
    background-color: #b72429;
    background-image: url("images/bg01.png");
}

#nav > ul > li.current a {
    color: #e4332d !important; /*#fff;*/
}

#nav > ul > li.active a {
    color: #fff;
}

#nav > ul > li.active.current:before {
    opacity: 0;
}

#nav > ul > li > ul {
    display: none;
}

#nav > ul > li i, #nav #lang img {
    margin-right: 0.3em;
}

#nav ul.submenu {
    text-align: left !important;
}

/* Dropotron */

.dropotron {
    background-image: -moz-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)), url("images/bg01.png");
    background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)), url("images/bg01.png");
    background-image: -ms-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)), url("images/bg01.png");
    background-image: linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)), url("images/bg01.png");
    background-color: #333;
    border-radius: 5px;
    color: #fff;
    min-width: 10em;
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 1em 1em 0 rgba(0, 0, 0, 0.5);
    list-style: none;
}

    .dropotron > li {
        line-height: 2em;
        padding: 0 1.1em 0 1em;
    }

        .dropotron > li > a {
            color: #c0c0c0;
            text-decoration: none;
            border: 0;
        }

        .dropotron > li.active > a, .dropotron > li:hover > a {
            color: #fff;
        }

    .dropotron.level-0 {
        border-radius: 0 0 5px 5px;
        font-size: 0.9em;
        padding-top: 0;
        margin-top: -1px;
    }


/* Banner */

#banner {
    text-align: center;
    position: relative;
    border-bottom: 2px solid #841a1d;
    height: 80vh;
}

    #banner .banner-image {
        height: 100%;
        width: 100%;
        opacity: 0.4;
        background-position: center center;
        background-size: cover;
    }

section#banner {
    margin-bottom: 0;
    background-size: cover;
}

section.services {
    margin-bottom: 0;
    border-bottom: 2px solid #b72429;
}

section.articles {
    padding-top: 5.5em;
    margin-bottom: 0;
}

.arrow_box {
    position: relative;
    background: #ffffff;
}

    .arrow_box:after, .arrow_box:before {
        top: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .arrow_box:after {
        margin-top: 1.5em;
        border-width: 60px;
        margin-left: -60px;
    }

    .arrow_box:before {
        margin-top: 1.5em;
        border-color: rgba(194, 225, 245, 0);
        border-top-color: #333131;
        border-width: 64px;
        margin-left: -64px;
    }

.articles > .arrow_box:before {
    border-color: rgba(0, 0, 0, 0);
    border-top-color: #333131;
}

.articles > .arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: white;
}

.services > .arrow_box:before {
    border-color: rgba(194, 225, 245, 0);
    border-top-color: #b72429;
}

.services > .arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #fff;
}

section.moreinfo {
    margin-bottom: 0;
}

#banner header {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(27, 27, 27, 0.75);
    padding: 1.5em 0;
    margin: 0;
}

    #banner header h2 {
        display: inline-block;
        margin: 0;
        font-size: 1.5em;
        font-weight: 400;
        color: #fff;
        vertical-align: middle;
    }

    #banner header h3 {
        font-size: 1em;
        color: #fff;
        opacity: 0.75;
    }


/* CTA */

#cta {
    text-align: center;
    padding: 5.5em 0 3.5em 0;
    /*border-bottom: 2px solid #841a1d;*/
}

    #cta h3 {
        display: inline-block;
        vertical-align: middle;
        color: white;
        margin-bottom: 1em;
        line-height: 1.75em;
        font-weight: 600;
        font-size: 1.5em;
        margin-bottom: 0em;
    }

    #cta header {
        margin-bottom: 1em;
    }

        #cta header:after {
            content: "";
            display: block;
            margin: 0 auto;
            width: 60%;
            padding-top: 20px;
            border-bottom: 1px solid rgba(236,161,164,0.8);
        }

    #cta .button {
        text-decoration: none;
    }

    #cta footer {
        margin-top: 1.5em;
    }

    #cta header .button {
        vertical-align: middle;
        margin-left: 1em;
    }

/* Wrapper */

.wrapper {
    padding: 3em 0 2em 0;
}

    .wrapper.services {
        background: #fff;
    }

    .wrapper.articles {
        background: white;
        border-bottom: 2px solid #333131;
    }

    .wrapper.moreinfo {
        background-color: #da4247;
        background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
        background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
        background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
        background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)), url("images/bg01.png");
        color: #fff;
    }

/* Box */

section.services section {
    padding: -1px;
}

#banner a:hover {
    text-decoration: none !important;
}

.box.highlight {
    text-align: center;
    font-size: 1.1rem;
    padding: 0.7em 0.7em 0em 0.7em;
    border-radius: 5px;
    border: 3px solid transparent;
    /*background-color: white;*/
    background-color: rgba(255,255,255,0.9);
    color: #333131;
    height: 100%;
}

    .box.highlight:hover {
        border: 3px solid rgba(132,26,29, 0.8);
    }

        .box.highlight:hover h3 {
            color: #b72429;
        }

    .box.highlight h3 {
        margin-bottom: 0.5em;
        line-height: 1.75em;
        font-weight: 600;
        font-size: 1.5em;
    }

.services section > a:hover {
    text-decoration: none;
}

.services .highlight:hover h3 {
    color: #841a1d;
}

/* Posts on Home*/

.post {
    position: relative;
    margin: 0 0 2em 0;
    border-radius: 5px;
    border: 1px solid transparent;
}

    .post:hover {
        border: 1px solid rgba(0, 0, 0, 0.2);
    }

    .post:after {
        content: '';
        display: block;
        clear: both;
    }

    .post .inner > :last-child {
        margin-bottom: 0;
    }

    .post .inner {
        text-align: center;
    }

        .post .inner * {
            color: #333131;
        }

        .post .inner .tag {
            color: white;
        }

        .post .inner > p {
            margin-top: 0.5em;
        }

    .post h3 {
        line-height: 1.75em;
        font-weight: 600;
        font-size: 1.5em;
    }

    .post a:hover {
        text-decoration: none;
    }

        .post a:hover h3 {
            color: #da4247;
        }

    .post a > p {
        text-decoration: underline;
    }

    .post a:hover p {
        color: #da4247;
        text-decoration: none;
    }

/* Sidebar */

#sidebar section, #sidebar2 section {
    margin-top: 3em;
}

    #sidebar section:first-child, #sidebar2 section:first-child {
        border-top: 0;
        margin-top: 0;
        padding-top: 0;
    }

#sidebar header, #sidebar2 header {
    margin-bottom: 1em;
}

    #sidebar header h2, #sidebar2 header h2 {
        font-size: 1.6em;
    }

#sidebar .button, #sidebar2 .button {
    width: auto;
    margin: 2em 0em 0em 0em;
}

#sidebar .default, #sidebar2 .default {
    margin-top: 2em;
}

    #sidebar .default li, #sidebar2 .default li {
        text-align: left;
    }

#sidebar ul.social {
    margin: 0.3em 0em;
    padding: 0.3em 0em;
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1), 0px -1px 0px rgba(255, 255, 255, 0.1);
    text-align: center;
    list-style: none;
}

    #sidebar ul.social > li a {
        font-size: 1.5em;
        display: inline-block;
        width: 50px;
        height: 50px;
        padding-top: 0.2em;
        background: #b72429;
        border-radius: 50%;
        line-height: 40px;
        text-align: center;
        color: white;
        text-decoration: none;
    }

    #sidebar ul.social > li:hover a {
        color: #b72429;
        background: none;
    }

#sidebar img {
    max-width: 100%;
    border-radius: 4px;
    width: auto;
    height: auto;
    position: inherit;
}

#sidebar ul.alt li {
    margin: 0;
}

#sidebar .article-date {
    font-size: 0.7em;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
}

#sidebar a:hover {
    text-decoration: none;
}

    #sidebar a:hover * {
        color: #da4247;
    }

#sidebar .newsletter-sidebar {
    text-align: center;
}

#sidebar .alt i {
    color: #b72429;
}

#sidebar section {
    padding: 2em 0;
    margin: 0;
    border-bottom: 1px solid #5b5c6b;
}

    #sidebar section:last-child {
        border-bottom: none;
    }

#sidebar h2 {
    font-size: 1.3em;
    font-weight: 400;
}

#sidebar h3 {
    font-size: 1.2em;
    font-weight: 400;
}

#mapId {
    z-index: 1 !important;
    height: 400px !important;
}

/* Staff */

#staff {
    position: relative;
    padding: 5em 0em 4em 0em;
    background: #f2f1f1;
    text-align: center;
}

    #staff p {
        letter-spacing: -0.02em;
        font-size: 1.3em;
        color: #888787;
    }

/* Tweets */

#tweets {
    position: relative;
    padding: 8em 0em;
    background: #fff url(../../images/pic02.jpg) no-repeat center;
    background-size: cover;
    text-align: center;
    color: #FFF;
}

    #tweets .tweet {
        display: block;
        font-size: 1.5em;
        line-height: 1.25em;
    }

/* Contact */

#contact {
    position: relative;
    padding: 5em 0em 5em 0em;
    background: white;
}

    #contact h1 {
        font-size: 1.4em;
    }

#contact-form .form-control {
    font: Roboto, sans-serif;
    font-weight: 300;
    font-size: 1em;
    color: rgb(136, 135, 135);
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0);
}

#contact-form label {
    margin-bottom: 0.3em;
    color: #841a1d;
    font-weight: 400;
    font-size: 1.2em;
}

#form-outer .error {
    font-size: 0.8em;
    color: #da4247;
}

.field-validation-valid {
    display: none;
}

.validation-summary-valid {
    display: none;
}

/* Newsfeed */

.newsfeed {
    max-width: 90%;
    width: 100%;
}

    .newsfeed #content {
        margin-left: 16em;
    }

#tab-newsfeed {
    display: none;
    border-radius: 5px;
}

    #tab-newsfeed p {
        margin: 0;
        padding: 0.5em 0.2em 0 0.2em;
        line-height: 1.2em;
    }

.tablinks {
    border-radius: 0;
    border-right: 1px solid rgba(225, 226, 237, 0.7) !important;
    background-color: #b72429;
    padding: 1em 0;
    line-height: 1em;
    text-align: center;
}

#tab-newsfeed .tablinks i {
    color: white;
    font-size: 2em;
}

.newsfeed #scoopit-wrapper {
    margin: 0 !important;
    max-width: 100% !important;
}

.newsfeed h1 {
    font-size: 2.3em;
    font-weight: 300;
}

.newsfeed h2 {
    font-size: 1.7em !important;
}

.newsfeed a:hover {
    text-decoration: none;
}

.newsfeed * a:hover {
    font-weight: 400 !important;
    color: #b72429;
}

.newsfeed .scoopit-fulltheme-scoop {
    border: 1px solid rgba(132, 26, 29, 0.4) !important;
}

.newsfeed .scoopit-fulltheme-scoop-source {
    font-size: 0.7em !important;
}

.newsfeed .scoopit-fulltheme-scoop-content {
    font-size: 1em !important;
    line-height: 1.3 !important;
}

.newsfeed .scoopit-fulltheme-scoop-curationcomment {
    line-height: 1.5 !important;
    color: #841a1d !important;
    font-size: 0.8em !important;
    text-align: center !important;
    padding-top: 0.5em !important;
    margin: 0 0.5em 0.5em 0.5em !important;
    width: 80%;
    border: 1px solid #841a1d !important;
    background-color: rgba(183,36,41, 0.1) !important;
}

    .newsfeed .scoopit-fulltheme-scoop-curationcomment > p {
        font-weight: 500 !important;
    }

    .newsfeed .scoopit-fulltheme-scoop-curationcomment::before {
        display: none;
    }

.newsfeed .scoopit-fulltheme-scoop-curationcomment-title {
    color: #841a1d !important;
    font-weight: 700 !important;
}

#sidebar-newsfeed {
    position: fixed;
    z-index: 1;
    top: 12em;
    left: 0;
    width: 16em;
    background-color: #b72429;
    background-image: url("images/bg02.png"), url("images/bg02.png"), url("images/bg01.png");
    background-position: top left, top left, top left;
    background-size: 100% 6em, 100% 6em, auto;
    background-repeat: no-repeat, no-repeat, repeat;
    overflow-x: hidden;
    border-radius: 0px 10px 10px 0px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: none;
}

    #sidebar-newsfeed .row {
        text-align: left;
        line-height: 1.5em;
    }

    #sidebar-newsfeed a {
        padding: 1em !important;
        text-decoration: none;
        font-size: 1em;
        color: #fff7f7;
        display: block;
        border-bottom: 1px solid rgba(225, 226, 237, 0.4);
    }

.newsfeed .icon-newsfeed {
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
}

#sidebar-newsfeed a:last-child {
    border-bottom: none;
}

#sidebar-newsfeed a:hover span {
    font-weight: 400;
}

#sidebar-newsfeed .selected {
    background-color: #3b0607;
    font-weight: 400;
}

#sidebar-newsfeed i {
    font-size: 2em;
}

#tab-newsfeed {
    margin-bottom: 1.5em;
}

    #tab-newsfeed a.selected:hover * {
        color: white;
    }

    #tab-newsfeed a:hover * {
        color: #dd5559;
    }

    #tab-newsfeed a {
        font-size: 1em;
        color: #fff7f7;
    }

    #tab-newsfeed .selected {
        background-color: #841a1d;
        font-weight: 400;
    }

.newsfeed .tabcontent {
    border: none;
}

/* Newsletter */
.newsletter header {
    margin: 0;
}

a.button {
    margin-top: 0 !important;
}

.button-newsletter {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: #b72429;
    border: 0;
    border-radius: 0;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: 900;
    height: 3em;
    letter-spacing: 0.05em;
    line-height: 3em;
    padding: 0 1.75em;
    text-align: center;
    text-decoration: none;
    text-indent: -0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

    .button-newsletter:hover {
        color: black !important;
        background-color: white !important;
        background-image: none;
    }

/* Cookie */
#cookie {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1em 5em;
    font-size: 1em;
    line-height: 1.2em;
    border-top: 1px solid white;
    background: #6890ca;
    color: white;
}

    #cookie a {
        background-color: #333447 !important;
        font-size: 1em;
    }

/* Breadcrumbs */

#breadcrumbs {
    margin-bottom: 1em;
    font-size: 0.8em;
}

    #breadcrumbs a {
        color: #b72429 !important;
    }

        #breadcrumbs a:hover {
            color: #841a1d;
        }

/* Footer */
#footer {
    background-color: #ededed !important;
    position: relative;
    padding: 3em 0em 1em 0em;
    color: #888787;
    background: #e4332d;
    background-color: #ededed;
    border-top: 2px solid #e4332d;
}

    #footer header {
        text-align: center;
        padding-bottom: 2em;
        box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.1);
    }

        #footer header h2 {
            color: #DA7E79;
        }

    #footer ul.alt li {
        border-top-color: #403E3E;
    }

/* Copyright */

.copyright {
    display: block;
    padding: 0em 0em;
    text-align: center;
}

/* Popup */

#popup {
    width: 20em;
    position: fixed;
    top: 60%;
    left: -250em;
    z-index: 2000;
    border: 1px solid #DA7E79;
    border-left: none;
}

.popup-header {
    padding: 0.7em;
    background-color: #3b0607;
    text-align: center;
}

    .popup-header h1 {
        color: white;
        font-size: 1.3em;
        font-weight: 400;
    }

    .popup-header h2 {
        color: white;
        font-size: 1em;
    }

.popup-buttons a:hover {
    text-decoration: none;
}

    .popup-buttons a:hover * {
        color: #da4247;
    }

.popup-deny {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: #333131;
    border: 0;
    border-radius: 0;
    color: #ffffff !important;
    cursor: pointer;
    display: inline-block;
    font-weight: 900;
    height: 3em;
    letter-spacing: 0.05em;
    line-height: 3em;
    padding: 0 1.75em;
    text-align: center;
    text-decoration: none;
    text-indent: -0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

    .popup-deny:hover,
    .popup-deny:focus {
        color: black !important;
        text-decoration: none;
        background-color: white !important;
        background-image: none;
        cursor: pointer;
    }

/* Error */

.error404 i {
    margin-right: 0.5em;
}

.erro404 a * {
    text-decoration: none;
}

/* Wide */
@media screen and (max-width: 1680px) {
    /* Banner */
    #banner {
        min-height: 82vh;
        height: 82vh;
    }

    /* Basic */

    body, input, textarea, select {
        font-size: 13pt;
        line-height: 1.75em;
    }
}

/* Normal */

@media screen and (max-width: 1280px) {

    /* Header */

    #header {
        font-size: 0.8em;
        padding: 0;
    }

        #header h1 {
            padding: 0;
        }

    /* Brand Logo */

    #brand-logo {
        width: 150px;
    }

    /* Banner */

    #banner {
        min-height: 89vh;
        height: 89vh;
    }

    /* CTA */

    #cta {
        padding: 5em 0;
    }

    /* Wrapper */

    .wrapper {
        padding: 3em 0 1em 0;
    }

    .arrow_box:before, .arrow_box:after {
        margin-top: 0.5em;
    }

    /* Lists */
    ul .lists {
        text-align: center;
    }

        ul.lists > li {
            padding: 0em 0.7em;
        }

    /* Staff */

    ul.staff {
        display: block;
        text-align: center;
    }

        ul.staff > li {
            margin: 0 0.50em;
        }

    /* Intro */

    #intro .content {
        padding: 0em 0em;
    }

    /* Last Articles */

    .small-article {
        display: block;
    }

        .small-article .content {
            width: 100%;
            border-right: none;
            padding-bottom: 0.6em !important;
            border-bottom: 2px solid rgba(0, 0, 0, 0.2);
        }

        .small-article .preview {
            padding-left: 0;
            width: 100%;
        }

    .preview {
        vertical-align: bottom;
    }
}

/* Narrow */

@media screen and (max-width: 1080px) {

    #header {
        font-size: 0.8em;
    }

    /* Brand Logo */

    #brand-logo {
        width: 150px;
    }

    /* Banner */

    #banner {
        min-height: 87vh;
        height: 87vh;
    }

    /* Basic */

    body, input, textarea, select {
        font-size: 11pt;
    }

    form {
        width: 90%;
    }

    /* Featured */

    ul.featured > li {
        width: 30%;
        margin: 0 2.5% 5% 0;
        padding-top: 10px;
        border: 0.5px solid #841a1d;
        border-radius: 10%;
    }

    /* Lists */

    ul.lists {
        text-align: center;
    }

        ul.lists > li {
            margin-bottom: 2em;
            padding: 0em 1em;
        }

    /* Staff */

    ul.staff > li {
        margin: 0 0.50em;
    }

    /* Logo */

    #logo a {
        padding-left: 0.70em;
    }

    /* Feed */

    .small-feed {
        display: block;
    }

        .small-feed .content {
            width: 100%;
        }

    #sidebar-newsfeed i {
        font-size: 1.5em;
    }

    /* Search */

    .search form .row {
        margin-left: -20px;
    }

    /* Newsfeed */

    #sidebar-newsfeed .row {
        margin-left: -15px !important;
    }

    /* Cookie */
    #cookie {
        text-align: center;
    }

        #cookie #cookie-text {
            margin-bottom: 1em;
        }

    /* Publications */

    .publications .button-wrapper {
        margin-top: 1em;
        text-align: left;
    }
}

/* Narrower */

#navPanel, #titleBar, #lang {
    display: none;
}

@media screen and (max-width: 960px) {
    /* Basic */

    body, input, textarea, select {
        font-size: 11pt;
    }

    form {
        width: 90%;
    }

    .search form button {
        margin-top: 1em;
    }

    /* Home */

    .box.highlight h3, .box.highlight p {
        margin-left: 1em;
        margin-bottom: 1em;
    }

    .arrow_box:before, .arrow_box:after {
        display: none;
    }

    .articles section {
        margin-bottom: 1em;
        border-bottom: 1px solid rgba(236, 236, 236, 0.7);
    }

        .articles section:last-child {
            border-bottom: none;
        }

    #cta section {
        margin-bottom: 1em;
        padding-bottom: 1.5em;
        border-bottom: 1px solid rgba(236, 236, 236, 0.7);
    }

        #cta section:last-child {
            border-bottom: none;
        }

    /* Article */

    #a-img {
        width: 100%
    }

    .first-post-preview img {
        max-width: 100%;
    }

    #first-post-content {
        width: 100%;
        padding-top: 1em;
    }

    /* Featured */

    ul.featured > li {
        width: 40% !important;
        margin: 0 2.5% 5% 0;
        padding-top: 10px;
        border: 0.5px solid #841a1d;
        border-radius: 10%;
    }

    /* Lists */

    ul.lists {
        text-align: center;
    }

        ul.lists > li {
            margin-bottom: 2em;
            padding: 0em 1.5em;
        }

    /* Staff */

    ul.staff > li {
        margin: 0 0.75em 0 0.75em;
    }

    #page-wrapper {
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
        padding-bottom: 1px;
        padding-top: 44px;
    }

    #titleBar {
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
        display: block;
        height: 44px;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 10001;
        background-color: white; /*#333;*/
        /*background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");
        background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");
        background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");
        background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)), url("images/bg01.png");*/
        height: 44px;
        line-height: 44px;
        box-shadow: 0 4px 0 0 #b72429;
    }

        #titleBar .title {
            display: block;
            position: relative;
            font-weight: 600;
            text-align: center;
            color: #fff;
            z-index: 1;
        }

            #titleBar .title em {
                font-style: normal;
                font-weight: 300;
            }

        #titleBar .toggle {
            text-decoration: none;
            border: 0;
            height: 60px;
            left: 0;
            position: absolute;
            top: 0;
            width: 80px;
            z-index: 2;
        }

            #titleBar .toggle:before {
                -moz-osx-font-smoothing: grayscale;
                -webkit-font-smoothing: antialiased;
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                line-height: 1;
                text-transform: none !important;
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
            }

            #titleBar .toggle:before {
                content: '\f0c9';
                display: block;
                height: 44px;
                line-height: inherit;
                text-align: center;
                width: 44px;
                color: black; /*#fff;*/
                opacity: 0.5;
            }

            #titleBar .toggle:active:before {
                opacity: 0.75;
            }

    #lang {
        display: block;
    }

    #navPanel {
        background-color: #1f1f1f;
        box-shadow: inset -1px 0 3px 0 rgba(0, 0, 0, 0.5);
        background-image: -moz-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)), url("images/bg01.png");
        background-image: -webkit-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)), url("images/bg01.png");
        background-image: -ms-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)), url("images/bg01.png");
        background-image: linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)), url("images/bg01.png");
        -moz-backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        -moz-transform: translateX(-275px);
        -webkit-transform: translateX(-275px);
        -ms-transform: translateX(-275px);
        transform: translateX(-275px);
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
        display: block;
        height: 100%;
        left: 0;
        overflow-y: auto;
        position: fixed;
        top: 0;
        width: 275px;
        z-index: 10002;
    }

        #navPanel i {
            margin-right: 0.5em;
        }

        #navPanel .link {
            border-bottom: 0;
            border-top: solid 1px rgba(255, 255, 255, 0.05);
            color: #888;
            display: block;
            height: 48px;
            line-height: 48px;
            padding: 0 1em 0 1em;
            text-decoration: none;
        }

            #navPanel .link:first-child {
                border-top: 0;
            }

            #navPanel .link.depth-0 {
                color: #fff;
            }

            #navPanel .link .indent-1 {
                display: inline-block;
                width: 1em;
            }

            #navPanel .link .indent-2 {
                display: inline-block;
                width: 2em;
            }

            #navPanel .link .indent-3 {
                display: inline-block;
                width: 3em;
            }

            #navPanel .link .indent-4 {
                display: inline-block;
                width: 4em;
            }

            #navPanel .link .indent-5 {
                display: inline-block;
                width: 5em;
            }

    body.navPanel-visible #page-wrapper {
        -moz-transform: translateX(275px);
        -webkit-transform: translateX(275px);
        -ms-transform: translateX(275px);
        transform: translateX(275px);
    }

    body.navPanel-visible #titleBar {
        -moz-transform: translateX(275px);
        -webkit-transform: translateX(275px);
        -ms-transform: translateX(275px);
        transform: translateX(275px);
    }

    body.navPanel-visible #navPanel {
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    /* Header */

    #header {
        display: none;
    }

    #logo-bar {
        display: none;
    }

    /* Brand Logo */

    #brand-logo {
        width: auto;
        height: 85%;
        margin: 0.2em;
    }

    #titleBar {
        text-align: center;
    }

    /* Banner */

    #banner {
        min-height: 60vh;
        height: 95vh;
    }

        #banner header h2 {
            display: block;
        }

        #banner header .button {
            margin: 1em 0 0 0;
        }

    /* CTA */

    #cta {
        padding: 1.5em 0;
    }

        #cta header h3 {
            display: block;
        }

        #cta header .button {
            margin: 1em 0 0 0;
        }

    /* Box */

    .box.highlight {
        text-align: left;
        position: relative;
        padding-left: 7em;
        margin-top: 1.5em;
        font-size: 1em !important;
        height: 90% !important;
    }

        .box.highlight i {
            font-size: 1.2em;
            position: absolute;
            margin: 0;
            left: 1.2em;
            top: 0.25em;
        }

    .box.post .inner {
        margin-left: calc(20% + 2em);
    }

    .box.post .image {
        width: 20%;
    }

    /* Sidebar */

    #content {
        max-width: 100%;
        width: 100%;
        flex: 0 0 auto;
    }

    #sidebar img {
        max-width: 100%;
        width: auto;
        height: auto;
        position: inherit;
    }
    }

    #sidebar ul.alt > li {
        border: none;
        width: 100%;
        margin-top: 0.8em;
    }

    #sidebar #sidebar-social {
        display: none;
    }

    #sidebar #mapId {
        z-index: 1 !important;
        height: 300px !important;
    }

    #sidebar #findus ul.alt {
        display: block;
    }

        #sidebar #findus ul.alt li {
            padding: 0;
            margin: 0;
            width: 100%;
        }

    /* Newsfeed navigation */
    #sidebar-newsfeed {
        display: none;
    }

    #tab-newsfeed {
        display: block;
    }

    .newsfeed #content {
        margin-left: inherit;
    }

    /* Footer */
    .partenaires > li > a > img {
        /*max-height: 50px;
        max-width: 250px;*/
        height: 80px;
        width: auto;
    }
}

#partenaires_link {
    position: relative;
    text-align: center;
    padding: 1em 0;
    color: #888787;
    font-weight: bolder;
    text-decoration: none;
    background-color: transparent;
}

    #partenaires_link:hover {
        color: #da7e7b;
        text-decoration: none;
    }


/* Mobile */
@media screen and (max-width: 736px) {
    /* Basic */

    html, body {
        background-color: #ededed !important;
        overflow-x: hidden;
    }

    body, input, textarea, select {
        line-height: 1.75em;
        font-size: 11pt;
        letter-spacing: 0;
    }

    body {
        min-width: 320px;
    }

    h2, h3, h4, h5, h6 {
        line-height: 1.5em;
        font-size: 1.5em;
    }

    section, article {
        clear: both;
        margin: 0 0 2em 0;
    }

        section > :first-child, section:first-child, article > :first-child, article:first-child {
            margin-top: 0 !important;
        }

    header h2 {
        font-size: 1.8em;
    }

    form {
        width: 100%;
    }

    section.articles {
        padding-top: 2em;
    }

    /* Images */

    .image.full {
        width: 70%;
    }

    /* Lists */

    #article-list .list-icons {
        display: none;
    }

    ul.staff {
        text-align: center;
    }

        ul.staff > li {
            display: inline-block;
            margin: 1em 2em;
        }

        ul.staff img {
            width: inherit;
        }

    /* Featured */

    ul.featured > li {
        display: block !important;
        width: 100% !important;
        padding-top: 10px;
        border: 0.5px solid #841a1d;
        border-radius: 10%;
    }

    /* Social */

    ul.social {
        margin-top: 0em !important;
    }

    /* Lists */

    ul.lists > li {
        width: 100%;
        margin-bottom: 0;
        padding: 0;
    }






    /* Button */

    #sidebar .button {
        padding: initial !important;
    }

    .button {
        display: block;
        width: 100% !important;
        max-width: 320px;
        margin: 0 auto;
    }

        .button.alt {
            display: block;
            width: 100% !important;
            padding: 0.70em 1em !important;
        }
    /* paging */
    #paging {
        display: block;
    }

    /* Icons */

    .pennant {
        margin-bottom: 0em;
    }

    /* Header */

    #header {
        padding: 0;
    }

    #logo {
        top: 0em;
        margin: 1.15em 0 1.15em 0;
    }

    /* Banner */

    #banner {
        height: 18em;
    }

        #banner .button {
            padding: 0 !important;
            line-height: 2em;
        }

    .box.highlight {
        margin-top: 1.5em;
        font-size: 1em;
        min-height: 100px;
    }

        .box.highlight > p {
            display: none;
        }

    .icon.major {
        font-size: 1em;
        margin-left: 1em !important;
    }

    .box.highlight i {
        left: 0.5em;
    }

    .box.highlight h3, .box.highlight p {
        margin-left: 0.2em;
    }
    /* Wrapper */
    .wrapper {
        padding: 2em 0 1px 0;
    }

    /* Main */

    #main {
        padding: 3em 0em 2em 0em;
    }

        #main .actions {
            padding-top: 1em;
        }

    .homepage #main {
        padding: 4em 0em 4em 0em;
    }

    /* Sidebar */

    #sidebar .default li, #sidebar2 .default li {
        display: block;
        text-align: left;
    }

    /* Staff */

    #staff {
        padding: 4em 0em 3em 0em;
        text-align: center;
    }

        #staff p {
            font-size: 1.1em;
        }

    /* Tweets */

    #tweets {
        padding: 5em 0em;
    }

        #tweets .tweet {
            font-size: 1.1em;
        }

        #tweets .pennant {
            margin-bottom: 2em;
        }

    /* Contact */

    #contact {
        padding: 4em 0em 4em 0em;
    }

    /* Footer */

    #footer {
        padding: 2em 0em 2em 0em;
    }

        #footer ul.social > li {
            margin: 0 !important;
        }

    .partenaires > li > a > img {
        max-height: 50px;
        max-width: 250px;
        width: auto;
    }

    /* Newsfeed */
    #tab-newsfeed i {
        font-size: 1em !important;
    }
}

li.article figure {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

    li.article figure img {
        transform: scale(1);
        position: absolute;
        top: 5px;
        bottom: 5px;
        margin: auto;
    }

li.article section {
    padding-left: 25px !important;
    padding-right: 10px;
    padding-top: .5em !important;
    line-height: 0px;
}

li.article h4 {
    line-height: 20px;
    padding-top: 15px;
}

li.article a {
    display: flex;
}

span.sidebar-article-date {
    display: inline-block;
    padding-top: 4px;
    font-size: 12px;
    color: #9aadb2;
}

#sidebar-articles a {
    color: #DA7E79;
}

#sidebar-articles header {
    padding-bottom: 10px !important;
}

.article_img {
    height: 105px;
    object-fit: contain;
}

.not-first-article > li > a > h4 {
    font-size: 0.85rem;
    text-align: justify;
    color: #333131;
}

@media print {
    .pageHeader, #logo-bar, #header, #sidebar, #footer, #breadcrumbs, .addthis_inline_share_toolbox {
        display: none;
    }

    .col-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.fullWidthImage {
    max-width: 95%;
    width: auto;
    height: auto;
}
