@charset "UTF-8";
/**
 * @file
 * Generic theme-independent base styles.
 */
/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete {
  border: 1px solid;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}

#autocomplete ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

#autocomplete li {
  background: #fff;
  color: #000;
  cursor: default;
  white-space: pre;
  zoom: 1; /* IE7 */
}

/* Animated throbber */
html.js input.form-autocomplete {
  background-image: url(../../misc/throbber-inactive.png);
  background-position: 100% center; /* LTR */
  background-repeat: no-repeat;
}

html.js input.throbbing {
  background-image: url(../../misc/throbber-active.gif);
  background-position: 100% center; /* LTR */
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsed {
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  height: 1em;
}

html.js fieldset.collapsed .fieldset-wrapper {
  display: none;
}

fieldset.collapsible {
  position: relative;
}

fieldset.collapsible .fieldset-legend {
  display: block;
}

/**
 * Resizable textareas.
 *
 * @see textarea.js
 */
.form-textarea-wrapper textarea {
  display: block;
  margin: 0;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.resizable-textarea .grippie {
  background: #eee url(../../misc/grippie.png) no-repeat center 2px;
  border: 1px solid #ddd;
  border-top-width: 0;
  cursor: s-resize;
  height: 9px;
  overflow: hidden;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
body.drag {
  cursor: move;
}

.draggable a.tabledrag-handle {
  cursor: move;
  float: left; /* LTR */
  height: 1.7em;
  margin-left: -1em; /* LTR */
  overflow: hidden;
  text-decoration: none;
}

a.tabledrag-handle:hover {
  text-decoration: none;
}

a.tabledrag-handle .handle {
  background: url(../../misc/draggable.png) no-repeat 6px 9px;
  height: 13px;
  margin: -0.4em 0.5em; /* LTR */
  padding: 0.42em 0.5em; /* LTR */
  width: 13px;
}

a.tabledrag-handle-hover .handle {
  background-position: 6px -11px;
}

div.indentation {
  float: left; /* LTR */
  height: 1.7em;
  margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
  padding: 0.42em 0 0.42em 0.6em; /* LTR */
  width: 20px;
}

div.tree-child {
  background: url(../../misc/tree.png) no-repeat 11px center; /* LTR */
}

div.tree-child-last {
  background: url(../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */
}

div.tree-child-horizontal {
  background: url(../../misc/tree.png) no-repeat -11px center;
}

.tabledrag-toggle-weight-wrapper {
  text-align: right; /* LTR */
}

/**
 * TableHeader behavior.
 *
 * @see tableheader.js
 */
table.sticky-header {
  background-color: #fff;
  margin-top: 0;
}

/**
 * Progress behavior.
 *
 * @see progress.js
 */
/* Bar */
.progress .bar {
  background-color: #fff;
  border: 1px solid;
}

.progress .filled {
  background-color: #000;
  height: 1.5em;
  width: 5px;
}

.progress .percentage {
  float: right; /* LTR */
}

/* Throbber */
.ajax-progress {
  display: inline-block;
}

.ajax-progress .throbber {
  background: transparent url(../../misc/throbber-active.gif) no-repeat 0px center;
  float: left; /* LTR */
  height: 15px;
  margin: 2px;
  width: 15px;
}

.ajax-progress .message {
  padding-left: 20px;
}

tr .ajax-progress .throbber {
  margin: 0 2px;
}

.ajax-progress-bar {
  width: 16em;
}

/**
 * Inline items.
 */
.container-inline div,
.container-inline label {
  display: inline;
}

/* Fieldset contents always need to be rendered as block. */
.container-inline .fieldset-wrapper {
  display: block;
}

/**
 * Prevent text wrapping.
 */
.nowrap {
  white-space: nowrap;
}

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
html.js .js-hide {
  display: none;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE6 */
* html .clearfix {
  height: 1%;
}

/* IE7 */
*:first-child + html .clearfix {
  min-height: 1%;
}

/* news-cycle-regular - latin_latin-ext */
/** NB: font paths are relative to root of theme and style.css */
@font-face {
  font-display: swap;
  font-family: "News Cycle";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/news-cycle-v23-latin_latin-ext-regular.woff2") format("woff2"), url("fonts/news-cycle-v23-latin_latin-ext-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* news-cycle-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "News Cycle";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/news-cycle-v23-latin_latin-ext-700.woff2") format("woff2"), url("fonts/news-cycle-v23-latin_latin-ext-700.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
.views-exposed-form .views-exposed-widget {
  float: left; /* LTR */
  padding: 0.5em 1em 0 0; /* LTR */
}

.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 1.6em;
}

.views-exposed-form .form-item,
.views-exposed-form .form-submit {
  margin-top: 0;
  margin-bottom: 0;
}

.views-exposed-form label {
  font-weight: bold;
}

.views-exposed-widgets {
  margin-bottom: 0.5em;
}

/* table style column align */
.views-align-left {
  text-align: left;
}

.views-align-right {
  text-align: right;
}

.views-align-center {
  text-align: center;
}

/* Remove the border on tbody that system puts in */
.views-view-grid tbody {
  border-top: none;
}

.view .progress-disabled {
  float: none;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "news-gothic-std", "News Cycle", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
}

body {
  font-family: "news-gothic-std", "News Cycle", Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
}

body {
  margin: 0;
  padding: 0;
}

a:focus {
  outline: thin dotted;
}

a:active, a:hover {
  outline: 0;
}

p, pre {
  margin-bottom: 1rem;
}

blockquote {
  margin: 1.5em 30px;
}

h1 {
  font-size: 2em;
  line-height: 1.5em;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

h2 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h3 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h5 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

mark {
  background: #ff0;
  color: #000;
}

code, kbd, pre, samp, tt, var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "“" "”" "‘" "’";
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl, menu, ol, ul {
  margin: 1.5em 0;
}

ol ol, ol ul, ul ol, ul ul {
  margin: 0;
}

dd {
  margin: 0 0 0 30px;
}

menu, ol, ul {
  padding: 0 0 0 30px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

.lt-ie9 img {
  width: auto;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  border-color: #c0c0c0;
  border-top-style: solid;
  border-top-width: 0.0625em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625em;
  border-left-style: solid;
  border-left-width: 0.0625em;
  border-right-style: solid;
  border-right-width: 0.0625em;
  padding: -0.0625em;
}

legend {
  border: 0;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

label {
  display: block;
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

body {
  background-color: #cecfcf;
}

* {
  box-sizing: border-box;
}

a {
  color: #83004c;
}

#content a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

h1 a, h2 a, h3 a {
  text-decoration: none;
}

h1#page-title {
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  line-height: 3rem;
}

header {
  background-color: #fff;
}

.field-name-body h2 {
  clear: both;
}

#content {
  background-color: #83004c;
  background-image: url(images/rood.png);
}

#content-inner {
  background-color: #fff;
  overflow: hidden;
  padding: 2vw;
}

#content h2 {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
  margin-top: 1.6rem;
}

#content p {
  margin-top: 0;
  margin-bottom: 1rem;
}

#content p img {
  margin-left: 1rem;
}

#content ul {
  margin-left: 0;
  padding: 0;
  list-style-type: none;
}

#content .field-name-body ul li {
  padding-left: 1.6rem;
  background-image: url(images/bullet.svg);
  background-position: 0 0.4rem;
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  margin-bottom: 1rem;
}

#content td {
  vertical-align: top;
  padding-right: 1rem;
}

