@charset "UTF-8";
html,
body {
  height: 100%;
  overflow-x: hidden;
  background-color: #444444;
  color: #eeeeee;
  font-size: 15px;
  line-height: 1.5;
}

@-moz-document url-prefix() {
  body {
    overscroll-behavior: none;
  }
}
* {
  font-size: inherit;
  line-height: inherit;
  vertical-align: top;
  color: inherit;
  background-color: inherit;
}

a {
  color: #cccccc;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #ffffff;
  text-decoration: none;
}
a.active {
  color: #ffffff;
}

ul, ol {
  padding-inline-start: 1.5rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.2rem;
}

.right {
  text-align: right;
}

.italic {
  font-style: italic;
}

.inline-block {
  display: inline-block;
}

.wrap {
  min-height: calc(100vh - 48px);
  height: auto;
  margin: 0 auto 0;
  padding: 0 0 0;
}
.wrap > .container {
  margin: 0 0 0 400px;
  padding: 1rem 2rem 1rem 2rem;
  width: auto;
  transition: margin-left 0.3s ease-in-out;
}

.footer {
  height: 48px;
  overflow-y: hidden;
  background-color: #222222;
  border-top: 1px solid #999999;
  color: #bbbbbb;
  width: 100vw;
  padding: 0 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.footer > div {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 10px;
}
.footer > div > * {
  line-height: 1;
}
.footer > div span {
  padding: 10px 0;
}
.footer > div a {
  padding: 10px 15px;
}
.footer > div a:last-child {
  padding-right: 10px;
}
.footer > div.items-left {
  padding-left: 15px;
  white-space: nowrap;
}
.footer > div.items-left a {
  padding: 10px 0;
}

@media all and (max-width: 820px) {
  .footer {
    display: block;
    height: auto;
    overflow-y: visible;
  }
  .footer > div {
    height: auto;
    padding: 0 5px;
  }
  .footer > div.items-right {
    justify-content: space-between;
    padding-top: 5px;
  }
  .footer > div.items-left {
    padding-left: 20px;
    padding-bottom: 10px;
  }
}
@media all and (max-width: 580px) {
  .footer > div.items-right {
    padding: 5px 10px;
  }
  .footer > div.items-right a {
    padding: 10px 10px;
  }
}
@media all and (max-width: 560px) {
  .footer > div.items-right a {
    flex-basis: 50%;
  }
  .footer > div.items-right a:nth-child(even) {
    text-align: right;
  }
}
div#menu_btn {
  position: fixed;
  z-index: 32;
  top: 50px;
  left: 5px;
  width: 44px;
  height: 44px;
  background-color: transparent;
}
div#menu_btn:before {
  content: "\e236";
  font-family: "Glyphicons Halflings";
  font-size: 30px;
  line-height: 1;
  display: table-cell;
  width: 44px;
  height: 44px;
  padding-top: 2px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}

div#menu_left {
  position: fixed;
  z-index: 35;
  top: 50px;
  bottom: 48px;
  left: 0px;
  width: auto;
  min-width: 400px;
  transition: left 0.3s ease-in-out;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #444444;
  border-right: 1px solid #999999;
}
div#menu_left .list-group {
  margin-bottom: 48px;
  border: none;
  max-width: 399px;
}
div#menu_left .list-group div.collapsed {
  display: none;
}
div#menu_left .list-group-item {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-color: #666666;
  background-color: #222222;
  color: #cccccc;
  position: relative;
}
div#menu_left .list-group-item.in-path {
  background-color: #111111;
  color: #ffffff;
}
div#menu_left .list-group-item:hover {
  background-color: #181818;
  color: #ffffff;
}
div#menu_left .list-group-item.active {
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
}
div#menu_left .list-group-item.depth-2 {
  font-weight: bold;
  border-top-color: #888888;
}
div#menu_left .list-group-item.depth-3 {
  padding-left: 30px;
  border-top-color: #888888;
}
div#menu_left .list-group-item.depth-4 {
  padding-left: 45px;
  border-color: #444444;
}
div#menu_left .list-group-item.depth-5 {
  padding-left: 60px;
  border-color: #444444;
}
div#menu_left .list-group-item.depth-6 {
  padding-left: 75px;
  border-color: #444444;
}
div#menu_left .list-group-item.parent {
  padding-right: 35px;
}
div#menu_left .list-group-item.parent span {
  position: absolute;
  right: 0;
  width: 40px;
  top: 0;
  height: 40px;
  color: #aaaaaa;
  background-color: transparent;
  transition: transform 0.3s ease-in-out;
}
div#menu_left .list-group-item.parent span:after {
  content: "\e072";
  font-family: "Glyphicons Halflings";
  font-weight: normal;
  position: absolute;
  top: 9px;
  right: 12px;
}
div#menu_left .list-group-item.parent span:hover:after {
  color: #ffffff;
}
div#menu_left .list-group-item.parent.expanded span {
  transform: rotate(90deg);
}
div#menu_left .list-group-item.in-path.parent.expanded span:after {
  color: #ffffff;
}
div#menu_left .list-group-item.not-published:after {
  content: "\e090";
  font-family: "Glyphicons Halflings";
  font-weight: normal;
  position: absolute;
  top: 7px;
  right: 34px;
  font-size: 1.25rem;
  opacity: 0.7;
}

