/* Print CSS Document */

/*remove the elements we don't want to print*/
#hdr, #content img {
	display: none;
	}

/* get rid of the body bg, change the font and size to be print friendly*/
body {
	background: none;
	font: 12pt Arial, Helvetica, sans-serif, "Trebuchet MS";
	}

/*let the wrapper take the available room*/
#outer {
	width: auto;
	}

/*then center the content within the wrapper*/
#content {
	margin: 0 auto;
	width: 6in;
	}

#footer {
	margin: 0 auto;
	width: 6in;
	}

