/*As this was a print off only form I chose to remove any coloured backgrounds and replaced them with a plain white image, this allowed for a better printed page and also meant the fairly long form was easier to read. The height was changed to wrap the border around the form */
div#wrapper {
	border-bottom-style: solid;
	background-image: url(../images/medical_bg.jpg);
	background-repeat: repeat-y;
	height: 1100px;
	border-bottom-width: 1px;
	border-bottom-color: #cccccc;
}
/*I adjusted the box model sizes on this div to accomodate the form length*/
div#content {
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 700px;
	padding-right: 20px;
	padding-left: 20px;
	height: 900px;
	overflow: none;
}
