/* 
Filename: print.css

For use in website root directory
Purpose: controls styles when pages are printed 
*/


@page  		{size: 8.5in 11in portrait; margin: 0.5in}

BODY 		{background-image: none;  background: white}

A 		{color: #0000CC;  text-decoration: underline}

table  		{page-break-inside: avoid}


.printOnly 	{visibility: visible}

.screenOnly	{display: none;  visibility: hidden;}
.displayonly 	{display: none;  visibility: hidden;}


.pageBreak 	{page-break-before: always;}

.newPage	{page-break-before: always;}




/* Do not need to limit to a specific width, but must still pad to keep from truncating content  */

.padded 	{padding: 10px;  text-align: left}

.paddedwide 	{padding: 10px;  text-align: left}


/* These settings can be used to suppress top & bottom padding */

.horiz-padded	{padding-top: 0;  padding-bottom: 0;  padding-left: 10px;  padding-right: 10px}
.justify-padded	{padding-top :0;  padding-bottom: 0;  padding-left: 10px;  padding-right: 10px;  text-align: justify}


