@media print{
	/*
		Here's where the print declarations come in
		These hide most of the page content so that the user doesn't have to use unneeded ink
	*/
	
	#header {
		display:none;
	}
	
	#sidebar {
		display:none;
	}
	
	#footer {
		display:none;
	}
	
	#content {
		font-size: 12pt;
	}
	
	hr {
		display:none;
	}
	
	a {
		text-decoration:none;
	}
}
