/* CSS Document */
/*Select Items to remove from print for instance left nav and header and nav*/
/*Get rid of images*/
#header, #left, #navigation {
	display: none;
}
.noprint, .image  {
	display:none;
}
/*How you want the page to print out*/
#main   {
	display: block;
	width: 100%; 
	margin-left: 0px; 
	float: none;
	background-color:#FFFFFF;
	color:#333333;
	font-size:12px;
}
h1, h2, h3  {
	display: block;
	width: 100%; 
	margin-left: 0px; 
	float: none;
	background-color:#FFFFFF;
	color:#333333;
	font-size:12px;
}
/*Assign links a darker color so that they print out*/
a:link, a:visited {
	color: #781351;
}

/* Print Style Sheet */

	 


