/* CSS Document *//* -------------------------------------------------------------- *//* any order 2 columns 3 rows */#page{  width:760px;  margin:0 auto;  border:0px solid red;}#rightside{  float:left;  width:340px;  margin-left:420px;  border: 0px solid red;}* html #rightside{	display:inline;}#leftside{	float:left;	height:500px;	width:414px;  margin-left: -760px;	background: url('images/bg_opaque.jpg') no-repeat fixed top left;	border: 0px solid blue;}#middle{  float:left;  width:6px;  border: 0 px solid green;}/* Start Mac IE5 filter \*/#rightside, #leftside, #middle{	padding-bottom:32767px !important;	margin-bottom:-32767px !important;}@media all and (min-width:0px) {#rightside, #leftside, #leftside{	padding-bottom:0 !important;	margin-bottom:0 !important;}#rightside:before, #leftside:before, #middle:before{	content:'[DO NOT LEAVE IT IS NOT REAL]';	display:block;	background:inherit;	padding-top:32767px !important;	margin-bottom:-32767px !important;	height:0;}  }/* End Mac IE5 filter */#main{	width:100%;	margin-top:100px;	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 */#main{/* 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 */#main:after{	content:'[DO NOT LEAVE IT IS NOT REAL]';	display:block;	height:0;	clear:both;	visibility:hidden;}#main{}/*\*/#main{	display:block;}/* end easy clearing */#header, #footer{	width:760px;}#header{ height:100px; position:absolute; top:0px;}#footer{  height:100px;  border:0px solid cyan;}/* 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;}