Fixing DIVs That Cause Content Truncation When Printing

<head>
	<title>Print Style Cutoff Overflow Issues</title>
	<style type="text/css">
 
		div#pagewidth {
			margin: 0px auto 0px auto ;
			overflow: hidden ;
			width: 500px ;
			}
 
		div#sitecontent {}
 
	</style>
 
	<!-- Print styles. -->
	<style type="text/css" media="print">
 
		div#pagewidth {
			display: inline ;
			}
 
	</style>
</head>

For Cut-and-Paste