div#menu_btn:hover + div#menu_left {
  left: 0;
}

body[data-page=home] .wrap > .container {
  margin: 0 auto 0 auto;
  max-width: none;
}
body[data-page=home] div#menu_btn, body[data-page=home] div#menu_left {
  display: none;
}

body[data-page=literature] div.content-item p {
  margin-bottom: 2rem;
}

div.page-head, div.page-foot {
  position: relative;
}

div#page_head {
  position: fixed;
  z-index: 30;
  top: 51px;
  height: 86px;
  right: 0;
  left: 400px;
  transition: left 0.3s ease-in-out;
  border-bottom: 1px solid #999999;
  /* h4 used in Literature only... */
}
div#page_head div#page_breadcrumb {
  height: 50px;
  padding: 11px 0;
  margin-right: 100px;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
div#page_head div#page_breadcrumb a {
  display: inline-block;
  margin: 0 20px 0 0;
  padding: 0 0;
  position: relative;
}
div#page_head div#page_breadcrumb a:after {
  content: "❯";
  position: relative;
  left: 10px;
  pointer-events: none;
}
div#page_head div#page_breadcrumb a:last-child:after {
  content: none;
}
div#page_head h3 {
  margin-top: -0.2rem;
}
div#page_head a.pull-right {
  position: absolute;
  bottom: 0;
  right: 1.5rem;
  text-align: right;
  width: calc(100% - 13rem);
}
div#page_head a.pull-right h4 {
  position: absolute;
  bottom: 0.2rem;
  right: 2rem;
  width: 100%;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
div#page_head a.pull-right:after {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  font-size: 1.2rem;
  font-family: "Glyphicons Halflings";
  content: "\e095";
}
div#page_head div#page_breadcrumb, div#page_head h3 {
  margin-left: 2rem;
  transition: margin-left 0.3 ease-in-out;
}
div#page_head a.link-prev, div#page_head a.link-next,
div#page_head div.link-prev, div#page_head div.link-next {
  position: absolute;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
}
div#page_head a.link-prev:before, div#page_head a.link-next:before,
div#page_head div.link-prev:before, div#page_head div.link-next:before {
  font-family: "Glyphicons Halflings";
  font-size: 2rem;
  line-height: 1;
}
div#page_head a.link-prev div, div#page_head a.link-next div,
div#page_head div.link-prev div, div#page_head div.link-next div {
  position: absolute;
  z-index: 20;
  pointer-events: none;
  bottom: -45px;
  right: 0;
  font-size: 1.5rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  background-color: transparent;
  padding: 0.3rem 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
div#page_head a.link-prev:hover div, div#page_head a.link-next:hover div,
div#page_head div.link-prev:hover div, div#page_head div.link-next:hover div {
  opacity: 1;
}
div#page_head a.link-prev,
div#page_head div.link-prev {
  right: 4rem;
}
div#page_head a.link-prev:before,
div#page_head div.link-prev:before {
  content: "\e079";
}
div#page_head a.link-prev div,
div#page_head div.link-prev div {
  right: -3rem;
}
div#page_head a.link-next,
div#page_head div.link-next {
  right: 1rem;
}
div#page_head a.link-next:before,
div#page_head div.link-next:before {
  content: "\e080";
}
div#page_head div.link-prev, div#page_head div.link-next {
  opacity: 0.3;
}
div#page_head a.admin-link {
  position: absolute;
  z-index: 10;
  top: -0.15rem;
  right: 7rem;
  padding: 5px 10px;
}
div#page_head a.admin-link:after {
  content: "\e066";
  font-family: "Glyphicons Halflings";
  font-size: 1.3rem;
  padding: 0 0.5rem;
  position: relative;
  top: 5px;
}