#content td.biblio-row-title {
  font-weight: 700;
  width: 25%;
}

#main-inner {
  overflow: hidden;
}

.sidebar {
  background-color: #fff;
}

.field-name-field-excerpt {
  margin-bottom: 1rem;
}

#menubutton {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(images/menubutton.svg);
  background-repeat: no-repeat;
  background-size: 10vw;
  background-position: left 10vw top 5vw;
  width: 30vw;
  height: 50vw;
  z-index: 100;
}

h1#logo {
  margin: 0;
}

h1#logo a {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url(images/ehri-logo.svg);
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  width: 70vw;
  height: 50vw;
  background-color: #fff;
  margin-left: 30vw;
}

#block-search-form {
  background-color: #fff;
  width: 90vw;
  margin-left: 10vw;
  padding: 7vw 0 7vw 0;
}

#block-search-form input.form-text {
  background-color: #ecedee;
  border: 1px solid #84004c;
  height: 2rem;
  width: 60%;
}

#block-search-form input.form-submit {
  background-color: transparent;
  border: medium none;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.view-header-image {
  display: none;
}

.view-header-image img {
  object-fit: cover;
  aspect-ratio: 65/23;
  height: auto;
}

.region-navigation {
  position: absolute;
  top: 0;
  left: -100vw;
  background-color: #cecfcf;
  width: 100vw;
  transition: left ease-in-out 0.5s;
  z-index: 10;
  padding-left: 25vw;
  display: none;
}

.menu .region-navigation {
  left: 0;
  display: block;
}

#main-menu,
.submenu {
  font-weight: 700;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}

#main-menu > li > ul {
  font-weight: normal;
}

#main-menu li {
  background-color: transparent;
  background-image: none;
  border-left: medium none;
  display: inline-block;
  float: none;
  list-style-image: none;
  list-style-type: none;
  margin: 0;
  padding: 4px 0 0 6px;
  width: 100%;
}

#main-menu {
  margin: 0;
}

#main-menu > li {
  margin: 1.5em 0;
}

