<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #0050a3;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #0050a3;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


html {
    font-family: "Nunito", sans-serif;
}

body {
    margin: 0;

    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures full height for short pages */
}

.content {
    width: 905px;
    margin: 50px auto;
    flex: 1; /* Pushes footer to the bottom */
}

.footer {
    background-color: #0050a3;
    color: white;
    padding: 10px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    color: #0050a3;
    margin-bottom: 10px;
}

h1 .iblue {
    background-color: #0050a3;
    color: white;
    padding: 0 5px;
}

h1 a {
    text-decoration: none;
    color: inherit;
}

p, ul {
    margin-block-start: 0.4em;
    margin-block-end: 0.4em;
}

h1 a:hover {
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #0050a3;
}

a:hover {
    text-decoration: underline;
}

#menu {
    display: inline-block;
    list-style-type: none;
    padding: 0;
    font-size: 18px;
    font-weight: 800;
    color: black;
    margin-bottom: 55px;
}

#menu li {
    display: inline;
    margin: 0 10px;
}

#menu a {
    text-decoration: none;
    color: black;
    /*border-bottom: 4px solid #ee3e33;*/
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

#menu a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 8px; /* Thickness of the underline */
    background-color: #ee3e33; /* Color of the underline */
    z-index: -1; /* Place behind the text if needed */
}

#menu a:hover, #menu a.on {
    background-color: #ee3e33; /* Color of the underline */
    color: white;
}

#menu a:hover::after, #menu a.on::after {
    background: 0;
}

div.menuContainer {
    width: 100%;
    text-align: center;
}

.summary,.about.summary {
    font-family: "Nunito", sans-serif;

    font-size: 23px;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 35px;
    color: black;
    font-weight: 600;

}

#search {
    margin: 0;
}

#search input, #search select {
    font-size: 18px;
    margin: 0 5px;
    display: inline-block;

    padding: 5px 20px 5px 7px;
    background-repeat: no-repeat;
    background-position: right 10px center;
}

#search select {
    font-weight: 400;
    width: 212px;

    appearance: none; /* Remove default dropdown arrow in modern browsers */
    border: 0; /* Remove default border */
    border-radius: 0; /* Rounded corners like an input field */
    background-color: black; /* Set background color to match input */
    box-sizing: border-box;
    color: white;
    background-image: url("../img/down.svg");
    background-size: 9px;
}

#search select option {
    color: #0050a3;
    font-weight: normal;
}

#search input[type="text"] {
    width: 364px;
    background-color: #ee3e33;

    border: 0;
    border-radius: 0;
    box-sizing: border-box;
    color: white;

    background-image: url("../img/right.svg");
    background-size: 6px;
    margin-left: 0;
}

#search input::placeholder {
    color: white;
}

.resultsCount {
    font-size: 16px;
    font-weight: 300;
    color: black;
    margin-top: 12px;
    /*margin-bottom: 35px;*/
}

.result {
    border-top: 1px solid black;
    padding: 12px 0;
    color: black;
}

.result h2 {
    font-weight: 600;
    font-size: 21px;
    display: block;
    color: #0050a3;
    position: relative;
    margin: 0;
}

.result h2 a {
    background-image: url("../img/link.svg");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right center;
    padding-right: 24px;
}

.result .year, .result .authors {
    font-weight: 600;
    font-size: 18px;
}

.result .type_theme {
    font-weight: 300;
    font-size: 18px;
}

.result .theme {
    font-style: italic;
}

ul.logos {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    width: 905px;
}

ul.logos li {
    display: inline;
    margin: 0 10px;
}


.two_columns {
    column-count: 2; /* Number of columns */
    column-gap: 20px; /* Space between columns */
}

.two_columns p:first-child {
    margin-top: 0;
}

.two_columns p, .two_columns li {
    break-inside: avoid;
}

.about, .team {
    font-family: "Neuton", serif;
    font-size: 21px;
    font-weight: 400;
    color: black;
}
.badge {
    float: left;
    width: 198px;
    /*height: 198px;*/
    /*border-top: 12px solid #ee3e33;*/
    background-color: #ee3e33;
    background-repeat: no-repeat;
    background-size: 198px;
    background-position-y: 12px;
    padding-top: calc(198px + 12px + 6px);
    padding-bottom: 6px;
    color: white;
    font-family: "Nunito", sans-serif;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
}

.team {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column; /* Stack rows vertically */
}

.team .row {
    display: flex;
    flex-direction: row; /* Align items horizontally */
    width: 100%;
    margin-top: 70px;
}

.team .row &gt; .cv {
    flex: 1; /* Grow to fill the container */
}

.cv p:first-child, .team .row:first-child {
    margin-top: 0;
}

.team .row .badge {
    height: 24px;
    margin-right: 24px;
    margin-top: 8px;
}

.skip-link {
    position: absolute;
    top: -40px; /* Move off-screen */
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 10px; /* Bring into view */
    outline: 2px solid yellow;
}

</pre></body></html>