@charset "utf-8";
/* CSS Document */
/* Zusammengefuehrt aus atmosphere.css, layout.css und extended.css. */

/* -----------------------------------------------------------------------------
 * Atmosphere: Grundfarben und Typografie
 * Quelle: atmosphere.css
 * ----------------------------------------------------------------------------- */

html    {
    font-size: 100%;
	background-color: #F9F9F9;
}

body {
    background-color: #F9F9F9;
    color: #000;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    font-size: 1em; /* 16px */
    line-height: 1.4em;
}

.page-wrapper {
   background-color: #F9F9F9;
}

header {
    background-color: #F9F9F9;
    color: #efefef;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.5) inset;
}

.main {
    background-color: #F9F9F9;
    color: #1A1F2B;
}

.mainContent {
    color: #333;
}

aside {
    color: #1A1F2B;
    background-color: #F9F9F9;
}

footer {
   display: block;
   margin-top: 60px !important;
   background-color: #ddd;
   color: #efefef;
   text-align: center;
}

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

footer ul li {
   display: inline-block;
   margin: 0 15px;
}

footer ul li a {
   font-size: 0.8em;
   color: white;
}

/* ----------------------------------------------------------------------------- *
 *                             Textauszeichnungen                                *
 * ----------------------------------------------------------------------------- */

h1, h2, h3  {
   font-family: Verdana, Helvetica, Arial, sans-serif;
   color: #000;
}

h1, h2  {
    font-size: 2.250em; /* 36px; */
    line-height: 1.5em; /* 54px */
}

.table-heading {
    font-family: Verdana, Helvetica, Arial, sans-serif;
    color: #000;
    font-size: 2.250em;
    line-height: 1.5em;
}

.text h1 small,
.table-heading small {
    line-height: inherit;
}

h3  {
    font-size: 1.375em; /* 22px */
    font-weight: normal;
}

p.teasertext    {
    color: #30395C; /* middle dark blue */
    font-family: "Trebuchet MS",Helvetica,Arial;
    font-size: 1.188em; /* 19px */
    line-height: 1.368em; /* 26px */
}

a:link, a:visited {
    color: #666;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    color: #333;
    text-decoration: underline;
}

.highlight{
   color: yellowgreen;
}

/* ----------------------------------------------------------------------------- *
 *                                    Navigation                                 *
 * ----------------------------------------------------------------------------- */

nav {
    box-shadow: 0 0 20px rgba(112, 23, 124, 0.2) inset;
    color: #efefef;
    font-family: Verdana,Helvetica,Arial;
    font-size: 0.7em;
}

nav ul li {
    list-style: none;
}

nav a:link, nav a:visited {
   color: #CCC;
	border-bottom: 1px solid #333;
	background-color: #464646;
	transition: background-color .8s;
}

nav a:hover {
    color: #fff;
	border-bottom: 1px solid #464646;
}

/* -----------------------------------------------------------------------------
 * Layout: Seitenraster, Navigation und Lightbox-Basis
 * Quelle: layout.css
 * ----------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------- *
 *                           Styles der Basisversion                             *
 * ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- *
 * Änderung des default-Box-Modells aller Elemente auf "border-box"
 * http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 * << apply a natural box layout model to all elements >>
 * ----------------------------------------------------------------------------- */
*, *:before, *:after {
    -webkit-box-sizing: border-box; /* Safari/Chrome, andere WebKit-Browser */
    -moz-box-sizing: border-box; /* Firefox, andere Gecko-Browser */
    box-sizing: border-box; /* Opera/IE 8+ */
}

/* ----------------------------------------------------------------------------- */
.page-wrapper {
    margin: 0;
}

header {
    padding: 0.5em 20px;
}

aside, footer {
    padding: 0.6em 20px;
}

section {
    padding: 0 20px;
}

.mainContent {
    width: 100%;
    border-top: 1px solid transparent;
}

aside {
    width: 100%;
    margin-left: 0;
}

/* ----------------------------------------------------------------------------- *
 *                             Textauszeichnungen                                *
 * ----------------------------------------------------------------------------- */
h1 {
    margin: 0;
}

h2 {
    margin: 0.6em 20px;
}

p.teasertext {
    margin: 0.8em 20px;
}

ul, ol {
    padding: 0;
    margin: 0 0 0.625em 20px;
}

