/*
#===============================================================================
# gila.css
#===============================================================================
# Copyright (c) 2004 Thomas Weibel. All rights reserved.
#
# Defines the CSS for beeblebrox-gila.tmpl
#
# This file is part of the PmWiki beeblebrox gila skin; you can redistribute it 
# and/or modify it under the terms of the GNU General Public License as 
# published by the Free Software Foundation; either version 2 of the License, 
# or (at your option) any later version.
#===============================================================================
*/

/***********************************************************************
**  skin.css
**  Copyright 2016-2019 Petko Yotov www.pmwiki.org/petko
**  
**  Partially based on pmwiki.css:
**  Copyright 2004-2006 Patrick R. Michaud pmichaud@pobox.com
**  Copyright 2006 Hagan Fox
**  
**  This file is part of PmWiki; you can redistribute it and/or modify
**  it under the terms of the GNU General Public License as published
**  by the Free Software Foundation; either version 2 of the License, or
**  (at your option) any later version.  See pmwiki.php for full details.
**  
**  This skin was implemented with a mobile-first approach.
**  It should work reasonably well with browsers released since 2009.
**  This CSS uses relative "Reference pixel" dimensions.
***********************************************************************/


/* 
#-------------------------------------------------------------------------------
# Schriftart (font) ist lokal gespeichert 
# auskommentiert 14.11.23 va. Die Schriftarten wurden nur bei Aufruf mit
# voranstehendem www geladen.
#-------------------------------------------------------------------------------
*/

/* cyrillic-ext 
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* cyrillic 
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin-ext 
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin 
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Montserrat-Regular.ttf') format('truetype');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* 
#-------------------------------------------------------------------------------
# Common styles
#-------------------------------------------------------------------------------
*/

body, #bodywrap {
  padding: 0px;
  margin: 0;
  color: #333333;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
  background-color: white;
  /*background-image:  url("https://www.bne.uni-osnabrueck.de/pub/uploads/bg.png")*/
}

h1 {
  font-size: 2em;
  font-size: 150%;
}

h2 {
  font-size: 1.17em;
  font-size: 120%;
} 

h3 {
  font-size: 1em;
  font-size: 110%;
} 

acronym, abbr {
    border-bottom: 1px dotted rgb(168,140,83);
    cursor: help;
    margin: 0;
    padding: 0;
}

.smallCaps {
    font-size: 100%;
    font-variant: small-caps;
}


hr {
    height: 1px;
    color: black;
}

#center {
  text-align: center;
}

code { 
    color: rgb(115,0,0); 
    font-size: 100%
}

dt { 
    color: rgb(155,63,11); 
}

pre {
    font-size: 12px;
    color: rgb(68,68,68);
    background-color: rgb(244,244,244);
    border: 1px dotted rgb(68,68,68);
    padding: 10px;
}

p.right {
  text-align: right;
}

p.center {
  text-align: center;
}

td,th {
  vertical-align:top;
}

.largetext120 {
 margin-top:.4em;
 font-size: 120%;
}

.largetext140 {
  margin-top:.4em;
  font-size: 140%;
}

.largetext180 {
 margin-top:.4em;
 font-size: 180%;
}

/* 
#-------------------------------------------------------------------------------
# wikileft als ausklappbare sidebar wird eingeblendet bei klick auf 
# Hamburger-Logo (xmenu.svg).
# Logik, die das Auswählen des checkbuttons wikileft-toggle erkennt
#-------------------------------------------------------------------------------
*/  

#wikileft {
  background-color: #fff;
  opacity: 0.1;
  display: none;
  position: absolute;
  border: 1px solid #ccc;
  height: auto;
  overflow: auto;
  left: 8px;
  top: 8px;  
  -webkit-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.75);
  box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.75);
  right:34px;
  padding: 6px;
  z-index: 999;
}

#wikileft-toggle {
  display: none;
}

#wikileft-toggle-label {
  position: absolute;
  width: 22px;
  height: 22px;
  background-image: url(xmenu.svg);
  background-size: cover;
  background-repeat: no-repeat;
  float:right;
  right:2px;
  top:2px;
  margin: 6px 6px 0 6px;
  z-index: 9999;
}

#wikileft-toggle:checked + label {
  background-image: url(xclose.svg);
}

