﻿/* print.css stylesheet contains style overrides specific to printing only such as removing backgrounds */
@media print  
{
html,body,form {
	background-color: white;
}

div#contentRight 
{

	background: none;
	background-color: white;
}	

#newsButtons { display: none; }
#newsContainer { padding: 0; }
}

