﻿/* 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 {

#header 				{ display: none; }
#qglogo 				{ display: none; }
#tools	 				{ display: none; }
#search 				{ display: none; }
#agency 				{ display: none; }
#banner	 				{ display: none; }
#nav1					{ display: none; }
#s4-trc-container-menu	{ display: none; }
#nav2 					{ display: none; }
#nav2head				{ display: none; }
#footer					{ display: none; }
#SiteMapPath1			{ display: none; }
#nav1					{ display: none; }
.ms-bannerContainer		{ display: none; }
#div					{ display: none; }
#s4-notdlg				{ display: none; }

#content 				{ float: left; width: auto; }
#content2 				{ float: left; width: auto; }
#MSO_ContentDiv			{ float: left; width: auto; }
#feature 				{ float: left; width: auto; }
}