/* 
	Multi-Columns Layout
	
	This stylesheet information defines multi-column layouts using CSS. Since
	tables are not to be used to format documents, rather only to display tabular data,
	it is necessary to define multi-column layout schemes as the need arises. Such schemes
	should be defined here.

	Date:		8-1-2005
	Author:		Mike McMahon
*/


/* Two-column list with alternate row background color */

div.list_row{
	height: 125px;
	padding: 10px; 
}
div.list_row_alternate{
	height: 125px;
	padding: 10px; 
	background-color: #EFF3F6;	
}
div.list_column_left{
	text-align: left;
	width: 50%;
}
div.list_column_right{
	text-align: left;
	width: 49%;
	float: right;
}
