/*
* Two Column Layout CSS
*
* @author	Duncan Mundell <duncan-AT-swaziboy.com>
* @version	1.0
* @updated	11/05/08
*/

/* Left column */
#col1 {
	width: 355px;
	float: left;
	background-color: #E1E1E1;
	color: #000;
	line-height: 1.3em;
	height: 105px;
	min-height: 105px;
	padding: 20px 10px;
	}
	
/* Stupid IE6 */
#content > #col1 {
	height: auto;
	}
	
	
/* Right column */
#col2 {
	float: left;
	width: 355px;
	background-color: #717171;
	display: block;
	color: #FFF;
	line-height: 1.3em;
	height: 105px;
	min-height: 105px;
	padding: 20px 10px;
	}
	
/* Stupid IE6 */
#content > #col2 {
	height: auto;
	}
	