#main-menu > li > ul > li > ul {
  display: none;
}

#main-menu > li > ul.sub-menu {
  padding: 0;
}

#main-menu > li > ul.sub-menu > li {
  padding-left: 14px;
}

#main-menu li a,
#main-menu li ul.sub-menu li a {
  color: #333;
  text-decoration: none;
}

#navigation .block-menu a.menubalk {
  display: none;
}

.view-homepage-teasers {
  display: flex;
  flex-wrap: wrap;
}

.view-homepage-teasers .views-row {
  margin: 2rem 1rem 0 1rem;
}

.view-homepage-teasers h3 {
  margin: 0;
  padding: 0 0 1rem 0;
}

.view-homepage-teasers h3 a {
  color: #84004c;
  text-decoration: none;
}

.view-homepage-teasers img {
  border: 1px solid #cecfcf;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 0) {
  .view-homepage-teasers img {
    aspect-ratio: 640/360;
  }
}
@media (min-width: 960px) {
  .view-homepage-teasers img {
    aspect-ratio: 560/370;
  }
}
@media (min-width: 1200px) {
  .view-homepage-teasers img {
    aspect-ratio: 800/540;
  }
}
.sidebar .block {
  padding: 1rem;
}

.news h2 a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  background-image: url(images/latestnews.svg);
  background-repeat: no-repeat;
  background-size: 60vw auto;
  background-position: left top;
  width: 60vw;
  height: 10vw;
}

.news h3 a {
  color: #84004c;
  text-decoration: none;
}

.news .more-link a {
  font-weight: bold;
  text-decoration: none;
}

.field-name-field-photo img {
  width: 100%;
  height: auto;
}

.field-name-field-datum {
  font-weight: 700;
}

.funding a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  background-image: url(images/eulogo.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  height: 6vw;
  width: 16vw;
  margin-top: 2vw;
}

.breadcrumb a {
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
}

.view-people-in-ehri .views-row {
  position: relative;
}

.field-name-node-link {
  clear: both;
  margin-bottom: 1rem;
}

.field-name-node-link a {
  text-decoration: none;
  display: block;
  border-top: 1px solid #83004c;
  margin-top: 1rem;
  padding-right: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: right;
  opacity: 0.7;
}

.wptable .header {
  background-color: #fff;
  font-weight: bold;
  margin-top: 1rem;
}

.wptable .label {
  float: left;
  padding-left: 5px;
  width: 20%;
}

.wptable .wpcontent {
  float: left;
  width: 80%;
}

.wptable .wprow {
  clear: both;
  overflow: visible;
  padding-top: 0.4rem;
}

#edit-basic {
  display: none;
}

#secondary-menu {
  display: none;
  margin-top: 2em;
}

#secondary-menu a {
  color: #fff;
}

#secondary-menu li {
  display: block !important;
}

.socmed {
  padding-left: 10px;
}

.socmed a {
  text-decoration: none;
}

.socmed img {
  margin-right: 10px;
  width: 40px;
  height: auto;
}

.mailchimp-newsletter-mergefields label {
  margin-top: 1rem;
}

.mailchimp-newsletter-mergefields #edit-submit {
  color: #fff;
  background-color: #36104f;
  padding: 0 0.3rem 0 0.3rem;
  border: none;
}

#page, .region-bottom {
  margin-left: auto;
  margin-right: auto;
}

#header, #content, #navigation, .region-sidebar-first, .region-sidebar-second, #footer {
  padding-left: 0;
  padding-right: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

#header:before, #header:after, #main:before, #main:after, #footer:before, #footer:after {
  content: "";
  display: table;
}

#header:after, #main:after, #footer:after {
  clear: both;
}

.resources h2 {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  background-image: url(images/resources2.png);
  background-repeat: no-repeat;
  background-size: 240px auto;
  background-position: 0 28px;
  height: 40px;
  width: 240px;
  background-position: left top;
  margin: 0;
}

.resources h3 a:hover {
  color: #36104F;
}

.resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resources li {
  background-image: url(images/dot3.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1.5em;
  line-height: 1.5em;
  font-weight: 700;
  font-size: 1em;
  margin-top: 1.5em;
}

.resources li:hover {
  background-image: url(images/dot.png);
}

.resources li a {
  padding-left: 0.8em;
  text-decoration: none;
  display: inline-block;
}

@media all and (min-width: 480px) {
  .view-header-image {
    display: block;
  }
  .view-header-image img {
    width: 100%;
    height: auto;
  }
  #menubutton {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-image: url(images/menubutton.svg);
    background-repeat: no-repeat;
    background-size: 5vw;
    background-position: left 5vw top 5vw;
    background-color: #fff;
    width: 15vw;
    height: 15vw;
    z-index: 100;
    border: 1px solid #83004c;
  }
  .node-type-conference #menubutton {
    display: none;
  }
  #navigation {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #cecfcf;
    width: 73vw;
    z-index: 1;
    height: 26vw;
    overflow: hidden;
  }
  .menu #navigation {
    overflow: visible;
  }
  .region-navigation {
    position: absolute;
    top: 0;
    left: -100vw;
    background-color: #cecfcf;
    width: 100vw;
    height: 100vh;
    padding-left: 20vw;
    transition: left ease-in-out 0.5s;
    z-index: 10;
    display: block;
  }
  .menu .region-navigation {
    left: 0;
  }
  #main-menu > li {
    float: left;
    width: 40%;
  }
  .submenu ul li {
    width: 100%;
  }
}
@media all and (min-width: 480px) and (max-width: 959px) {
  header, #main, #footer {
    position: relative;
    width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
  aside {
    background-color: #ecedee;
  }
  #page {
    background-color: #36104f;
    margin-top: 23vw;
    padding-top: 3vw;
    padding-bottom: 5vw;
    background-image: url(images/rood.png);
    background-size: 70vw 100%;
    background-position: left 3vw;
    background-repeat: no-repeat;
  }
  header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .logged-in header {
    top: var(--wp-admin--admin-bar--height, 0px);
  }
  #content {
    line-height: 1.65rem;
  }
  #content-inner {
    padding: 2vw 2vw 2vw 6vw;
  }
  h1#logo a {
    background-size: 90%;
    background-position: center;
    width: 25vw;
    height: 20vw;
    margin-left: 73vw;
  }
  #block-search-form {
    background-color: #fff;
    width: 25vw;
    margin-left: 73vw;
    height: 6vw;
    padding: 0 0 0 2vw;
  }
  #block-search-form input.form-text {
    height: 3vw;
    width: 50%;
  }
  #block-search-form input.form-submit {
    font-size: 0.8rem;
  }
  .view-header-image {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 73vw;
    height: 23vw;
  }
  .view-header-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .news h2 a {
    background-size: 20vw auto;
    height: 5vw;
    width: 20vw;
  }
  .view-homepage-teasers .views-row {
    width: 45%;
    margin-right: 1%;
    float: left;
  }
  .field-name-field-photo {
    width: 30vw;
    left: -6vw;
    float: left;
    position: relative;
    margin: 0 -5vw 1vw 0;
  }
  .views-row .field-name-field-photo {
    width: 15vw;
  }
  .field-name-field-photo img {
    width: 100%;
    height: auto;
  }
  .view-people-in-ehri .views-row .field-name-title, .view-people-in-ehri .views-row .field-name-body {
    margin-left: 10vw;
  }
  #content p img {
    padding: 0.3rem 1rem 1rem 0;
  }
}
@media all and (min-width: 960px) {
  header, #main, #footer {
    position: relative;
    width: 98vw;
    margin-left: auto;
    margin-right: auto;
  }
  aside {
    background-color: #ecedee;
  }
  #page {
    background-color: #36104f;
    margin-top: 26vw;
    padding-top: 0;
    padding-bottom: 5vw;
    background-image: url(images/rood.png);
    background-size: 70vw 100%;
    background-position: left 3vw;
    background-repeat: no-repeat;
  }
  header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .admin-bar header {
    top: var(--wp-admin--admin-bar--height, 0px);
  }
  #content {
    line-height: 1.65rem;
  }
  #content-inner {
    padding: 2vw 2vw 2vw 6vw;
    background-color: #ecedee;
    overflow: hidden;
  }
  h1#logo a {
    background-size: 90%;
    background-position: center;
    width: 27vw;
    height: 23vw;
    margin-left: 71vw;
  }
  #block-search-form {
    background-color: #fff;
    width: 27vw;
    margin-left: 71vw;
    height: 3vw;
    padding: 0.5vw 0 0 2vw;
  }
  #block-search-form input.form-text {
    height: 2vw;
    width: 60%;
  }
  #block-search-form input.form-submit {
    font-size: 1rem;
  }
  .view-header-image {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 73vw;
    height: 23vw;
  }
  .view-header-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  #navigation {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #cecfcf;
    width: 71vw;
    z-index: 1;
    height: 26vw;
    overflow: hidden;
  }
  .news h2 a {
    background-size: 20vw auto;
    height: 5vw;
    width: 20vw;
    background-position: 0 2vw;
  }
  .view-homepage-teasers .views-row {
    width: 45%;
    margin-right: 1%;
    float: left;
  }
  .field-name-field-photo {
    width: 30vw;
    left: -6vw;
    float: left;
    position: relative;
    margin: 0 -5vw 1vw 0;
  }
  .views-row .field-name-field-photo {
    width: 15vw;
  }
  .field-name-field-photo img {
    width: 100%;
    height: auto;
  }
  .view-people-in-ehri .views-row .field-name-title, .view-people-in-ehri .views-row .field-name-body {
    margin-left: 10vw;
  }
  #content p img {
    padding: 0.3rem 1rem 1rem 0;
  }
  #secondary-menu {
    display: block;
  }
  #secondary-menu {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    text-align: right;
    padding-right: 2rem;
  }
  #secondary-menu li {
    display: inline-block;
    padding-left: 1rem;
    font-size: 0.9rem;
  }
  #secondary-menu li a {
    text-decoration: none;
  }
  .sidebar-first #content {
    float: left;
    width: 80%;
    margin-left: 20%;
    margin-right: -100%;
  }
  .sidebar-first .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0%;
    margin-right: -20%;
  }
  .sidebar-second #content {
    width: 71vw;
    float: left;
    height: 100%;
  }
  .sidebar-second .region-sidebar-second {
    margin-left: 71vw;
    width: 27vw;
  }
  .two-sidebars #content {
    float: left;
    width: 60%;
    margin-left: 20%;
    margin-right: -80%;
  }
  .two-sidebars .region-sidebar-first {
    float: left;
    width: 20%;
    margin-left: 0;
    margin-right: -20%;
  }
  .two-sidebars .region-sidebar-second {
    float: left;
    width: 20%;
    margin-left: 80%;
    margin-right: -100%;
  }
}
@media all and (min-width: 1025px) {
  #menubutton {
    display: none;
  }
  header, #main, #footer {
    width: 90vw;
  }
  h1#logo a {
    background-size: 90%;
    background-position: center;
    width: 25vw;
    height: 23vw;
    margin-left: 65vw;
  }
  #block-search-form {
    width: 25vw;
    margin-left: 65vw;
  }
  .region-navigation {
    position: absolute;
    top: 0;
    left: -100vw;
    background-color: #cecfcf;
    width: 100vw;
    height: 100vh;
    padding-left: 20vw;
    transition: left ease-in-out 0.5s;
    z-index: 10;
  }
  .region-navigation, .menu .region-navigation {
    position: inherit;
    background-color: #cecfcf;
    width: inherit;
    height: inherit;
    padding-left: 0;
    left: 0;
    z-index: 1;
  }
  .view-header-image {
    width: 65vw;
    height: 23vw;
  }
  #navigation:hover .view-header-image {
    display: none;
  }
  #main-menu > li {
    margin: 0;
  }
  #main-menu li {
    height: 1.5vw;
    padding: 0.5vw 0.5vw 0 0.5vw;
    width: 100%;
  }
  #navigation .region-navigation {
    position: relative;
    top: 3vw;
  }
  #navigation #main-menu > li {
    border-left: 1px solid #fff;
    height: 26vw;
    width: 20%;
    float: left;
    position: relative;
  }
  #navigation #main-menu > li > ul > li > ul {
    display: none;
  }
  #navigation #main-menu > li > ul > li.current-menu-item > ul {
    display: block;
    padding: 0;
  }
  #navigation #main-menu > li {
    width: 100%;
    font-size: 1vw;
    line-height: 1.4vw;
    font-weight: 700;
    padding: 0;
  }
  #main-menu a {
    font-weight: bold;
  }
  #navigation #main-menu > li > ul > li {
    height: 1.4vw;
    width: 100%;
  }
  #navigation #main-menu > li > a {
    display: block;
    width: 100%;
    height: 3vw;
    padding-left: 1vw;
    color: #fff;
    background-color: #83004c;
    box-sizing: border-box;
    text-transform: uppercase;
    margin-top: 1vw;
    line-height: 3vw;
  }
  #navigation {
    width: 65vw;
    height: 26vw;
  }
  #page {
    margin-top: 23vw;
    padding-top: 3vw;
    padding-bottom: 5vw;
    background-size: 70vw 100%;
    background-position: left 3vw;
  }
  #navigation #main-menu {
    height: 23vw;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  #navigation #main-menu > .menu-item {
    height: 23vw;
    width: 20%;
    display: flex;
    flex-direction: column-reverse;
  }
  #navigation #main-menu > .menu-item > a {
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
  }
  .sidebar-second #content {
    width: 65vw;
    float: left;
    height: 100%;
  }
  .sidebar-second .region-sidebar-second {
    margin-left: 65vw;
    width: 25vw;
  }
  h1#logo a {
    background-size: 90%;
    background-position: center;
    width: 25vw;
    height: 23vw;
    margin-left: 65vw;
  }
  #block-search-form {
    background-color: #fff;
    width: 25vw;
    margin-left: 65vw;
    height: 3vw;
    padding: 0.5vw 0 0 2vw;
  }
}
@media all and (min-width: 1400px) {
  #page {
    margin-top: 322px;
    padding-top: 42px;
    padding-bottom: 70px;
    background-size: 980px 100%;
    background-position: left 42px;
  }
  header, #main, #footer {
    width: 1260px;
  }
  h1#logo a {
    background-size: 90%;
    width: 350px;
    height: 322px;
    margin-left: 910px;
  }
  .view-header-image {
    width: 910px;
    height: 322px;
  }
  #navigation {
    width: 910px;
    height: 364px;
  }
  #content-inner {
    padding: 28px 28px 28px 84px;
  }
  #block-search-form {
    width: 350px;
    margin-left: 910px;
    height: 42px;
    padding: 7px 0 0 28px;
  }
  #block-search-form input.form-text {
    height: 28px;
    width: 60%;
  }
  #main-menu li,
  #navigation #main-menu > li > ul > li {
    height: 20px;
    padding: 7px 6px 0 14px;
    width: 100%;
  }
  #navigation .region-navigation {
    top: 42px;
  }
  #main-menu {
    height: 322px;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  #navigation #main-menu > li.menu-item {
    height: 322px;
    width: 20%;
  }
  #navigation #main-menu > li {
    width: 100%;
    font-size: 14px;
    line-height: 19px;
  }
  #navigation #main-menu > li > ul.sub-menu {
    padding: 0;
  }
  #navigation #main-menu > li > a {
    height: 42px;
    line-height: 42px;
    margin-top: 14px;
  }
  #navigation #main-menu > li > a {
    height: 42px;
    padding-left: 14px;
  }
  .news h2 a {
    background-size: 280px auto;
    background-position: 0 28px;
    height: 70px;
    width: 280px;
  }
  .field-name-field-photo {
    width: 420px;
    left: -82px;
    margin: 0 -70px 14px 0;
  }
  .views-row .field-name-field-photo {
    width: 210px;
  }
  .view-people-in-ehri .views-row .field-name-title, .view-people-in-ehri .views-row .field-name-body {
    margin-left: 140px;
  }
  .sidebar-second #content {
    width: 910px;
  }
  .sidebar-second .region-sidebar-second {
    margin-left: 910px;
    width: 350px;
  }
}
.with-wireframes #header, .with-wireframes #main, .with-wireframes #content, .with-wireframes #navigation, .with-wireframes .region-sidebar-first, .with-wireframes .region-sidebar-second, .with-wireframes #footer, .with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

