/* http://fu2k.org/alex/css/onetruelayout/example/interactive?order=2-1-3-4&width=160-320-160-160&unit=px&equal_height=1&snap=1&subtract=1&longest=2&time=1245703433829 */


/* sizes
left	240px
center	430px ->670px
right	220px ->890px
*/
#block_1
	{
	float: left;
	/* EDIT-> Width col center<-EDIT */
	width: 430px;
	/* EDIT-> Width col left<-EDIT */
	margin-left: 240px;
	}
* html #block_1
	{
	display: inline;
	}
#block_2
	{
	float: left;
	/* EDIT-> Width col left<-EDIT */
	width: 240px;
	/* EDIT-> Width col left + Width col center<-EDIT */
	margin-left: -670px;
	}
#block_3
	{
	float: left;
	/* EDIT-> Width col right<-EDIT */
	width: 220px;
	}
/* Start Mac IE5 filter \*/
#block_1, #block_2, #block_3
	{
	padding-bottom: 32767px !important;
	margin-bottom: -32767px !important; 
	}
/* End Mac IE5 filter */
/* IE Win can be a bit out - you might need to adjust  
bottom value by -1px or as required */
.verticalalign
	{
	position: absolute;
	bottom: 0;
	}
#block_1 .verticalalign
	{
	/* EDIT-> Width col center<-EDIT */
	width: 430px;
	}
#block_2 .verticalalign
	{
	/* EDIT-> Width col left<-EDIT */
	width: 240px;
	}
#block_3 .verticalalign
	{
	/* EDIT-> Width col right<-EDIT */
	width: 220px;
	}
/* hack for Opera 7+ */
@media all and (min-width: 0px){
.verticalalign
	{
	width: 100% !important;
	}
/* But Opera 9 does it right, so CSS3 hax to the max */
div[id^="wrapper"] #block_1 .verticalalign
	{
	/* EDIT-> Width col center<-EDIT */
	width: 430px !important;
	}
div[id^="wrapper"] #block_2 .verticalalign
	{
	/* EDIT-> Width col left<-EDIT */
	width: 240px !important;
	}
div[id^="wrapper"] #block_3 .verticalalign
	{
	/* EDIT-> Width col right<-EDIT */
	width: 220px !important;
	}
}
/* hack for IEs of all persuasions before IE7 */
* html .verticalalign
	{
	width: 100% !important;
	}
.verticalalign p
	{
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 0;
	background: #996666;
	}
#wrapper
	{
	/* EDIT-> Width col left + Width col center + Width col right<-EDIT */
	width: 890px;
	position: relative;
	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: '[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 */
#footer
	{
	clear: both;
	}
#header, #footer
	{
	/* EDIT-> Width col left + Width col center + Width col right<-EDIT */
	width: 890px;
	}
/* 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;
	}