#wikileft-toggle:checked ~ #header #wikileft {   
  display: block;
  opacity: 1;
  
-webkit-animation: fadein 1s; 
   -moz-animation: fadein 1s;
    -ms-animation: fadein 1s;
     -o-animation: fadein 1s;
        animation: fadein 1s;
}

#wikioverlay {
  position:fixed;
  top: 0;
  bottom: 0;
  left: 0; 
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, .2);
  z-index: 2;
  display: none;
}

#wikileft-toggle:checked ~ #wikioverlay {   
  display: block;
} 

#logo_right {
  display:none;
}

#wikileft-toggle:checked ~ #header #logo_left {   
  z-index:1 ; 
} 

/* Large tables can scroll. wird durch javascript angesprochen */
div.scrollable { 
  max-width: 100%; overflow: auto; border: 1px solid #808080;
}


/*
#-------------------------------------------------------------------------------
# Forms and Buttons
#-------------------------------------------------------------------------------
*/

input, textarea {
    border: 1px solid rgb(216,210,195);
    background: rgb(244,244,244);
    margin: 3px;
    padding: 2px;
}

input:focus, textarea:focus {
    background: rgb(250,250,250);
}

form label.left {
    margin-right: .3em;
    vertical-align: middle;
    float: left;
    width: 7em;
    text-align: right;
    padding: .1em;
}

form div.right {
    margin-left: 7.4em;
}

form {
    line-height: 140%;
}   
   
fieldset {
    border: 1px solid rgb(216,210,195);
    color: rgb(166,140,83);
    font-weight: bold;
    width: auto;
    border: none;
}

.button:hover  {
 background-color:#fafafa;
 color:#207cca;
}


/*
#-------------------------------------------------------------------------------
# Wiki header
#-------------------------------------------------------------------------------
*/

#header {

  margin-top: 0em;
  width: 100%;
  height: auto;
  min-height:122px;

}


#header img {
    background-color: rgb(255,255,255);
    width: 160px;
    height: 122px;
}

#wikileft img {
    height: 25px;
    width: auto;
}

#logo_left {
    position:absolute;
    top: 0;
    left:0;
    background-color: rgba(255,255,255);
    padding: 0 0 0 0; 
    z-index: 99;
}

#logo_right {
    position:absolute;
    top: 0;
    right:0;
    background-color: rgba(255,255,255);
    padding: 0 0 0 0; 
    z-index: 99;
}

.headerTitle {
  padding-top: 10px;
  margin-left:155px;
  margin-right:32px;
  font-size: 1em;
  text-align: center;
}

.headerTitle a {
    text-decoration: none;
}

.vspace { 
  margin-top:0em; 
  margin-bottom: .2em;
  }

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


/* 
#-------------------------------------------------------------------------------
# Wiki navigation
#-------------------------------------------------------------------------------
*/

/* Skip-Link */
#skip-link { 
	position: absolute; 
	left: 0; top: 0; 
	background: black; 
	color: white; 
	padding: 0.25em; 
	transform: translateY(-100%);
	transition: 0.2s transform; 
	z-index: 9999; 
} 
#skip-link:focus { 
	transform: translateY(0); 
}

.navi {
  text-align: left;
}

.navi ul {
  margin: 0;
  padding: 0;
}

.navi ul li {
    list-style: none;
    margin:0;
    padding: 0 0 0 1em;
    background: white;
}

.navi ul li a:hover {
   background-color: darkred;
      color:white;
}

.navi ul li a, .navi > details summary a {
      text-decoration:none;
      color: black;
}

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

.navi ul li:focus-within, .navi ul li:hover {
   background-color: darkred;
      color:white;
}


.navi ul ul li a:hover, .navi ul li a:focus {
      background-color: darkred;
      color: white;
}

