body {
  font-family: 'Droid Serif', serif;
  background-image:url('dark_leather.png'); /* Background pattern from subtlepatterns.com */
  background-color:white;
  margin:0px;
}
#wrapper {
  margin:0px auto;
  min-width:800px;
  max-width:1300px;
  background-color:transparent;
}
#container {
  color:#eee;
  margin: 0px 30px;
  border-top: none;
  border-bottom-left-radius:20px;
  border-bottom-right-radius:20px;
}
#filmstrip {
  height:auto;
  background-color:black;
  text-align:center;
}
#filmstrip .holes {
  height:20px;
  background:url("hole.png") repeat-x;
}
#filmstrip img {
  width:18.6%;
  margin-left:0.6%;
  border:none;
}
#content {
  padding:10px;
  min-height:300px;
}
#content aside {
  border:1px solid silver;
  border-radius:5px;
  box-shadow:2px 2px #888;
  float:right;
  margin-left:5px;
  margin-bottom:5px;
  padding:5px;
  min-height:150px;
  min-width:150px;
}
#content aside.left {
  float:left;
  margin-left:0px;
  margin-right:5px;
}
.small {
  font-size:.7em;
  color:#ccc;
}
footer{
  font-size:.7em;
  color:#ccc;
  padding:5px;
  text-align:center;
}
footer a{
  color:inherit;
  text-decoration:none;
}
a#backtostart{
  text-decoration:none;
  display:block;
  margin-left: 1em;
  margin-bottom: 2em;
}
h1{
  font-variant:small-caps;
  margin:.67em 0 0 0;
}
#lang {
  float:right;
}
#lang img {
  height:1.5em;
  border:1px solid #aaa;
  border-radius:3px;
}
#filmstrip a{
  color: white;
  position:relative;
  text-decoration:none;
}
#filmstrip a .caption {
  position:absolute !important;
  top:1em;
  height:0;
  overflow:hidden;
  left:3.06%;
  width:96.94%;
  text-align:center;
  background-color:black;
  background-color:rgba(0,0,0,0.7);
  border-radius: 20% 20% 0em 0em / 100% 100% 0em 0em;
  transition: all .4s ease-out, top .4s ease-out;
}
#filmstrip a:hover .caption {
  top:-1em;
  height:2em;
  padding-top:.3em;
  padding-bottom:-.3em;
}
#filmstrip a .caption2 {
  position:absolute !important;
  top:1em;
  height:0em;
  overflow:hidden;
  left:3.06%;
  width:96.94%;
  text-align:center;
  background-color:white;
  background-color:rgba(255,255,255,0.7);
  border-radius: 20% 20% 0em 0em / 100% 100% 0em 0em;
  transition: height .4s ease-out, top .4s ease-out;
}
#filmstrip a:hover .caption2 {
  top:-1em;
  height:2em;
}
a {
  color:inherit;
}

