
/* Set up the container and cols info */
/* for equal column lengths           */

#container2 {
	clear: left;
	float: left;
	width: 950px;		 /* sets the width pink @ 100% from lhs */
	background: #ffffe1; /* Right Col bg colour */
	overflow: hidden;
	position: relative;  /*This corrects IE bug on 'overflow hidden' */
	border-width: 1px 0px 1px 0px; /* border on top / bottom */
	border-style: solid;
	border-color: #c00000;
			}

#container1 {
	float: left;
	width: 950px;
	position: relative;	 /* sets the yellow @ 50% from left */ 
	right: 725px;		 /* 75%% */
	background: #faffbf; /* Left Col bg colour */
	border-right: 1px solid #c00000;	/* left col right border colour */
			}

#colLeft {
	float: left;
	width: 200px;		 /* 21% */
	position: relative;
	left: 740px;		 /* moves left col text /* 77% */
	overflow: hidden;
	text-align: left;
		}	
				
#colRight {
	float: left;		
	width: 695px;		 /* 73% */
	position: relative;
	left: 760px;		 /* 80% */
	overflow: hidden;
		}
		
/* ******* END OF FILE *************/