  html, body {
  	width: 100%;
  	height: 100%;
  	margin: 0;
  	border: 0;
  	padding: 0;
  	overflow: hidden; 		 	/* Scrollbalken im Fenster unterbinden */
  }
  body {
  	font-size: 11pt;
  	color: #191970;
  	background-image: url(../bilder/1005.jpg); /* color für mitte, überschrieben links mit image für NS4.7 */
  }
  /* Die Überschrift */
  #oben {
   position: absolute;     /* fixed: fehlerhaft bei IE */
   top: 0;                 /* Abstand zum oberen Fensterrand */
   left: 140px;            /* Abstand zum linken Fensterrand, nötig für NS 4.7 */
   right: 0;               /* Abstand zum rechten Fensterrand */
   height: 30px            /* Höhe des oberen Teils */
   padding: 0;             /* Interpretation Boxmodell! */
 	background-image: url(../bilder/d5d2df-1x1.png);
   overflow: hidden;       /* Scrollbalken, keiner */
   z-index: 2;
  }
  html #oben {					/* nötig für IE */
  	top: 0;
  	left: 140;
  	height: 32px;
  	width: expression((document.body.clientWidth - 141) + "px");
 		/* statt left-Wert = 200, 0: damit alle voll ausfüllen und Scrollbalken sichtbar */
  	border-top-width: 0px;		/* Rand = Kopfzeilenhöhe (#oben)*/
  	border-left-width: 1px;	/* Rand = Spaltenbreite (#links) */
  	border-bottom-width: 0px;	/* Rand = Fußzeilenhöhe (#unten)*/
  	border-right-width: 0px;	/* Rand = Spaltenbreite (#rechts) */
  	border-style: solid;
   border-color:#191970;
  }
  /* Der Inhaltsabschnitt */
  #mitte {
   position: absolute;			/* fixed: fehlerhaft bei IE */
  	top: 32px;						/* Abstand zum oberen Fensterrand */
  	left: 140px;					/* Abstand zum linken Fensterrand, nötig für NS 4.7 */
  	bottom: 0;					/* Abstand zum unteren Fensterrand */
  	right: 0;					/* Abstand zum rechten Fensterrand */
  	padding: 0;					/* Interpretation Boxmodell! */
  	overflow: auto;				/* Scrollbalken, falls notwendig */
   z-index: 4;
  }
  html #mitte {					/* nötig für IE */
  	top: 32px;
  	left: 140px;
  	width: expression((document.body.clientWidth - 141) + "px");
  	height: expression((document.body.clientHeight - 33) + "px");
 		/* statt left-Wert = 200, 0: damit alle voll ausfüllen und Scrollbalken sichtbar */
  	border-top-width: 1px;		/* Rand = Kopfzeilenhöhe (#oben)*/
  	border-left-width: 1px;		/* Rand = Spaltenbreite (#links) */
  	border-bottom-width: 0px;	/* Rand = Fußzeilenhöhe (#unten)*/
  	border-right-width: 0px;	/* Rand = Spaltenbreite (#rechts) */
  	border-style: solid;
   border-color: #191970;
  }
  #mitte .inhaltDiv {
  	margin: 20px;				/* Abstand des Inhalts zum Blockrand */
  }
  /* Der Navigationsabschnitt */
  #links {
  	position: fixed;
  	top: 0;						/* Abstand zum oberen Fensterrand */
  	left: 0;						/* Abstand zum linken Fensterrand */
  	bottom: 0;					/* Abstand zum unteren Fensterrand */
  	width: 140px;				/* Blockbreite */
  	padding: 0;					/* Interpretation Boxmodell! */
 	background-image: url(../bilder/d5d2df-1x1.png);
 	overflow: auto;			/* Scrollbalken, falls notwendig */
   z-index: 1;					/* Ebene für IE nötig */
  }
  html #links {					/* nötig für IE */
  	top: 0;
  	width: 140px;				/* Breite */
  	height: 100%;				/* Höhe */
  	border: 0px;		/* Rand = Kopfzeilenhöhe (#oben)*/
  }
  #links .inhaltDiv {
  	margin: 10px;				/* Abstand des Inhalts zum Blockrand */
  }