How's this ? It is extremely basic, largely cut and paste from whatever I could find on the web.
@media screen {
.do-print
{
display: none;
}
}
@media print {
@page {
margin-left: -5cm;
margin-right: 1.5cm;
}
.no-print, .no-print *
{
display: none !important;
}
.do-print
{
display: block;
}
}