/* Print CSS Document */

/*remove the elements we don't want to print*/
#sidebar, .banner {
	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*/
#content {
	width: auto;
	}
