/*	This Style sheet contains selectors, tags, and ids that are used for print media.
	When the link tag is used to include this style sheet on a page, the link tag 
	must include a media attribute like this <link media="print" , plus all the other 
	regular attributes.

	The "noprint" selector below, for example, when used will hide the element it is used on
	from the printer.
*/


/* Selectors ************************************************/
.noprint 
{
	display:none;
}
body
{
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	background-color:#FFFFFF;
}
.contentWrapper /* Container div for content */
{
	border-width:0px;
}