.element-invisible, .element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

#skip-link {
  margin: 0;
}

#skip-link a, #skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: #fff;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.page__title, .node__title, .block__title, .comments__title, .comments__form-title, .comment__title {
  margin: 0;
}

.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=");
  background-position: 8px 8px;
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

.messages--warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC");
  border-color: #ed5;
}

.messages--error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==");
  border-color: #ed541d;
}

.messages__list {
  margin: 0;
}

.messages__item {
  list-style-image: none;
}

.messages--error p.error {
  color: #333;
}

.ok, .messages--status {
  background-color: #f8fff0;
  color: #234600;
}

.warning, .messages--warning {
  background-color: #fffce5;
  color: #840;
}

.error, .messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

.tabs-primary, .tabs-secondary {
  overflow: hidden;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  list-style: none;
  border-bottom: 1px solid #bbb \0 /ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab, .tabs-secondary__tab.is-active {
  float: left;
  margin: 0 3px;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 #fff;
  border: 1px solid #bbb;
  border-bottom-color: transparent;
  border-bottom: 0 \0 /ie;
}

.is-active.tabs-primary__tab {
  border-bottom-color: #fff;
}

a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: background-color 0s;
  -moz-transition: background-color 0s;
  -o-transition: background-color 0s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr="#FFE9E9E9", endColorstr="#00E9E9E9");
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