/********* Galerie **********/
/*#piccontent {
  -webkit-column-count: 3;
  -webkit-column-gap: 8px;
  -moz-column-count: 3;
  -moz-column-gap: 8px;
  column-count: 3;
  column-gap: 8px;
  -webkit-column-break-inside:avoid;
}*/
#piccontent {
  position:relative;
}
#piccontent::after{
  clear:both;
}
.column {
  position:absolute;
  width:32.5%;
  width:calc((100% - 16px)/3);
  top:0;
  left:0;
}
.column:nth-child(2) {
  left:33.75%;
  left:calc((100% - 16px)/3 + 8px);
}
.column:nth-child(3) {
  left:67.5%;
  left:calc((100% - 16px)*2/3 + 16px);
}
.img {
  margin-bottom:8px;
/*   -webkit-column-break-after:avoid; */
}
.img .border {
  position:relative;
  background-color:black;
  cursor:pointer;
  overflow:hidden;
}
.img img {
  position:relative;
  width:100%;
  opacity:0.8;
  left:0;
/*   top:0; */
  transition: all 0.75s;
}
.img:hover img {
  width:110%;
  left:-5%;
/*   top:-5%; */
  opacity:1;
}
/*.columnbreak {
  -webkit-column-break-after: always;
  page-break-after: always;
  break-after: column;
}*/
/*Slideshow*/
#slideshow {
  position:fixed;
  top:0px;
  left:0px;
  height:100%;
  width:100%;
  background-color:black;
  background-color:rgba(0,0,0,0.85);
  display:none;
}
.bildcontainer {
  position:absolute;
  height:90%;
  width:100%;
  top:5%;
}
#slideshow .grossesbild {
  height:100%;
  margin:0% auto;
  display:block;
  vertical-align:middle;
  transition: opacity 0.8s ease-in;
}
.visible {
  opacity:1;
}
.hidden {
  opacity:0;
}
#caption{
  position:absolute;
  bottom:5%;
  width:100%;
  text-align:center;
  height:1.5em;
  line-height:1.5em;
  overflow:hidden;
  font-size:1.3em;
  transition:height .5s;
}
#caption:hover, #caption.alwayson{
  height:3.3em;
}
#caption span{
  background:rgba(0,0,0,0);
  color:white;
  border-radius:5px 5px 0 0;
  padding:2px 10px 10px 10px;
  transition:background .5s;
}
#caption:hover span, #caption.alwayson span{
  background:rgba(0,0,0,0.8);
  display:inline;
}
#caption img{
  height:1.4em;
  z-index:20;
  opacity:0.5;
}
#caption:hover img, #caption.alwayson img{
  opacity:1;
}
/*Slideshow buttons*/
#back, #forward {
  height:80px;
  width:80px;
  position:absolute;
  top:30vh;
  background:url("arrow.png") no-repeat;
  background-size:contain;
  opacity:0.5;
  transition: opacity 0.5s;
}
#back:hover, #forward:hover {
  opacity:1;
}
#back { 
  left:10px;
}
#forward {
  right:10px;
  -webkit-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -o-transform:rotate(180deg);
  -ms-transform:rotate(180deg);
  transform:rotate(180deg);
}
#close {
  height:30px;
  width:30px;
  position:absolute;
  right:10px;
  top:10px;
  background:url("close2.png") no-repeat;
  opacity:0.5;
  transition: opacity 0.5s;
}
#close:hover {
  opacity:1;
}
#hiddenloader {
  position:absolute;
  left:-10000px;
}

/********* Homepanel **********/
#homepanel{
  position: relative;
  width: 100%;
}
#homepanel:before{
  content: "";
  display: block;
  padding-top:  112.5%;
  background-color:black;
}
#homepanel a{
  position:absolute;
  border:4px solid black;
  box-sizing:border-box;
  background-size:100%;
  background-position:center;
  background-repeat:no-repeat;
  transition:all 0.4s;
  color:white;
  opacity:0.8;
  font-weight:bold;
  font-size:1.3em;
  text-shadow: 2px 2px black;
  text-align:center;
  padding-top:11.11%;
  text-decoration:none;
  overflow:hidden;
}
#homepanel a:hover{
  color:transparent;
  text-shadow: 2px 2px transparent;
  background-size:110%;
  opacity:1;
  padding-top:0;
}
#homepanel .lowercaption{
  padding-top:22.22%;
}
#homepanel .lowercaption:hover{
  padding-top:11.11%;
}

#portraitnote {
  display:none;
}

/*** Panoramen ***/
.__seadragon{
  border:1px solid white !important;
}
#panoramen a{
  margin-bottom:.5em;
  text-decoration:none;
}
#panoramen img{
  display:block;
  width:100%;
  position:relative;
  opacity:0.85;
  transition:all 0.5s;
  border:none;
}
#panoramen a:hover img{
  opacity:1;
}
#panoramen span{
  position:relative;
  bottom:1.3em;
  left:0; 
  background-color:rgba(0,0,0,0.5); 
  border-radius:0 10px 0 0; 
  padding:5px;
}

/*** kleine Bildschirme und Porträtmodus ***/
@media (max-width:800px){
  #wrapper {   
    width:100%;
    min-width:auto;
  }
  #container {
    margin:0;
  }
  #back, #forward {
    height:10%;
    width:10%;
  }
  #content aside.familienfoto {
    float:none;
    width:80% !important;
    margin:0 auto;
  }
}
@media (max-width:600px) {
  #homepanel {
    font-size:3vw;
  }
}
@media (max-width:450px) {
  #filmstrip .holes {
    height:14px;
    background-size:contain;
  }
  #filmstrip img {
    margin-left:0.3%;
  }
}
@media (max-aspect-ratio: 4/3) {
  #slideshow .grossesbild {
    height:auto;
    max-height:100%;
    max-width:100%;
  }
}
@media (orientation: portrait) {
  #portraitnote {
    display:initial;
  }
}