/* Inner Centre Print CSS Document */

/*remove the elements we don't want to print*/
#header, #nav, #footer, #image {
	display: none;
	}

/* get rid of the body bg, change the font and size to be print friendly*/
body {
	background: none;
	font-family:  "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14pt;
	}

/*let the wrapper take the available room*/
#wrapper {
	width: auto;
	}

/*then center the content within the wrapper*/
#content {
	margin: 0 auto;
	width: 6in;
	}

/*set the print header to display block - provides a heading for our printed page*/
#content .printheader {
	display: block;
	margin-bottom: 25px;
	}