/* ----------------------------------------------------------------------------- *
 *                                  Navigation                                   *
 * ----------------------------------------------------------------------------- */
nav ul {
    margin: 0;
}

nav ul > li {
    margin-left: 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.6);
}

nav ul > li > a, nav ul > li > strong {
    padding: 0.6em 20px;
    display: block;
}

nav ul a:link {
    text-decoration: none;
}

/* ----------------------------------------------------------------------------- *
 *                           Styles der Tabletversion                            *
 *                          750px / 16px/em = 46.875em                           *
 * ----------------------------------------------------------------------------- */
@media only screen and (min-width: 46.875em) {

    /* Schriftverkleinerung wird für große Screens wieder aufgehoben */
    @media only screen and (max-width: 78em) {
        body {
            font-size: 0.938em; /* 15px */
        }
    }

    .main {
        /* clearing für die floatenden gleichlangen Spalten (.mainContent und .aside) */
        overflow: hidden;
    }

    .mainContent {
        width: 70%;
        float: left;
        padding: 0.8em 20px;
        border-top: none;
    }

    aside {
        width: 30%;
        margin-left: 70%;
        /* Trick für gleichlange Spalten  - dazu gehört ein overflow: hidden für den umgeb. Container */
        margin-bottom: -99999px !important;
        padding-bottom: 99999px !important;
    }

    aside, footer {
        padding: 0.8em 20px;
    }

    section {
        padding: 0;
    }

    /* ----------------------------------------------------------------------------- *
     *                             Textauszeichnungen                                *
     * ----------------------------------------------------------------------------- */
    h2 {
        font-size: 2.1875em; /* 35px */
        line-height: 1.2em;
        margin: 0.3em 0 0;
    }

    p.teasertext {
        margin: 0.8em 0;
    }

    /* ----------------------------------------------------------------------------- *
     *                                  Navigation                                   *
     * ----------------------------------------------------------------------------- */
    nav {
        /* clearing für die floatenden LIs */
        overflow: hidden;
        font-size: 1.2em; /* 18px */
    }

    nav ul {
        margin: 0 20px;
    }

    nav ul li {
        float: left;
        border: none;
        width: auto;
    }

    nav ul > li > a {
        padding: 0.7em 10px 0.7em 10px;
        display: inline-block;
    }
}

/* ----------------------------------------------------------------------------- *
 *                          Styles für kleine Desktops                           *
 *                           1024px / 16px/em = 64em                             *
 * ----------------------------------------------------------------------------- */
@media only screen and (min-width: 64em) {
    /* Navigation wird links neben dem Inhalt angeordnet */
    nav {
        width: 20%;
        float: left;
        box-shadow: none;
    }

    nav ul {
        margin: 1.6em 0 0;
    }

    nav ul > li {
        width: 100%;
        float: none;
    }

    nav ul > li > a {
        padding: 0.8em 25px;
        display: block;
    }

    /* .main macht Platz für .nav */
    .main {
        width: 80%;
        float: left;
    }

    /* Größenanpassungen */
    .mainContent {
        width: 65%;
        padding: 0.8em 20px;
    }

    aside {
        width: 35%;
        margin-left: 65%;
    }

    footer {
        clear: left;
    }
}
/* ----------------------------------------------------------------------------- *
 *                          Styles für große Desktops                            *
 *                           1248px / 16px/em = 78em                             *
 * ----------------------------------------------------------------------------- */
@media only screen and (min-width: 78em) {
    .page-wrapper {
        margin: 0 auto;
        max-width: 78em;
    }
}


/* ----------------------------------------------------------------------------- *
 *                      Beispiel Responsive-Nav im Basis-Layout                  *
 * ----------------------------------------------------------------------------- */
/* responsive-nav.js v1.0.14 by @viljamis - start */
/*
 #nav ul {
     margin: 0;
     padding: 0;
     width: 100%;
     display: block;
     list-style: none;
 }
 #nav li {
     width: 100%;
     display: block;
 }
 */
.js #nav {
    clip: rect(0 0 0 0);
    max-height: 0;
    position: absolute;
    display: block;
    overflow: hidden;
    zoom: 1;
}

#nav.opened {
    max-height: 9999px;
}
/* responsive-nav.js v1.0.14 by @viljamis - ende */

/*
 * Eigene Anpassungen für den Toggle-Button
 */
