/* 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. */

/* Cascading stylesheet -- containing print-specific styles -- used for all pages on the Queensland Business Leaders Hall of FAme public website. Based on the Queensland Government's Consistent User Experience (CUE) standard. Last revised by Web Services, 16 May 2009. */

@media print {
	 body, #content, #footer 
	 {
		width: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		float: none !important;
		background:#fff;
		color:#000
	}
	#header
	{
		border-top: 1px dashed #999;
		border-bottom: 1px dashed #999;
		padding-top: 5px;
		padding-bottom: 5px;
		float: none;
	}
	#udm 
	{
		display: none;
	}
	#nav2 
	{
		display: none;
	}
	#content_hp_left 
	{
		float: none;
        width: auto;
	}
	#content_hp_right 
	{
		float: none;
        width: auto;
	}
    #feature 
	{
          display: none;
    }
	#footer
	{
		margin-top: 15px;
		border-top: 1px dashed #999;
		border-bottom: 1px dashed #999;
	}
	#legals   
	{
		display: none;
	}
	#copyright 
	{
		margin-top: 20px;
		padding-top: 10px;
	}
	#govlink 
	{
		display: none;
	}
}

