/**
 * This div contains information that should be displayed in left hand side of
 * the div.data below the main title. This column width represents 60% of the 
 * area. Because of a MS Explorer bug, we must use "em" units instead of %. We
 * use the float left property to move the column to the left of div.dataRight.
 */
div.dataLeft
{
	margin : 1em;
/*	border: thin dotted #800080; */
	width: 35em; /*	Patch 3 for MS Excporer this should be: width: 60%; */
	float: left;
}


/**
 * This div contains information that should be displayed in right hand side of
 * the div.data below the main title. This column width represents 40% of the 
 * area. Because of a MS Explorer bug, we must use "em" units instead of %. This
 * colum will be placed to the right of div.dataLeft because of the float 
 * property.
 */
div.dataRight
{
	margin : 1em;
/*	border: thin dotted #800080;*/
	width: 23em; /*	patch 3 for MS Excporer this should be: width: 40%; */
	float: left;
}