.tabs-secondary {
  font-size: 0.9em;
  margin-top: -1.5em;
}

.tabs-secondary__tab, .tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-transition: background-color 0s;
  -moz-transition: background-color 0s;
  -o-transition: background-color 0s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 #fff;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 0.5em;
}

a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

.inline {
  display: inline;
  padding: 0;
}

.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
}

span.field-label {
  padding: 0 1em 0 0;
}

.more-link {
  text-align: right;
}

.more-help-link {
  text-align: right;
}

.more-help-link a {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC");
  background-position: 0 50%;
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
}

.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.pager-item, .pager-first, .pager-previous, .pager-next, .pager-last, .pager-ellipsis, .pager-current {
  display: inline;
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

.pager-current {
  font-weight: bold;
}

.menu a.active {
  color: #000;
}

.new, .update {
  color: #c00;
  background-color: transparent;
}

.unpublished {
  display: block;
  height: 0;
  overflow: visible;
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word;
}

.comments {
  margin: 1.5em 0;
}

.comment-preview {
  background-color: #ffffea;
}

.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

.indented {
  margin-left: 30px;
}

.form-checkboxes .form-item, .form-radios .form-item {
  margin: 0;
}

tr.odd .form-item, tr.even .form-item {
  margin: 0;
}

.form-item input.error, .form-item textarea.error, .form-item select.error {
  border: 1px solid #c00;
}

.form-item .description {
  font-size: 0.85em;
}

.form-type-radio .description, .form-type-checkbox .description {
  margin-left: 2.4em;
}

.form-required {
  color: #c00;
}

label.option {
  display: inline;
  font-weight: normal;
}

a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

.password-parent, .confirm-parent {
  margin: 0;
}

#user-login-form {
  text-align: left;
}

