/* Layout */

#wrapper
	{
/* Normally a Holly-style hack height: 1% would suffice but that causes IE 5.01 to completely collapse the wrapper - instead we float it */
	float: left;
/* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes(I saw it happen many moons ago) makes the width of wrapper too small the float: none with the comment is ignored by 5.01, 5.5 and above see it and carry on about their business It's probably fine to just remove it, but it's left here just in case that many moons ago problem rears its head again */
	float/**/: none;
	width:100%;
	margin: 0 auto;
	}
/* easy clearing */
#wrapper:after
	{
	content: '[DO NOT LEAVE IT IS NOT REAL]';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	}
#wrapper
	{
	display: inline-block;
	}
/*\*/
#wrapper
	{
	display: block;
	}
/* end easy clearing */


#spalte_links
	{
	float: left;
	width: 15%;
	padding-left:1em;
	margin: 0 auto;
	}
#spalte_mitte
	{
	float: left;
	width: 65%;
	margin: 0em 0em 1em 1em ;
	}
#spalte_rechts
	{
	float: right;
	width: 15%;
	padding-right:1em;
	margin: 0 auto;
	}

