/* CSS Dealing with auto-adjusting height for main content in the 2 Columns */
#wrapper { 
	/* 
		Not using the auto-adjusting columns but kept as may use in the
		'availability' section, so left the 'id' constructs.
		
		N.B. 'layout_sticky_footer.css' also makes use of this class.
		Do not add any margin or height information here else it will
		obstruct the effectiveness of the sticky footer code
	*/
	/* 
		Added width to prevent the main content wrapping when user scales
		their browser window to a shorter width than the web site.
		Have added it here as opposed to within 'layout_sticky_footer.css'
		as this value remains due to inheritance and so doesn't cloud
		the original sticky footer code with mine
	*/
	width: 1000px;
}

#c1 {
	margin: 0px;
	padding: 0px;
/*//	width: 200px;*/
	width: 188px;
	float: left;
	color: #56544d;
	/* Remove on Homepages */
	background-color: #eee9df;
	/*border-style: solid;*/
	/* New to remove auto-adjust */
	height: 650px;
}
#block1 {
	/* 
		Do not use 'margin' to position
		as interferes with 'sticky footers'
		have to use positioning
		Previous code:
		margin-top: 47px;
		padding: 0px;
	*/
	position: absolute;
	top: 89px;
	margin: 0;
	width: 188px;
	background-color: #eee9df;
	height: 650px;
	/*border-right-style: solid;
	border-color: #00ff17;*/
	/*border-style: solid;*/
}
#c2 {
	margin: 0px;
	padding: 0px;
	width: 812px;
	float: left;
	color: #56544d;
	/* Remove on Homepages */
	background-color: #eee9df;
	height: 650px;
}
#block2 {
	/* 
		Do not use 'margin' to position
		as interferes with 'sticky footers'
		have to use positioning
		Previous code:
		margin-top: 47px;
		padding: 0px;
	*/
	position: absolute;
	top: 89px;
	margin: 0;
	/* 
		Slightly smaller than its container (c2) so that there is
		a 7px negative space on the right edge
	*/
	width: 805px;
	height: 650px;
	background-color: #eee9df;
	background-color: #fff;
	/*border-right-style: solid;
	border-color: #00ff17;*/
}

p {
	margin: 0px;
	padding: 0px;
}
