/* CSS for formated three columns */

#col1, #col2{
	padding-left: 0px;
	padding-bottom: 5px;
	vertical-align:top;	
	float:left;
	text-align:left;
	background-color:#e6d6ab;
}

#col1 {
	
	width: 190px; /*Default value, if no other defaults are made */
	margin: 0 10px 0 10px;

}

#col2 {
	
	width: 585px;  /*Default value, if no other defaults are made */

}

#col3 {
	width:190px; 
	padding: 5px 5px 0 5px;
	margin:0 10px 0 7px;
	vertical-align:top;	
	float:right;
	text-align:left;
	background-color:#e6d6ab;
	clear:right;

}

/* Set the stacking order of the columns */
 #col1 {z-index: 3;}
 #col2 {z-index: 5;}


