/* Hide all elements except the area to be printed */
body * {
    display: none;
}

#printContent, #printContent * {
    display: block;
}
