/* CSS for formated three columns */

#col1, #col2{
	padding-left: 0px;
	vertical-align:top;
	float:left;
	text-align:left;
	
	/*#E4D8BE;*/
}

#col1 {
	height:100%;
	width: 200px; /*Default value, if no other defaults are made */
	margin-right:5px;
	margin-left:15px;
}

#col2 {

	height:100%;
	width: 785px;  /*Default value, if no other defaults are made */
	background-color:#e6d6ab;

}

/* Set the stacking order of the columns */
 #col1 {z-index: 3;}
 #col2 {z-index: 5;}