#nav-toggle {
    display: inline-block;
    position: absolute;
    right: 5%;
    top: 1em;
    -webkit-border-radius: 0.2em;
    -moz-border-radius: 0.2em;
    border-radius: 0.2em;
    cursor: pointer;
    padding: 0.357em;
    color: #000;
    background: #fff;
    border: 1px solid #4A6491;
}

#nav-toggle:hover {
    border: 1px solid #000;
    background: #fff;
    color: #999;
	text-decoration: none;
}

/* ----------------------------------------------------------------------------- *
 *                  Beispiel Responsive-Nav im im Desktop-Layout                 *
 * ----------------------------------------------------------------------------- */
@media only screen and (min-width: 46.875em) {
    /* responsive-nav.js v1.0.14 by @viljamis - start */
    .js #nav {
        position: relative;
    }

    .js #nav.closed {
        max-height: none;
    }

    #nav-toggle {
        display: none;
    }


    /* responsive-nav.js v1.0.14 by @viljamis - ende */
}




/* NEU */
/* ----------------------------------------------------------------------------- *
 *             Beispiel Responsive Slideshow mit responsiveslides.js             *
 * ----------------------------------------------------------------------------- */
.lightbox-galerie{
    list-style: none;
    margin: 0;
    padding: 4px;
    overflow: auto;
    background-color: #fff;
    border: none;
}

.lightbox-galerie li{
    width: 100%;
    margin: 0;
    padding: 0;
}

.lightbox-galerie a{
    display: block;
    line-height: 0;
}

.lightbox-galerie li img{
    width: 100%;
    height: auto;
    border: 1px solid #444;
}

/* ----------------------------------------------------------------------------- *
 *                              0px / 16px/em = 30em                           *
 * ----------------------------------------------------------------------------- */

@media only screen and (min-width: 10em) {
    .lightbox-galerie li{
        width: 50%;
        float: left;
    }
}

@media only screen and (min-width: 20em) {
    .lightbox-galerie li{
        width: 33.333333%;
    }
}

@media only screen and (min-width: 30em) {
    .lightbox-galerie li{
        width: 25%;
    }
}

@media only screen and (min-width: 40em) {
    .lightbox-galerie li{
        width: 20%;
    }
}


#imagelightbox {
    box-shadow: 0 0 3.125em rgba(0,0,0,0.8);
    cursor: pointer;
    position: fixed;
    z-index: 10000;
}
#imagelightbox-loading, #imagelightbox-loading div {
    border-radius: 50%;
}
#imagelightbox-loading {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
    height: 2.5em;
    left: 50%;
    margin: -1.25em 0 0 -1.25em;
    padding: 0.625em;
    position: fixed;
    top: 50%;
    width: 1.5em;
    z-index: 10003;
}
#imagelightbox-loading div {
    animation: 0s ease 0s normal none infinite imagelightbox-loading;
    background-color: #fff;
    height: 1.25em;
    width: 1.25em;
}
@keyframes imagelightbox-loading {
    0% {
    opacity: 0.5;
    transform: scale(0.75);
    }
    50% {
    opacity: 1;
    transform: scale(1);
    }
    100% {
    opacity: 0.5;
    transform: scale(0.75);
    }
}
#imagelightbox-overlay {
    background-color: rgba(0,0,0,0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
}
#imagelightbox-close {
    background-color: #333;
    border: 1px solid #333;
    border-radius: 50%;
    height: 2.5em;
    position: fixed;
    right: 2.5em;
    text-align: left;
    top: 2.5em;
    transition: color 0.3s ease 0s;
    width: 2.5em;
    z-index: 10002;
}
#imagelightbox-close:hover, #imagelightbox-close:focus {
    background-color: #606060;
    border: 1px solid #333;
}
#imagelightbox-close:before, #imagelightbox-close:after {
    background-color: #fff;
    bottom: 20%;
    content: "";
    left: 50%;
    margin-left: -1px;
    position: absolute;
    top: 20%;
    width: 2px;
}

#imagelightbox-close:hover:before, #imagelightbox-close:hover:after {
    background-color: #fff;
}