@media all and (max-width: 1280px) {
  div#page_head div#page_breadcrumb, div#page_head h3 {
    margin-left: 1rem;
  }
  .wrap > .container {
    padding: 0 1rem 45px 1rem;
  }
}
@media all and (max-width: 960px) {
  div#menu_left {
    left: -480px;
  }
  div#menu_left:hover {
    left: 0;
  }
  div#page_head {
    left: 0;
  }
  div#page_head div#page_breadcrumb, div#page_head h3 {
    margin-left: 4rem;
  }
  div#page_head a.pull-right {
    width: calc(100% - 16rem);
  }
  .wrap > .container {
    margin-left: 0;
  }
}
div#page_content {
  position: relative;
  margin: 0 auto;
  padding: 1rem 0;
  margin-top: 136px;
}

div.select-part {
  text-align: center;
}
div.select-part a {
  display: inline-block;
  width: 33.33%;
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out;
}
div.select-part a:hover {
  opacity: 1;
}
div.select-part a img {
  width: calc(100% - 40px);
  height: auto;
  margin: 0 20px;
}
div.select-part a div {
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  margin: 0.5em 0 2.5rem 0;
}
div.select-part a p.italic {
  position: relative;
  top: -1.5rem;
}
div.select-part a.disabled {
  pointer-events: none;
  opacity: 0.4;
}

@media all and (max-width: 960px) {
  div.select-part a {
    width: 50%;
  }
}
@media all and (max-width: 520px) {
  div.select-part a {
    display: block;
    width: auto;
    margin: 0 10px;
  }
  div.select-part a img {
    width: 100%;
    margin: 0 0;
  }
}
div.page-content div.page-foot {
  height: 2rem;
}
div.page-content div.content-item {
  margin: 1rem 0;
}
div.page-content div.content-item:before, div.page-content div.content-item:after {
  content: "";
  display: table;
  float: none;
  clear: both;
}
div.page-content div.content-item > h4 {
  font-size: 1.5rem;
  text-align: left;
  margin: 2rem auto 1.5rem auto;
}
div.page-content div.content-item:nth-child(2) > h4:first-child {
  margin-top: 0;
}
div.page-content div.content-item div.content-float {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
div.page-content div.content-item div.content-float > div.text {
  margin: 0 0 1rem 0;
  width: 25%;
  max-width: 725px;
  overflow-x: hidden;
  flex-grow: 1;
}
div.page-content table {
  margin-bottom: 1rem;
  max-width: 100%;
  overflow-x: auto;
  display: block;
  border: none;
}
div.page-content table caption {
  color: inherit;
}
div.page-content table tr {
  border-color: #dddddd;
}
div.page-content table tr td {
  padding: 0.2rem 0.4rem;
  border: 1px solid #dddddd;
}
div.page-content div.file-links {
  max-width: 725px;
  margin: 2rem auto;
}
div.page-content div.file-links a {
  position: relative;
  padding: 1rem 0;
  display: block;
}
div.page-content div.file-links a * {
  transition: none;
}
div.page-content div.file-links a > div {
  padding: 0 0 0 2.25rem;
}
div.page-content div.file-links a div.file-title {
  font-size: 1.15rem;
  font-weight: bold;
}
div.page-content div.file-links a div.file-caption p {
  margin: 0;
}
div.page-content div.file-links a.file-pdf:before {
  content: "\e022";
  font-family: "Glyphicons Halflings";
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.75rem;
  transition: none;
}
div.page-content div.biblio-list {
  max-width: 725px;
  margin: 2rem auto 1rem auto;
}
div.page-content div.biblio-list h4 {
  text-align: center;
}
div.page-content div.biblio-list table tr td {
  position: relative;
  padding: 0.75rem 0.5rem;
}
div.page-content div.biblio-list table tr td a {
  display: table;
  width: 100%;
  color: #ffffff;
}
div.page-content div.biblio-list table tr td a:after {
  content: "\e164";
  font-family: "Glyphicons Halflings";
  font-size: 1rem;
  position: absolute;
  right: 0.5rem;
  bottom: 0.75rem;
  font-weight: 300;
  color: #d8d8d8;
}
div.page-content div.biblio-list table tr td div {
  margin: 0 2rem;
}
div.page-content div.biblio-list table tr td span {
  position: absolute;
  top: 0.75rem;
  left: 4px;
  width: 1.5rem;
  text-align: right;
}
div.page-content div.biblio-list table tr td div:first-child, div.page-content div.biblio-list table tr td div:last-child {
  color: #d8d8d8;
}
div.page-content div.biblio-list table tr td div.title {
  font-weight: bold;
}
div.page-content div.biblio-list table tr td div.endnote-nr {
  position: absolute;
  top: 0.75rem;
  right: 10px;
  display: inline-block;
  margin: 0;
  opacity: 0.5;
}
div.page-content div.biblio-list.biblio-list-all table tr td div {
  margin-left: 0.5rem;
}

@media all and (max-width: 1280px) {
  div.page-content div.content-item > h4 {
    max-width: 725px;
  }
  div.page-content div.content-item div.content-float > div.slideshow,
  div.page-content div.content-item div.content-float > div.images {
    width: auto;
    margin-right: 0;
  }
  div.page-content div.content-item div.content-float > div.slideshow:first-child:not(:last-child), div.page-content div.content-item div.content-float > div.slideshow:last-child:not(:first-child),
  div.page-content div.content-item div.content-float > div.images:first-child:not(:last-child),
  div.page-content div.content-item div.content-float > div.images:last-child:not(:first-child) {
    float: none;
  }
  div.page-content div.content-item div.content-float > div.text,
  div.page-content div.content-item div.content-float > div.text:last-child:not(:first-child) {
    display: block;
    width: auto;
    max-width: 725px;
  }
}
body[data-page=home] div#page_content {
  margin-top: 50px;
  max-width: none;
}

