/* #########################################################################  */
/* Stylesheet für die Bildschirmansicht                                       */
/* #########################################################################  */
@media screen {
    body {
      margin: 0px;
      border: 0px;
      padding: 0px;
      height: 100%;
      max-height: 100%;
      overflow: hidden;
     }
    
    #header {
      position:absolute;
      top:0px;
      left:0px;
      width:100%;
      overflow:hidden;
    }
    
    #footer {
      position:absolute;
      bottom:0;
      left:0;
      width:100%;
      overflow:hidden;
    
    }
    
    #contents {
      position:fixed;
      left:0;
      right:0;
      
      overflow:auto;
    }
    
    #contentArea
    {
        overflow:visible;
    }
    
}


/* #########################################################################  */
/* Stylesheet für den Druck                                                   */
/* #########################################################################  */
@media print
{

    #header
    {
      display : none;
    }
    
    #footer
    {
      display: none;
    
    }
    
    body
    {
        
    }
}