/* this one is shared with the base css file */
@media all {
.onlyprint { display: none;}
}	 
/* these are specific for the print */	 
@media print {
body {
	font-size: 95%;
	font-family: "Verdana", "times new roman", serif;
	margin: 0;
	padding: 0;
	background: white; 
	color: black;
	}
	
.noprint { display: none;}
.onlyprint { display: block;}
.printit { 
    width: 600px !important; 
    clear: both; 
    float: none !important; 
    margin: 0; 
    padding: 0;
    border: 0; 
    text-align: left;
    color: inherit;
    }
}
	 
	 
