/* any element styled with this class
 will not be included when the page is printed */

.suppressOnPrint {
	display: none;
}

/* any element styled with this class
 will be resized when the page is printed -
 used to force other elements towards the left
 margin
 */

.expandWidthOnPrint {
	width: 300px;
}

.expandTableWidthOnPrint {
    width: 900px;
}
