* {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, "Lucida Grande", sans-serif;
}

body {
    overflow: hidden;
    margin: 0;
    font-size: 14pt;
}

h1, h2, h3 {
    font-weight: 300;
    margin-top: 40px;
    margin-bottom: 20px;
}

.backdrop {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url('backdrop.jpg');
    background-size: cover;
    z-index: -1;
}

a {
    text-decoration: none;
    color: #4295DD;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    height: 40px;
    /* background: #CCCCCCCC; */
    margin-top: 12px;
}

nav * {
    height: 20px;
}

nav ul {
    display: inline-block;
    /* margin-left: 20px; */
    margin-right: 20px;
}

.nav-entry {
    list-style-type: none;
    display: inline;
    margin: 10px;
    padding-left: 20px;
    vertical-align: middle;
    text-align: center;
    font-size: 14pt;
}

.nav-entry a {
    color: white;
}

.nav-entry-active a {
    color: black;
}

footer {
    position: fixed;
    color: white;
    font-size: 10px;
    bottom: 10px;
    left: 80px;
}

.contact-links {
    display: inline;
    float: right;
    list-style-type: none;
}

.contact-links * {
    display: inline;
}

.contact-links svg {
    fill: white;
}

.content-wrapper {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 80px;
    height: calc(100vh - 234px);
    overflow-y: auto;
    padding: 60px;
    background: #CCCCCCED;
}

.summary-wrapper {
    background: #4a84af8c;
    border-radius: 10px;
    margin: 20px;
    padding: 20px;
    min-height: 128px;
}

.summary-wrapper a {
    color: #ffbf05;
}

.portrait-image {
    height: 128px;
    float: right;
    margin-left: 40px;
}

#news-container, #more-news-container {
    display: flex;
    flex-direction: column;
}

.news-entry {
    margin-bottom: 40px;
    background: #b3b3b3;
    padding: 15px;
}

#more-news-header {
    cursor: pointer;
    margin-top: -30px;
    margin-bottom: 10px;
}

td {
    padding: 8px;
}

p, table, .publication {
    margin: 20px;
}

.publication {
    margin-bottom: 50px;
    border-bottom: 1px solid #a3a3a3;
    margin-top: 50px;
    font-size: 13pt;
}

.citation {
    font-family: monospace;
    margin: 10px;
    margin-bottom: 40px;
    padding: 10px;
    background: #929292;
    border-radius: 2px;
    border: 1px solid #797979;
    overflow-x: auto;
    font-size: 10pt;
}

.pub-image {
    display: inline;
    float: left;
    width: 200px;
    margin-right: 20px;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    width: 100%;
}

.gallery img {
    width: 400px;
    height: 300px;
    vertical-align: middle;
    margin: 10px;
    padding: 10px;
    background: white;
    box-shadow: 5px 5px 8px #888888;
}

.bg-blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
}

.scrolldown-arrow {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    padding: 10px;
    bottom: 34px;
    width: calc(100% - 60px);
    text-align: center;
    vertical-align: middle;
    cursor: pointer;

    background: -moz-linear-gradient(top,  rgba(204,204,204,0) 0%, rgba(204,204,204,1) 53%, rgba(204,204,204,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,1) 53%,rgba(204,204,204,1) 100%);
    background: linear-gradient(to bottom,  rgba(204,204,204,0) 0%,rgba(204,204,204,1) 53%,rgba(204,204,204,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cccccc', endColorstr='#cccccc',GradientType=0 );
}