/* CSS Document */
/*
TO USE INCLUDE IN THE HTML HEAD:
<link rel="stylesheet" href="print.css"
type="text/css" media="print" /> 

TO ADD A PRINT BUTTON:
<form><input type="button" value=" Print this page "
onclick="window.print();return false;" /></form> 

TO ADD A LINK:
<a href="#" onclick="window.print();return false;">print</a>  

TO APPLY TO DIVS ETC IN THE PAGE:
Now all you need to do is to assign class="print" to whatever parts of your web page that you want to have print out. Anything on the page not assigned to this class will not print. 
*/

body {visibility:hidden;}
.print {visibility:visible;} 