/* Print specific styles.

The float layout seems problematic when printing pages so has been disabled. This means the nav2, content, and feature divs will print one after the other in a vertical stack as opposed to the horizontal layout we see in the browser.
You can further customise your print output by adding styles within the @media print rule. For example, you may decide certain page elements are superfluous when printing. You might choose to remove them from the printed page with a display:none style. Make sure any styles you add are within the @media print parentheses, else they will apply generally. */

@media print {
	#content {
		float: none;
		width: 100%;
		border-left: none;
	}
	#homeContent {
	float: none;
	width: 100%;
	border-left: none;
	}
	
	#nav2, #feature, #header, #footer, #nav1, #banner {
    display: none;
	}
	body {
	font-family: Arial, Times New Roman;
	background-color: #FFF;
	}
}

