html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	border: 0;
	padding: 0;
}
body {
	background-color: #fff;
	overflow: hidden;	/* Scrollbalken im Fenster unterbinden */
}
#mitte {
	position: absolute;
	top: 150px;		/* Abstand zum oberen Fensterrand */
	left: 261px;		/* Abstand zum linken Fensterrand */
	bottom: 0px;		/* Abstand zum unteren Fensterrand */
	right: 0px;		/* Abstand zum rechten Fensterrand */
	overflow: auto;		/* Scrollbalken, falls notwendig */
        font-family: Verdana, Arial, Helvetica, sans-serif;
      	font-size: 11px;
}
* html #mitte {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top-width: 150px;	/* = Kopfzeilenhöhe */
	border-left-width: 261px;	/* = Spaltenbreite links */
	border-bottom-width: 0px;	/* = Fußzeilenhöhe */
	border-right-width: 0px;	/* = Spaltenbreite rechts */
	border-style: solid;
}
#mitte .inhaltDiv {
	margin: 10px;		/* Abstand des Inhalts zum Blockrand */
}
#oben {
	position: absolute;
	top: 0;			/* Abstand zum oberen Fensterrand */
	left: 0;		/* Abstand zum linken Fensterrand */
	right: 0;		/* Abstand zum rechten Fensterrand */
	height: 151px;		/* Blockhöhe */
	padding: 0;		/* Interpretation Boxmodell! */
	background-color: #0066FF;
	overflow: hidden;	/* Scrollbalken unterbinden */
	z-index: 4;		/* höchste z-Ebene! */
}
* html #oben {
	width: 100%;
	height: 151px;
}
#oben .inhaltDiv {
	margin: 0px;		/* Abstand des Inhalts zum Blockrand */
}
#links {
	position: absolute;
	top: 151px;		/* Abstand zum oberen Fensterrand */
	left: 0;		/* Abstand zum linken Fensterrand */
	bottom: 0;		/* Abstand zum unteren Fensterrand */
	width: 261px;		/* Blockbreite */
	padding: 0;
	overflow: auto;		/* Scrollbalken, falls notwendig */
	z-index: 3;
	background-color: #FFFFFF;
	background-image: url(_img/leftbar_bg4ext.jpg);
	background-repeat: repeat-y;
}
* html #links {
	top: 0;
	width: 261px;
	height: 100%;
	border-top-width: 151px;	/* = Kopfzeilenhöhe */
	border-left-width: 0;
	border-bottom-width: 0px;
	border-right-width: 0;
	border-style: solid;
}
#links .inhaltDiv {
	margin: 0px;		/* Abstand des Inhalts zum Blockrand */
}
#unten {
	position: absolute;
	left: 200px;		/* Abstand zum linken Fensterrand */
	bottom: 0;		/* Abstand zum unteren Fensterrand */
	right: 0;		/* Abstand zum rechten Fensterrand */
	height: 50px;		/* Blockhöhe */
	padding: 0;		/* Interpretation Boxmodell! */
	background-color: #fcf;
	overflow: hidden;	/* Scrollbalken unterbinden */
	z-index: 2;
}
* html #unten {
	left: 0;
	width: 100%;
	height: 50px;
	border-top-width: 0;
	border-left-width: 200px;	/* = Spaltenbreite links */
	border-bottom-width: 0;
	border-right-width: 0;
	border-style: solid;
}
#unten .inhaltDiv {
	margin: 10px;		/* Abstand des Inhalts zum Blockrand */
}
#rechts {
	position: absolute;
	top: 150px;		/* Abstand zum oberen Fensterrand */
	bottom: 50px;		/* Abstand zum unteren Fensterrand */
	right: 0;		/* Abstand zum rechten Fensterrand */
	width: 100px;		/* Blockbreite */
	padding: 0;		/* Interpretation Boxmodell! */
	background-color: #ccf;
	overflow: hidden;	/* Scrollbalken unterbinden */
	z-index: 1;
}
* html #rechts {
	top: 0;
	width: 100px;
	height: 100%;
	border-top-width: 150px;	/* = Kopfzeilenhöhe */
	border-left-width: 0;
	border-bottom-width: 50px;	/* = Fußzeilenhöhe */
	border-right-width: 0;
	border-style: solid;
}
#rechts .inhaltDiv {
	margin: 10px;		/* Abstand des Inhalts zum Blockrand */
}
