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

	 
	 #navigation  {
	 	display: none;
	 }	 
	 
	 #centre_logo {
	 display: none;
	 }	 
	  
	 .bcrumb {
	 display: none;
	 }	 

     #leftcontent {
	 	display: none;
	 }	 
	 
	 #menu {display: none;
	 }	 
	 
	 #announce {
	 display: none;
	 }	 
	 
	 
	 h1, h2, h3, h4, h5, h6 p{
             font-weight: bold;
			 font-family: "Times New Roman", Times, serif;
			 
}

#island {
	margin-top: 0px;
	top: 0px;
	float: none;
	margin-right: 10px;
	margin-left: 10px;
	background-color: #FFFFFF;
	width: auto;
	min-width: inherit;
	padding: 0px;
	
}


#main {
	margin-top: 0px;
	margin-left: 10px;
	top: 0px;
	float: none;
	width: auto;
	margin-right: 10px;
}

