/* print.css are the styles for the DIVs in a website where print version of pages are needed *//* INSTRUCTIONS *//* if a website has been designed with a "Print (Page)" icon/button we use this stylesheet to remove all of the unnecessary divs, graphics, menus etc so that only the content area text will print when a user clicks that button or hits CTRL-P or CMD-P on a page *//* first, make sure you have ALL of the main div names from the structure.css style sheet that contain items that are not required to print on this page, then comment them with display: none; as show herewhich will prevent them from showing on a printed page ...#topnav {display: none;}the "Print (Page}" icon/button should have the following code in it for this to work ...<a href="#" onClick="window.print()">button graphic here</a>finally, if required, set up new style sheets for the content area to force it to a specificsize and centre it on the page as shown here ...#contentexample {width: 525px; margin: auto auto;}*//* ----- comment styles well for better reference later! ----- *//*=================================DIVS THAT WILL NOT BE PRINTED OUT=================================*/#subnav1_wrap { display:none}#subnav2_wrap {display:none}#nav_wrap {display:none}#footerlinks {display:none;}#breadcrumbs_elGold {display:none}#otherLinks_elGold {display:none}#i_smallColumn {display:none}#breadcrumbs { display: none; }#otherLinks_fd { display: none; }#footerlinks_fd { display: none; }/*===============================DIVS RESTYLED FOR PRINT VERSION===============================*//* ================================================== ALL PAGES */#uber {	margin:0 auto;	width:90%}#head_wrap {	display:block;	height:auto;	margin:0 auto;	width:100%;}#uber_footer {	border-top:1px solid #ccc;	margin:0 auto;	width:90%;}#copyright {	color:#666;	float:none;	font-size:14px;	margin:10px 0;	width:100%;}#conceptby {	color:#666;	float:none;	font-size:14px;	text-transform:uppercase;}#welcometext_wrap {	float:none;	left:0;	width:100%;}.welcomeText {	clear:left;	color:#233b6b;	float:none;	font-size:16px;	line-height: 28px;}.welcomeText p {	color:#233b6b;	font-size:16px;	line-height: 28px;}.teamText{	width: auto;	color: #666666 !important;	font-size: 16px;	line-height: 28px;		}.teamText p {	color:#666666;	font-size: 16px;	line-height: 28px;}/* ================================================== CONTENT PAGES */#i_content,i_content_pl,i_content_fd {	float:none;	left:0;	width:90%;}#i_content p, #i_content_pl p, #i_content_fd p,#i_content ul, #i_content_pl ul, #i_content_fd ul,#i_content li, #i_content_pl li, #i_content_fd li {	font-size:16px;}