#imagelightbox-close:before {
    transform: rotate(45deg);
}
#imagelightbox-close:after {
    transform: rotate(-45deg);
}
#imagelightbox-caption {
    background-color: #333;
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 0.625em;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 10001;
}
#imagelightbox-nav {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    bottom: 3.75em;
    left: 50%;
    padding: 0.313em;
    position: fixed;
    transform: translateX(-50%);
    z-index: 10001;
}
#imagelightbox-nav button {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: 1em;
    margin: 0 0.313em;
    width: 1em;
}
#imagelightbox-nav button.active {
    background-color: #000;
}
.imagelightbox-arrow {
    background-color: #333;
    border: none;
    display: none;
    height: 3em;
    margin-top: -1.0em;
    position: fixed;
    top: 50%;
    vertical-align: middle;
    width: 3.0em;
    z-index: 10001;
}
.imagelightbox-arrow:hover, .imagelightbox-arrow:focus {
    background-color: #606060;
	border: 4px solid #606060;
    border-radius: 0.2em;
}
.imagelightbox-arrow:active {
    background-color: #111;
}
.imagelightbox-arrow-left {
    left: 2.5em;
}
.imagelightbox-arrow-right {
    right: 2.5em;
}
.imagelightbox-arrow:before {
    border: .7em solid transparent;
    content: "";
    display: inline-block;
    height: 0;
    margin-bottom: -0.125em;
    width: 0;
}
.imagelightbox-arrow-left:before {
    border-left: medium none;
    border-right-color: #fff;
    margin-left: -0.313em;
}
.imagelightbox-arrow-right:before {
    border-left-color: #fff;
    border-right: medium none;
    margin-right: -0.313em;
}
#imagelightbox-loading, #imagelightbox-overlay, #imagelightbox-close, #imagelightbox-caption, #imagelightbox-nav, .imagelightbox-arrow {
    animation: 0.25s linear 0s normal none 1 fade-in;
}
@keyframes fade-in {
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
    }
}
@media only screen and (max-width: 41.25em) {
    #container {
        width: 100%;
    }
    #imagelightbox-close {
        right: 1.25em;
        top: 1.25em;
    }
    #imagelightbox-nav {
        bottom: 1.25em;
    }
    .imagelightbox-arrow {
        height: 3.75em;
        margin-top: -2.75em;
        width: 2.5em;
    }
    .imagelightbox-arrow-left {
        left: 1.25em;
    }
    .imagelightbox-arrow-right {
        right: 1.25em;
    }
}
@media only screen and (max-width: 20em) {
    .imagelightbox-arrow-left {
        left: 0;
    }
    .imagelightbox-arrow-right {
        right: 0;
    }
}

/* -----------------------------------------------------------------------------
 * Projektanpassungen und Overrides
 * Quelle: extended.css
 * ----------------------------------------------------------------------------- */

html, body {
   color: #000;
   background-color: #F9F9F9;
}

html {
   overflow-y: scroll;
}

.name {
   color: #000;
   font-size: 2.5em;
   background-color: #F9F9F9;
   margin-bottom: 30px;
   border-bottom: 1px solid #000;
}

.dist {
   margin-top: -11px;
}

.text {
   margin-top: -0.5em;
   margin-left: 0.4em;
   font-size: 0.9em;
   line-height: 1.2em;
}

.filme {
   margin-top: -0.56em;
   margin-left: 0.4em;
   font-size: 0.9em;
   line-height: 1.2em;
}

.text td p {
   margin-top: 0;
   margin-bottom: 0.5em;
}

.text td {
   vertical-align: top !important;
}

.text h1 {
   height: 1.5em;
   overflow: visible;
}

.text-block {
   width: 432px;
   max-width: 100%;
}

.datenschutz {
   margin-top: -0.5em;
   margin-left: 0.4em;
   font-size: 0.7em;
   line-height: 1.2em;
}

.datenschutz p {
   margin: 0;
   padding: 0.3em;
}

.grosse-huelle {
   text-align: right;
   font-size: 9px;
   line-height: 4px;
}

.impress {
   font-size: 0.8em;
   line-height: 1.2em;
}

.zwischentitel {
   font-size: 0.8em;
   padding-left: 5px;
   padding-bottom: 3px;
}

.untertitel {
   font-size: 0.8em;
}

.einruecken {
   padding-left: 14px;
}

.cover-1 img {
   border: 2px solid #fff;
}

.cover-2 img {
   border: 1px solid #ccc;
}

.bild-responsiv {
   display: block;
   max-width: 100%;
   height: auto;
}

/* --- aus der layout.css ------------------------------------------- */
.page-wrapper {
   margin: 0 auto;
   max-width: 94em;
}