.openid-links {
  margin-bottom: 0;
}

.openid-link, .user-link {
  margin-top: 1.5em;
}

html.js #user-login-form li.openid-link, #user-login-form li.openid-link {
  margin-left: -20px;
}

#user-login ul {
  margin: 1.5em 0;
}

form th {
  text-align: left;
  padding-right: 1em;
  border-bottom: 3px solid #ccc;
}

form tbody {
  border-top: 1px solid #ccc;
}

form table ul {
  margin: 0;
}

tr.even, tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

tr.even {
  background-color: #fff;
}

td.active {
  background-color: #ddd;
}

td.checkbox, th.checkbox {
  text-align: center;
}

td.menu-disabled {
  background: #ccc;
}

#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

html.js .collapsible .fieldset-legend {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==");
  background-position: 5px 65%;
  background-repeat: no-repeat;
  padding-left: 15px;
}

html.js .collapsed .fieldset-legend {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC");
  background-position: 5px 50%;
}

.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

tr.drag {
  background-color: #fffff0;
}

tr.drag-previous {
  background-color: #ffd;
}

.tabledrag-toggle-weight {
  font-size: 0.9em;
}

tr.selected td {
  background: #ffc;
}

.progress {
  font-weight: bold;
}

.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

.progress .filled {
  background-color: #0072b9;
  background-image: url("images/progress.gif");
}

body.node-type-conference, body.page-public-history-holocaust-registration-form {
  background-image: url("images/background_page_conf.png");
  padding: 0;
  margin: 0;
  line-height: 1.7em;
}

.node-type-conference #page, .page-public-history-holocaust-registration-form #page {
  background-image: none;
  background-color: #898989;
  margin-top: 260px;
  padding-top: 0;
}

.node-type-conference #header {
  background-image: none;
  background-color: #c0c0c0;
  height: 238px;
  overflow: visible;
}

.node-type-conference #navigation {
  background-color: #3f3f3f;
  width: 100%;
  height: 260px;
  padding-right: 151px;
}

.node-type-conference #content {
  background-color: #ededed;
  background-image: url("images/background_content_conf.png");
}

.node-type-conference #content-inner {
  background-color: #ecedee;
  overflow: hidden;
  padding: 2rem 1rem 2rem 1rem;
  border-right: #e0e0e0 151px solid;
  border-left: #6e6e6e 250px solid;
}

.node-type-conference .container-24 .grid-24 {
  display: inline;
  float: left;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

.node-type-conference #header-first.grid-18, .page-public-history-holocaust-registration-form #header-first.grid-18 {
  margin: 0;
  width: 809px;
}

.node-type-conference #header-last.grid-6, .page-public-history-holocaust-registration-form #header-last.grid-6 {
  background-color: #fff;
  margin: 0;
  width: 151px;
  padding: 0;
}

.node-type-conference a {
  font-weight: bold;
  text-decoration: none;
}

.node-type-conference a:hover {
  text-decoration: underline;
}

#b-c-header {
  text-indent: -5000px;
  height: 230px;
  background-image: url(images/conferenceheader.svg);
  background-repeat: no-repeat;
  background-position: center 1rem;
  background-size: 90%;
}

#b-c-header p, #b-c-header h1 {
  margin: 0;
}

.node-type-conference #main-content .node, .page-public-history-holocaust-registration-form #main-content .node {
  margin-left: 240px;
  margin-right: 175px;
  position: inherit;
}

#conflogoos ul {
  position: absolute;
  right: 0;
  top: 0;
  width: 151px;
  margin: 0;
  padding: 0;
  z-index: 10;
  height: 450px;
  overflow: visible;
  list-style-type: none;
  background-color: #e0e0e0;
}

#conflogoos ul li {
  margin: 0;
  padding: 0;
  width: 151px;
}

#conflogoos ul li a {
  display: block;
  text-indent: -5000px;
  background-image: url(images/conflogoos.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 151px;
}

#conflogoos ul li.bundesmin a {
  height: 87px;
}

#conflogoos ul li.dariah-de a {
  height: 80px;
  background-position: 0 -80px;
}

