/*************************************************************************************

	TWO COLUMN LIQUID LAYOUT - Left Column
	
	Copyright: Tuross Technologies Australia 2008.
	
/*************************************************************************************/

/*************************************************************************************
	NOTE:
	To remove the need for overflow:hidden in #container, you need to follow the
	## NOTES below
/*************************************************************************************/


	

	#container 
	{
		width: 976px;
		margin: 0px auto;
		position: relative;
/*		overflow: hidden;					/* ##NOTES - remove */
	}
	
	#container .mid-col
	{
		position: relative;
		float: right;
		width: 670px;						/* TotalWidth - LeftCol */
		height: auto;
	}
	
	#container .left-col
	{
		position: relative;
		float: left;
		width: 250px;						/* LeftCol */
		height: auto;
	}

	.left {
		float: left;
	}
	
	.align-left {
		text-align: left;
	}
	
	.clear-left {
		clear: left;
	}
	
	.right {
		float: right;
	}
	
	.align-center 
	{
		text-align:center;
	}
	
	.align-right {
		text-align: right;
	}
	
	.clear-right {
		clear: right;
	}
	
	
	