/*           CSS to set print style         */


 @media print  {
	* { 
	padding:0; 
	margin:0; 
	border: 0;
	}
	
      
   .donotprint  { 
     display: none;
     }
    p {
	page-break-after: avoid;
	;
}

	
	}

/* Remove all unnecessary elements, and make the ones that survive black text on white background */

.top, .nav, .footer, .headernav, .navwrapper, .utilitiesbox {display: none; }

.main {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	text-align: left;

} #main > #content {margin: 0; }


/* adds explaination to the top of the page -- only works in Firefox */
#content:before {content: "This is a printer-friendly version. The navigation and other unnecessary elements have been removed."; 
display: block; margin-bottom: 3mm; padding: 3px 3px 2px; background: #f9f8e4; text-align: center; }