#conflogoos ul li.dariah-eu a {
  height: 83px;
  background-position: 0 -163px;
}

#conflogoos ul li.ehri a {
  height: 125px;
  background-position: 0 -246px;
}

#conflogoos ul li.textgrid a {
  height: 80px;
  background-position: 0 -371px;
}

.field-name-field-cnf-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 250px;
}

.views-field-field-cnf-img {
  position: absolute;
  left: 0;
  width: 250px;
  background-color: #c0c0c0;
  text-align: right;
  line-height: 0;
}

.field-name-field-cnf-img img {
  width: 100%;
}

.views-field-field-cnf-img img {
  width: 50%;
}

.imagefield-field_cnf_img-wrapper {
  height: 225px;
}

.admin-menu .field-field-cnf-img {
  position: absolute;
  left: 0;
  top: 25px;
}

.node-type-conference .image-description {
  font-weight: bold;
  font-size: 0.9em;
  color: #E2E2E2;
  margin-bottom: 12px;
  margin-left: 6px;
}

.node-type-conference h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 1.2em;
  font-weight: normal;
  font-style: italic;
}

#navigation .block-menu#block-menu-menu-conference-berlin.block {
  height: inherit;
}

#navigation .block-menu#block-menu-menu-conference-berlin.block {
  border-left: 1px solid #fff;
  float: left;
  height: inherit;
  position: relative;
  width: 100%;
}

.node-type-conference #block-menu-menu-conference-berlin.block ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  border: none;
  list-style: none outside none;
  text-align: center;
  padding-top: 3px;
  background-color: #C0C0C0;
  font-size: 1rem;
  font-weight: bold;
  left: 0;
  line-height: 1rem;
  position: inherit;
  width: 100%;
  height: 30px;
}

#block-menu-menu-conference-berlin ul.menu li {
  display: inline-block;
  padding-right: 25px;
  margin: 0;
  padding-left: 7px;
  text-transform: uppercase;
  font-size: 1em;
  font-family: "din-condensed-web", sans-serif;
  background-image: url(images/conf_berl_menu_bullet.png);
  background-repeat: no-repeat;
  background-position: right 0;
}

#block-menu-menu-conference-berlin ul.menu li.last {
  background-image: none;
}

#block-menu-menu-conference-berlin li.leaf {
  list-style-image: none;
  list-style-type: none;
}

#block-menu-menu-conference-berlin li a.active {
  color: #000000;
}

#block-menu-menu-conference-berlin a {
  color: #83004C;
  text-decoration: none;
}

.view-public-history-speakers .views-row {
  clear: left;
  padding-bottom: 20px;
}

.view-public-history-speakers .views-field-title span.field-content a {
  color: #84004C;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: normal;
}

.view-public-history-speakers .views-field-title span.field-content a:hover {
  text-decoration: underline;
}

.view-public-history-speakers .views-field-field-cnf-img-fid {
  float: left;
  width: 95px;
  padding-left: 128px;
  background-color: #c0c0c0;
  height: 105px;
  overflow: hidden;
  margin-top: 6px;
}

.node-type-conference .breadcrumb {
  display: none;
}

@media print {
  a:link, a:visited {
    text-decoration: underline !important;
  }
  a:link.header__site-link, a:visited.header__site-link {
    text-decoration: none !important;
  }
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  #content a[href^="javascript:"]:after, #content a[href^="#"]:after {
    content: "";
  }
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body, #page, #main, #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }
  #skip-link, #toolbar, #navigation, .region-sidebar-first, .region-sidebar-second, #footer, .breadcrumb, .tabs, .action-links, .links, .book-navigation, .forum-topic-navigation, .pager, .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/**
* Display of ars electronica block in footer
* RS 13 June 2018
*/
.funding {
  float: left;
}

.ars a {
  white-space: nowrap;
  overflow: hidden;
  height: 6vw;
  width: 16vw;
  margin-top: 2vw;
  margin-left: 20vw;
  display: flex;
  align-items: center;
}

/**
* Podcast stuff
* MB 27 Sept 2022
*/
.podcast-s01-header {
  background-image: url(../images/podcast-banner.jpg);
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 23vw;
  z-index: 2;
}

.podcast-s01-header {
  background-image: url(../images/podcast-banner.jpg);
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 23vw;
  z-index: 2;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.05rem;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
  font-weight: bold;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi) {
  .podcast-s01-header {
    /* Retina-specific stuff here */
    background-image: url(../images/podcast-banner@2x.jpg);
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  .podcast-s01-header {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  #navigation:hover .podcast-s01-header {
    display: none;
  }
}
@media (min-width: 1400px) {
  .podcast-s01-header {
    /** Don't blame me: these are the values used elsewhere */
    height: 322px;
  }
}
.podcast-episode-list {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

/*# sourceMappingURL=style.css.map */
