/* 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: auto;
     }
     #nav1 {
          float: none;
          width: auto;
		  display: none;
     }
     #nav2 {
          float: none;
          width: auto;
		  display: none;
     }
     #feature {
          float: none;
          width: auto;
		  display: none;
     }
	 #header {
	 	display: none;
	}
}
