/* PRINT CSS */

body {
	background-color :#FFFFFF;
	height: 100%;
	margin-top: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
	line-height: 14px;
} /* This 100% tag makes the height of the page stretch to 100% so that when you define the container background color/image it will fill the height of the browser window independent of how much content fills the page - you also have to put it in the HTML tag */

.noprint { 
	display: none; 
}

.printelement { 
	display: block; 
}
 
.screenelement { 
	display: none; 
}



