/* "Weiter"-Button (an) */
#blue_da {
   width: 250px;
   height: 75px;
   background: #81F7F3;
   -moz-border-radius: 50px;
   -webkit-border-radius: 50px;
   border-radius: 50px;
   border-color: #81F7F3;
   border-width: 1px;
   border-style: solid;
   box-shadow: 5px 5px 15px silver;
   font-size:40;
   font-family: fibel_nordregular;
}


/* Arbeitskonsole */
#abgerundeteecken {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 180px;
  height: 45px;
  
  text-decoration: none;
  font-size: 28px; 

  color: white;
  background-color: #01A9DB;
  background: #01A9DB;
  border: 1px solid #01A9DB;
  border-radius: 20px;
}

#posbox
{ 
  position: absolute;
}

#parent
{ position: relative;
  display: flex;
  justify-content: center;
}
 

#text
{ display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 900px;
  height: 180px;
  position: absolute;

  color:white;
  background-color: black;
  border: 15px solid white;
  border-radius: 60px;
}


#text_short
{ display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 750px;
  height: 180px;
  position: absolute;

  color:white;
  background-color: black;
  border: 15px solid white;
  border-radius: 60px;
}


#leer
{ display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 900px;
  height: 60px;
  position: absolute; 
}

#weisserkasten {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 600px;
  height: 120px;
  position: absolute;
  margin-left: 100px;
  margin-top: 145px;
  background-color: white;
  border: 1px solid white;
  border-radius: 60px;
}


#weisserkasten_klein {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  width: 500px;
  height: 120px;
  position: absolute;
  margin-left: 400px;
  margin-top: 250px;
  background-color: #efefef;
  border: 1px solid #efefef;
  border-radius: 60px;
  box-shadow: 8px 8px 20px silver;
}



/* if portrait mode is detected, rotate the entire site 90 degrees to hint rotating to landscape */
@media (orientation: portrait) {
  body {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}


/* Navigation */
<style type="text/css">
    <!--
    ul#navigation {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }

    ul#navigation li {
        padding: 10px;
        margin: 0px;
        display: inline;
    }

    ul#navigation li a:link {
        border: 1px solid #000;
        background-color: lightblue;
        padding: 5px 10px 5px 10px;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        text-decoration: none;
        font-weight: bold;
        color: #FFF;
		box-shadow: 0 0 20px #eee;
		border-radius: 10px;
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
		transition: all 0.3s cubic-bezier(.25,.8,.25,1);
		cursor: pointer;
		display: inline-block;
		border-radius: 25px;

    }

    ul#navigation li a:hover {
        border: 1px solid #000;
        background-color: #333333;
        color: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    }
    -->
 </style>



@media print {
  nav, footer { display: none; }
  
  body { text-indent:60px;  }
  
  #logos { display: none; } 
}