nav {
   box-shadow: none;
   font-size: .9em;
   line-height: 1.5em;
   margin-bottom: 12px;
}

nav ul {
   margin: 0 20px 20px 23px;
   text-align: right;
}

nav li a:link, nav li a:visited {
   padding-top: 3px;
   padding-right: 2px;
   padding-bottom: 0;
   display: block;
   background-color: #F9F9F9;
   -webkit-transition: background-color .8s;
   -moz-transition: background-color .8s;
   -o-transition: background-color .8s;
   -ms-transition: background-color .8s;
   transition: background-color .8s;
   color: #464646;
   border-bottom: 1px solid #464646;
   text-decoration: none;
   min-width: 10em;
}

nav li a:hover {
   color: #fff;
   text-decoration: none;
   background-color: #464646;
}

.activelink {
   font-weight: bold;
}

.werkgruppe {
   padding-right: 16px;
}

.activelink-werkgruppe {
   font-weight: bold;
   padding-right: 16px;
}

/* ---- lightbox angepasst -------

.lightbox-galerie li {
    margin: 2px;
    padding: 0;
    width: 20%;
	max-width: 100px;
}
.lightbox-galerie li img {
    border: 1px solid #444;
    height: auto;
    width: 100%;
	max-width: 100px;
}

---------------------------------*/
/* ---- lightbox komplett modifiziert -----------------------------------*/
.lightbox-galerie-mod, .lightbox-galerie-werk-II, .lightbox-galerie-werk-III {
   list-style: none;
   margin: 0;
   overflow: auto;
   background-color: #F9F9F9;
   border: none;
}

.lightbox-galerie-werk-II {
   overflow: visible;
}

.lightbox-galerie-mod li, .lightbox-galerie-werk-II li, .lightbox-galerie-werk-III li {
   float: left;
   margin: 4px 6px 0 5px;
   padding: 0;
}

.lightbox-galerie-mod img {
   width: auto;
   height: 9.375em;
   margin-top: 13px;
   margin-right: 14px;
}

/* ---- lightbox modifiziert für werkgruppe I -----------------------------------*/
.lightbox-galerie-werk-I img {
   margin-right: 14px;
}

/* ---- lightbox modifiziert für werkgruppe II -----------------------------------*/
.lightbox-galerie-werk-II img {
   width: auto;
   height: 9.375em;
   margin-top: 38px;
   margin-right: 4px;
}

/* ---- lightbox modifiziert für werkgruppe III -----------------------------------*/
.lightbox-galerie-werk-III {
   width: 80%;
}

.lightbox-galerie-werk-III img {
   width: auto;
   height: 9.375em;
   margin-top: 30px;
   margin-right: 18px;
}

.lightbox-galerie-werk-III li {
   margin: 4px 20px 0 5px;
}

/* ---- lightbox modifiziert für werkgruppe IV -----------------------------------*/
.lightbox-galerie-werk-IV {
   list-style: none;
   margin: 0;
   background-color: #F9F9F9;
   border: none;
}

.lightbox-galerie-werk-IV {
   overflow: visible;
}

.lightbox-galerie-werk-IV li {
   float: left;
   margin: 4px 6px 0 5px;
   padding: 0;
}

.lightbox-galerie-werk-IV img {
   width: auto;
   height: 9.375em;
   margin-top: 20px;
   margin-right: 4px;
}

@media only screen and (max-width: 40em) {
   .lightbox-galerie-mod img, .lightbox-galerie-werk-II img, .lightbox-galerie-werk-III img, .lightbox-galerie-werk-IV img {
      max-height: 5.0em;
   }
}

@media only screen and (max-width: 30em) {
   .lightbox-galerie-mod img, .lightbox-galerie-werk-II img, .lightbox-galerie-werk-III img, .lightbox-galerie-werk-IV img {
      max-height: 4.0em;
   }
}

#imagelightbox {
   box-shadow: 0 0 0em rgba(0, 0, 0, 0.1);
   cursor: pointer;
   position: fixed;
   z-index: 10000;
   border: 1px solid #E1E1E1;
}

#imagelightbox-loading {
   background-color: rgba(30, 30, 30, 0.5);
   box-shadow: 0 0 2.5em rgba(30, 30, 30, 0.75);
   height: 2.5em;
   left: 50%;
   margin: -1.25em 0 0 -1.25em;
   padding: 0.625em;
   position: fixed;
   top: 50%;
   width: 2.5em;
   z-index: 1;
}

