html {
/* durchgehend 100% Höhe für alle Rahmenelemente, 
um Gesamthöhe des Menüs sicher zu stellen --> IE 5 Mac */
   height: 100%; 
}
body {
	font: normal 101% arial,helvetica,sans-serif;
	margin: 0px;
	padding: 0px;
   /* siehe oben */
   height: 100%;
}

#rahmen {
   /* siehe oben */
   height: 100%;/* auch notwendig, um Überdecken der Scrollbars in IE 6 zu verhindern (???) */
}

#inhalt {
	padding: 55px 20px 20px 20px;
}

#artikel {
	padding: 55px 20px 20px 20px;
}

#LeftBar {
	position: fixed; 	/* Not working in IE */
	float: left; 			/* Workaround for IE, correctly overridden by "position: fixed" elsewhere */
	width: 9em;
	height: 100%; 		/* Partial workaround for IE, which has an ugly bug causing right side main content to unalign vertically */
	margin-top: 1em;
}

#ArticleRight {
	margin-left: 9em;
	margin-right: 1em;
	padding: 55px 20px 20px 20px;
}

#kopf {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 3;
	width: 100%;
	height: 55px;
}
