
	body, html{
		font: .95em   Georgia, sans-serif;
		background: #FFD0FF;
	}
	
	#page{
		position: absolute;
		width: 1024px;
		left: 50%;
		margin-left: -512px;
		background: #FFF;
		margin-bottom: 2em;
	}
	
	#infoboxBottom{
		background: #FFF url(infobox_bottom.png) no-repeat;
		position:absolute;
		width:168px;
		height: 94px;
		right:0px;
	}
	#title{
		width: 92px;
		float: left;
	}
	#content{
		float: left;
		width: 760px;
		border-left: 1px solid #EA12AF;
	}
	
	#content H2{
		padding-left: 1em;
		font-size: 1.5em;
		margin-top: 2em;
	}
	#content P{
		padding-left: 3em;
	}
	#groupH	{
		overflow: hidden; /* This hides the excess padding in non-IE browsers */
	}
	/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
	necessary height (unless fixed, this problem becomes even more acute 
	weirdness as the method is enhanced */
	#groupH{
		/* 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;
	}

	/* easy clearing */
	#groupH:after	{
		content: '[DO NOT LEAVE IT IS NOT REAL]'; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	#groupH	{
		display: inline-block;
	}
	/*\*/
	#groupH
	{
		display: block;
	}
	/* end easy clearing */