/* CSS for formated three columns */

TD#col1, TD#col2, TD#col3{
	padding: 10px;	
}

TD#col1 {
	width: 200px; /*Default value, if no other defaults are made */
}

TD#col2 {
	width: 200px;  /*Default value, if no other defaults are made */
}

TD#col3{
   	
	/*float:left;
	margin-left: 240px;  Default value, if no other defaults are made */
   	/*margin-right: 260px;  Default value, if no other defaults are made 
	width: 100%;*/
}

/* Set the stacking order of the columns */
 TD#col1 {z-index: 3;}
 TD#col2 {z-index: 5;}
 TD#col3 {z-index: 1;}

/*#left_content, #right_content, #content {
	background-color: #EEE;
	padding: 5px 10px 5px 10px;
}*/	

 #left_content {z-index: 4;}
 #right_content {z-index: 6;}
 #content {z-index: 2;}
