
@media screen {
    #printSection {
        display: none;
		width: 400px; 
		height: 650px; 
		overflow: hidden;
    }
}

@media print {
     body * {
    } 

    #printSection, #printSection * {
        display: inline;
		width: 400px; 
		height: 650px; 
		overflow: hidden;
    }

    #printSection {
        position:absolute;
        left:0;
        top:0; 
		width: 400px; 
		height: 650px; 
		overflow: hidden;
    }
}