/* Originalsymbole vor den Summary entfernen und eigene Symbole definieren */
.navi summary::-webkit-details-marker { 
	display: none; 
}
.navi summary { 
	list-style-type:  none; 
}
.navi summary:focus {
  outline: 1px solid darkred;

}
.navi *::before,
.navi *::after { 
	font-family: arial_unicode_ms; 
	vertical-align: top; 
  display: inline-block;
}
.navi details *::after {
  text-align: end;
  width: 1.5em;
}
.navi details *::before {
  text-align: center;
  width: 1.2em;
}
.navi ul details:not([open]) > summary::after { 
	content: '►'; 
}
.navi ul details[open] > summary::after { 
	content: '◄'; 
}
html.no-details .navi ul summary::before { /* Für Details-Polyfill */
	content: ''; width: 0; 
}
/* 
#-------------------------------------------------------------------------------
# Wiki body
#-------------------------------------------------------------------------------
*/

#wikibody {
    position: relative;
    line-height: 1.5em;
    margin: 0em 0em 0em 0em;
    padding: 1em 1em 1em 1em;  
    border-top: solid 1px lightgray; 
    background-color: #F0F0F0;
}

#wikibody img {
    position: relative;
    max-width:100%;
    height:auto;
}

#wikibody #wikicmds a {
  color: rgb(153,153,153); 
  text-decoration: none;
}

#wikibody h1 {
  text-align: center;
  background-color: transparent;
  margin-top: 1ex;
  line-height: 140%;
  width: 100%;
}

#wikibody h2 {
  background-color: transparent;
  text-align: left;
  line-height: 130%;
  margin-top: 1ex;
  margin-bottom: 0.5ex;
  width:100%;
}

#wikibody h3 {
  background-color: transparent;
  text-align: left;
  margin-top: 1ex;
  margin-bottom: 0.5ex;
  width:100%;
}

#wikibody #breadcrumbs {  
  position: relative;
  vertical-align:top;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 85%;
  margin-top: 40px;
}

#wikibody #wikipage {
  margin-top: 10px;
}

#wikibody #wikicmds {
  float: right;
  border-bottom: solid 1px rgb(221,221,221);
  border-left: solid 1px rgb(221,221,221);
  font-family: sans-serif;
  font-size: 85%;
  color: rgb(153,153,153);
}

#wikibody #wikicmds a {
  color: rgb(153,153,153); 
  text-decoration: none;
}

#wikitext, #wikitext p {
  width: 100%;
  margin: auto;
}

#wikibody a {
  background-color: transparent;
  text-decoration: underline;
}

#wikibody a:hover {
  text-decoration: none;
}

#wikibody a.createlinktext { 
  text-decoration: none; 
  border-bottom: 1px dotted gray; 
}

#wikibody a.createlink { 
  text-decoration: none; 
  position: relative; 
  top: -0.5em;
  font-weight: bold; 
  font-size: smaller; 
  border-bottom: none; 
}

#wikibody table { 
  padding-top: 10px;
  font-size: 90%;
}

#wikibody table img{ 
  text-align:center;
}

#wikibody .wikitrail {
  text-align: center;
  font-weight: bold;
}

#banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  height: auto;
}

#logo_uni img {
  height: auto;
  width: 180;
}

#links a {
  position: absolute;
  top: 0px;
  left: 0px;
}

/*#wikitext .flex {
  display:flex;
  flex-direction: column;
  justify-content:center;
  margin-left:auto;
  margin-right:auto;
  row-gap: .5em;
}
*/

aside {
  border: thin solid grey;
  border-radius:1em 0 1em 0;
}

#wikitext section {
  display:flex;
  flex-direction: column;
  margin-top: .5em;
  column-gap:.5em;
  justify-content:center;
  background-color: transparent;
  row-gap: .5em;
}

#wikitext article, aside {
  padding:10px 10px;
  background-color: #D3D3D3;
}


/* 
#-------------------------------------------------------------------------------
# Wiki footer
#-------------------------------------------------------------------------------
*/

#wikifoot {
  color: white;
  padding: 0;
  font-size: 75%;
  text-align: center;
  margin: 0em 0em 0 0em;
  background-color: black;
  text-align: center;
}

#wikifoot ul {
  padding-left: 1em;
  padding-right: 1em;
}

#wikifoot ul li, #wikifoot ul li ul li {
  display: block;
}

#wikifoot a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

#wikifoot a:hover {
  text-decoration: underline;
  color: darkred;
}

#wikifoot .footnav a {
  color: rgb(153,153,153);
}

#wikifoot .footnav a:hover {
  text-decoration: underline;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
}

