/* Zweck:                                      */
/* Die Formatierung mit Requirements.          */

@media only screen
{
  #sidebarright
  {
    width: 17em;
  }
  #contentblock
  {
    right: 17em;  /* Die Breite der sidebarright */
  }
  #downloadbar
  {
    right: 19em;
  }
}

/* Wird die Breite kleiner als 1024px: */
@media only screen and (max-width: 1024px)
{
  #sidebarright
  {
    width: 11em;
  }
  #contentblock
  {
    right: 11em;  /* Die Breite der sidebarright */
  }
  #downloadbar
  {
    right: 13em;
  }
  #requirementblock
  {
    font-size: 76%;
  }
}

#sidebarright 
{
  /* border: 1px solid red; */

  position: fixed;
  right: 0;
  bottom: 1.7em;  /* Die Höhe des footer */

  overflow-y: auto;
}

#requirementblock
{
  padding: 0.8em;
  margin: .6em;
}
