/* CSS by DLZ to add positioning divs to the university defaults *//* These are designed to control the placement of images and captions in the content area *//* This div is used to float an image or other content against the left border.  It does the same to images as the university default but without solid borders */#content  div.leftfloat {	float: left;	}/* These next divs are designed to hold an image in a box of fixed size, then text next to it so that they fit into the content box.  Any text within the div will come under the image and will be centered.  Use the next div of suitable size to place text next to this image that will be to the right but not wrap around. In a 3A style, the content area is 400px wide.  In 3B it is 560px wide.  Warning: If you format pages in this way, you must use these divs for EVERYTHING on the page.  Any non-dived text will find a way to wrap around any cracks between the div elements.  My DW8 had problems rendering these in its live view, but they look OK in Safari or Firefox*/#content div.leftfloat200_img {	float: left;	width: 200px;	border: none;	margin: 10px 10px 10px 0px;	text-align:center;	font-size:75%;	line-height:100%;	text-indent:0px;	}#content div.leftfloat300_img {	float: left;	width: 300px;	border: none;	margin: 10px 10px 10px 0px;	text-align:center;	font-size:75%;	line-height:100%;	text-indent:0px;	}#content div.leftfloat200_text {	float: left;	width: 200px;	border: none;	margin: 10px 10px 10px 0px;	text-align:left;	font-size:85%;	line-height:100%;	text-indent:0px;	}#content div.leftfloat340_text {	float: left;	width: 340px;	border: none;	margin: 10px 10px 10px 0px;	padding: 0 0 0 10px;	text-align:left;	font-size:85%;	line-height:100%;	text-indent:0px;	}#content div.leftfloat400_text {	float: left;	width: 400px;	border: none;	margin: 10px 10px 10px 0px;	text-align:left;	font-size:85%;	line-height:100%;	text-indent:0px;	}#content div.spacer560 {	width: 560px;	border: none;	margin: none;	padding: none;	}#content div.leftfloat560_text {	float: left;	width: 560px;	border: none;	margin: 10px 10px 10px 0px;	text-align:left;	font-size:100%;	line-height:100%;	text-indent:0px;	}