#wikifoot section {
  border-bottom: thin solid dimgrey;
  border-radius: 0;
  padding: 6px;
}

#wikifoot section ul li {
  list-style: none;
  font-weight: bold;
  color: black;
}

#wikifoot section a {
  color: black;
}


/*
#-------------------------------------------------------------------------------
# breakpoint mediaquery: ab hier Einstellungen für grosse Bildschirme
#-------------------------------------------------------------------------------
*/

@media screen and (min-width:69em) {

#wikileft {
  background-color: white;
  opacity: 1;
  display: inline-block;
  position: relative;
  overflow: visible;
  width:100%;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
  -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
  box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
}

#wikileft-toggle-label {
  display:none;
}

#wikileft-toggle:checked ~ * #logo_right {
  display:inherit;
}


/*
#-------------------------------------------------------------------------------
# Forms and Buttons
#-------------------------------------------------------------------------------
*/

#wikiedit, textarea {
width: 95%;
height: 85%;
font-size: 1.1em;
}


/*
#-------------------------------------------------------------------------------
# Wiki header
#-------------------------------------------------------------------------------
*/


#header img {
    height: 131px;
}

#logo_left {
    z-index: 9999;
}

#logo_right {
    display:inherit;
    z-index: 9999;
}

.headerTitle {
  padding-top: 20px;
  margin-right: 155px;
  font-size: 2em;
}

#wikileft img {
    height: 25px;
    width: auto;
}

/* 
#-------------------------------------------------------------------------------
# Wiki navigation
#-------------------------------------------------------------------------------
*/

#navi {
  position: relative;
}

.navi {
  display: flex;
  flex-direction: row;
  justify-content:center;
}

.navi > details {
  display: inline-block; 
  padding: .5em 1em .5em 1em;
  border-right: solid 1px #c9c9c9;
}

.navi ul {
  position: absolute;
  margin-left: -1em;
  margin-top: .5em;
}

.navi ul li {
    display:block;
    padding: 1em;
    position:relative;
    border-right: solid 1px #c9c9c9;
}


.navi > ul li a {
  display:inline-block;
  padding: .5em;
  margin: .2em;
}


.navi ul ul, .navi ul ul li ul {
      list-style: none;
      margin: 0;
      padding: 0;   
      visibility:hidden;
      opacity:0;
      position: absolute;
      z-index: 9999;
      width:240px;
}
    
.navi ul ul {   
      top: 50px;
      left: 0px;
}
   
.navi ul ul li ul { 
      top: 0;
      left: 230px; 
}

.navi ul ul li {
      clear:both;
      width:100%;
}
   
.navi ul ul li a {
      background:none;
      padding:7px 15px;
      text-decoration:none;
      display:inline-block;
      float:left;
      clear:both;
      width:200px;
}

.navi ul ul li:hover {
      background-color: darkred;
}

.navi ul ul li a:hover {
      color: white;
}


/* 
#-------------------------------------------------------------------------------
# Wiki body
#-------------------------------------------------------------------------------
*/

#wikibody {
    padding: 1.5em 4.5em 1em 4.5em;  
}

#logo_uni img {
  position: absolute;
  top: 0px;
  right: 0px;
}

aside {
/*float: right;
 * width: 15%;*/
flex-basis:450px;
}

/*#wikitext .flex {
  flex-wrap:wrap;
  flex-direction: row;
}
*/

#wikitext section {
  flex-direction:row;
  flex-wrap:wrap;
  flex-basis:1100px;
}

#wikitext article {
  flex-basis:445px;
}


/* 
#-------------------------------------------------------------------------------
# Wiki footer
#-------------------------------------------------------------------------------
*/

footer {
  flex-direction: row;
  flex-wrap: wrap;
  border-bottom: thin solid dimgrey;
}

#wikifoot section {
  border: unset;
}

}

/*
#-------------------------------------------------------------------------------
# breakpoint mediaquery: ab hier Einstellungen für sehr grosse Bildschirme
#-------------------------------------------------------------------------------
*/

@media screen and (min-width:90em) {

#wikibody {
    padding: 1.5em 7em 1em 7em;  
}

#wikitext {
  max-width:1400px;
}

#wikitext section {
  flex-basis:1250px;
}

#wikitext article {
  flex-basis:570px;
}
}
