/*----------- Formatting of 1/4-width boxes on home page ------------*/	
	
.leftboxes {					/* Column for boxes on left of "middle" section */
	margin-left: 10;
	width: 219;					/* 220 - 1 = 219, to allow for border */
	float: left;
	border-right: white 1px solid;
	}
#middleboxes {					/* Double-wide column for main content */
	width: 440;
	float: left;
	}
.rightboxes {					/* Column for boxes on right of "middle" section */
	width: 219;
	float: left;
	border-left: white 1px solid;
	}
.leftboxes .box,
.rightboxes .box {
	width: 199;								/* Sets the width of the colored boxes */
	*width: 219;
	font-family: Arial, Tahoma, san-serif;	/* Narrower font, larger display size */
	font-size: 12pt;
	}
.leftboxes,
#middleboxes,
.rightboxes {
	margin-bottom: 0;
	*margin-bottom: -6;
	}
