#block_1
	{
	float: left;
	width: 500px;
	margin-left: 150px;
	overflow-x:hidden;
	}
* html #block_1
	{
	display: inline;
	}
#block_2
	{
	float: left;
	width: 150px;
	margin-left: -650px;
	overflow-x:hidden;
	}
#block_3
	{
	float: left;
	width: 196px;
	padding-right:4px;
	overflow-x:hidden;
	}

#wrapper
	{
	width: 850px;
	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 */
#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;
	}
/* easy clearing */
#wrapper:after
	{
	content: '.'; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	}
#wrapper
	{
	display: inline-block;
	}
/*\*/
#wrapper
	{
	display: block;
	}
/* end easy clearing */
#footer
	{
	clear: both;
	}
#header, #footer
	{
	
	}
/* Safari needs this - otherwise the ghost overflow, though painted 
correctly obscures links and form elements that by rights should be above it.
An unintended side-effect is that it cause such elements to vanish in IE 5.01
and 5.5, hence the child selector hack */
* > #footer, * > form, * > #notes, * > .output
	{
	position: relative;
	z-index: 1000;
	}
	

/* use this class for good wrapping of nested div's in the parent div */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	line-height:0em;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block; /* this is valid; validator needs to catch up with it yet! */
    overflow:hidden;
}
/* end clear fix */