#imagelightbox-overlay {
   background-color: rgba(255, 255, 255, 1.0);
   bottom: 0;
   left: 0;
   position: fixed;
   right: 0;
   top: 0;
   z-index: 9998;
}

#imagelightbox-caption {
   font-size: 0.9em;
   background-color: #fff;
   bottom: 0;
   color: #000;
   left: 0;
   padding: 0.625em;
   position: fixed;
   right: 0;
   text-align: center;
   z-index: 10001;
}

#imagelightbox-close {
   background-color: #ccc;
   border: 1px solid #ccc;
   border-radius: 50%;
   height: 1.8em;
   position: fixed;
   right: 2.5em;
   text-align: left;
   top: 2.5em;
   transition: color 0.3s ease 0s;
   width: 1.8em;
   z-index: 10002;
}

#imagelightbox-close:hover, #imagelightbox-close:focus {
   background-color: #999;
   border: 1px solid #999;
}

.imagelightbox-arrow {
   background-color: #ccc;
   border: 4px solid #ccc;
   border-radius: 0.2em;
   display: none;
   height: 2.3em;
   margin-top: -1.0em;
   position: fixed;
   top: 50%;
   vertical-align: middle;
   width: 1.6em;
   z-index: 10001;
}

.imagelightbox-arrow:hover, .imagelightbox-arrow:focus {
   background-color: #999;
   border: 4px solid #999;
   border-radius: 0.2em;
}

/* ----------------------------------------------------------------------- */
/* --- aus der atmosphere.css -------------------------------------------- */
.mainContent {
   padding: 0.8em 20px;
   width: 85%;
}

h1, h2 {
   font-family: Arial, Helvetica, sans-serif;
   font-size: 1.625em; /* 26px */
   line-height: 1.5em;   /* 54px */
}

.ausstellungen-content {
   padding: 0 20px !important;
}

.ausstellungen-content h1 {
   height: 1.5em;
   overflow: visible;
}

.ausstellungen-list {
   margin-top: 20px;
   display: grid;
   grid-template-columns: 100px minmax(0, 550px);
   column-gap: 0;
   row-gap: 0;
}

.ausstellungen-list dt,
.ausstellungen-list dd {
   margin: 0;
   padding: 0;
}

.ausstellungen-list dt p,
.ausstellungen-list dd p {
   margin-top: 0;
   margin-bottom: 0.5em;
}

.bio-list {
   margin-top: 20px;
   display: grid;
   grid-template-columns: 97px minmax(0, 650px);
   column-gap: 0;
   row-gap: 0;
}

.bio-link {
   margin-top: -0.5em;
}

.bio-list dt,
.bio-list dd {
   margin: 0;
   padding: 0;
}

.bio-list dt p,
.bio-list dd p {
   margin-top: 0;
   margin-bottom: 0.5em;
}

.ausstellungs-subnav {
   margin-bottom: 1em;
}

.btn {
   display: inline-block;
   font-family: Verdana, Helvetica, Arial;
   background-color: #000;
   padding: 3px 8px;
   font-size: 0.8em;
   margin-bottom: 5px;
   margin-right: 0;
}

.btn-active {
   font-weight: bold !important;
}

a.btn {
   text-decoration: none !important;
   border-bottom: 1px solid #464646;
   background-color: #fff;
   color: #000;
}

a:hover.btn {
   border-bottom: 1px solid #464646;
   background-color: #000;
   color: #fff;
}

/* --- eigene Importregeln ---------------------------------------------- */
@media only screen and (max-width: 64em) {
   nav ul {
      text-align: left;
      color: #00FF33;
      max-width: 18em;
      border-bottom: #66CC33;
   }

   nav li a:link, nav li a:visited {
      border-bottom: 1px solid #464646;
      min-width: 18em;
   }

   .dist {
      margin-top: 1px;
   }
}

@media only screen and (max-width: 40em) {
   .mainContent {
      padding: 0.2em 20px;
   }

   .ausstellungen-list {
      grid-template-columns: minmax(4.5em, 25%) minmax(0, 1fr);
   }

   .bio-list {
      grid-template-columns: minmax(4.5em, 25%) minmax(0, 1fr);
   }
}
