/*remove the elements we don't want to print*/
#topbanner, #subheader, #nav, #footer, #innerfooter, #skip, #content .handheldheader {
	display: none;
}

/* get rid of the body bg, change the font and size to be print friendly*/
body {
	background: none;   
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
}

/*let the wrapper take the available room*/
#wrapper {
	width: auto;
}

/*then center the content within the wrapper*/
#content {
	margin: 0 auto;
	width: 7in;
}

#content h2 {
	color: #293412;
	font-size: 14pt;
}

/* refloat the image in the content area*/
#content #clarence {
	float: right;
	border: 1px solid #4D562E;
	margin: 5px 10px 3px 5px;
}

/*set the print header to display block - provides a heading for our printed page*/
#content .printheader {
	display: block;
	margin-bottom: 25px;
}