a[rel=biblio].number {
  color: #ffffff;
  background-color: #111111;
  padding: 0 2px 1px 2px;
  font-size: 0.77rem;
  vertical-align: top;
}

div#biblio_popup {
  display: none;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  max-width: 680px;
  margin: auto;
  padding: 5px 8px;
  border: 1px solid #dddddd;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.9);
}
div#biblio_popup a {
  display: table;
  width: 100%;
  color: #ffffff;
}
div#biblio_popup a:after {
  content: "\e164";
  font-family: "Glyphicons Halflings";
  font-size: 1rem;
  position: absolute;
  right: 6px;
  bottom: 0.2rem;
  font-weight: 300;
  color: #d8d8d8;
}
div#biblio_popup div.title {
  font-weight: bold;
}

div.section-title {
  max-width: 725px;
  margin: 2.5rem auto 2rem auto;
}

div.page-previews {
  max-width: 725px;
  margin: 2rem auto;
}
div.page-previews a.page-preview {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  column-gap: 2rem;
  margin-bottom: 1.5rem;
}
div.page-previews a.page-preview div.preview-text {
  width: calc(100% - 200px - 2rem);
}
div.page-previews a.page-preview div.preview-text h4 {
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
div.page-previews a.page-preview div.preview-image img {
  max-width: 200px;
}

@media all and (max-width: 640px) {
  div.section-title {
    margin-top: 1.5rem;
  }
  div.page-previews a.page-preview {
    column-gap: 1.5rem;
  }
}
@media all and (max-width: 640px) {
  div.page-previews a.page-preview {
    display: block;
  }
  div.page-previews a.page-preview div.preview-text {
    width: auto;
  }
}
body[data-uri^="/legal"] div#page_content {
  margin-top: 92px;
}
body[data-uri^="/legal"] div.page-content table {
  border: none;
}
body[data-uri^="/legal"] div.page-content table td {
  border: none;
  padding: 0.5rem 0.5rem;
}
body[data-uri^="/legal"] div.page-content table td:first-child {
  padding-left: 0;
}
body[data-uri^="/legal"] nav.navbar-fixed-top {
  background-color: #444444;
}
body[data-uri^="/legal"] div#page_head {
  background-color: #444444;
  height: 43px;
}
body[data-uri^="/legal"] div#page_head h3 {
  margin-top: 0.5rem;
}
body[data-uri^="/legal"] div#page_head div#page_breadcrumb {
  display: none;
}
body[data-uri^="/legal"] div#page_head .link-prev, body[data-uri^="/legal"] div#page_head .link-next {
  display: none;
}

@media all and (max-width: 1080px) {
  body[data-uri^="/legal"] div.page-content table td {
    display: block;
    padding-bottom: 0;
  }
  body[data-uri^="/legal"] div.page-content table td:first-child {
    padding-left: 0.5rem;
  }
  body[data-uri^="/legal"] div.page-content table td.right {
    text-align: left;
  }
  body[data-uri^="/legal"] div.page-content table td.empty {
    display: none;
  }
  body[data-uri^="/legal"] div.page-content table td.empty + td:not(.empty) {
    padding-bottom: 0.5rem;
  }
}
img.logo {
  width: 240px;
  height: auto;
  margin-right: 3rem;
  margin-bottom: 1.5rem;
}

.alert span.glyphicon {
  font-size: 20px;
  margin-right: 8px;
  vertical-align: top;
}

.alert span.message {
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  width: calc(100% - 60px);
}

#preview_hint {
  position: fixed;
  z-index: 99;
  bottom: 10px;
  left: 10px;
  display: table;
  padding: 5px 10px 8px 10px;
  background-color: #ff4949;
  border: solid 1px #cc0000;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}
#preview_hint div {
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  font-weight: normal;
}
