/* 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 {
	 #nav  {
	 	display: none;
	}	 
	
	 #banner	{
	 	margin-top:.8cm !important;
	}		 
	 #maincontent {
    	float: none;
    	width: auto !important;
		font: 0.8em "Times New Roman", Times, serif;
   }

	#content .expandable {
		border : 0;
	}

	#content .expandable div {
		display : block !important;
		padding-left : 0;
	}
	
	#content .expandable h3 {
		line-height : 13pt;
		background-color : #FFFFFF !important;
		padding : 0;
		border : 0;
	}

	#content .xc {
		display : none;
		padding-right : 0;
	}
}
