/* CSS Document */

.column_container {
 	color: #f3f3f3;
	overflow: hidden;
	width: 580px;
	background-color: #4c4f46;
	z-index: 1;
}
	
.column_container img {		
	margin: 0;
}

div.content_column {
	float: left;
	padding-bottom: 1000px;
	margin-bottom: -995px;	
	z-index: 1;
}

#column_one, #column_two {	
		border-right: #000 solid 1px;
}

/* 

To fill a 580px containter with 3 columns with a total of 2, 1px borders,
we end up with 3 column divs with widths 193, 192, and 193.

*/
#column_one, #column_three {
	width: 193px;
}

#column_two {
	width: 192px;
}
