/**
 * Print CSS
 */

@media screen {
	.print {
		display: none !important;
	}
}

@media print {

	/* hide shell */
	header, #CRUD-controls, #toolbar-bottom, #report-filters, #header-collapse-toggle {
		display: none !important;
	}

	/* reposition main */
	main {
		margin: 0px !important;
	}

	/* print header */
	#print-header {
		display: block;
		margin-bottom: 15px;
		font-family: Open Sans, Calibri, Arial;
	}

		#print-header > h1 {
			display: block;
			font-size: 20px;
			margin-bottom: 5px;
		}
		#print-header > h2 {
			display: block;
			font-size: 12px;
			font-family: Roboto Mono;
			white-space: pre;
		}

	/* summaries on top right */
	#print-header > #summaries {
		float: right;
		text-align: right;
		margin-bottom: 20px;
	}
		/* these are non-functional buttons for view component reuse */
		#print-header > #summaries > button.info {
			text-align: right !important;
		}

	/* general container */
	.container {
		margin-top: 0px !important;
		margin: 0px !important;
		padding: 0px !important;
	}

	/* reports */
	.container.report-view > #criteria-summary {
		display: none !important;
	}
		.container.report-view > table {
			margin: 0px !important;
		}

	th, td {
		page-break-inside: avoid;
	}
}