@media print {
	.pagebreak {
		page-break-before: always;
	}
}

body {
	overflow: auto;
}

table.DataTable {
	width: 100%;
	border-collapse: collapse;
}

table.DataTable thead {
	position: sticky;
	top: 0;
	background-color: #4F614B;
	z-index: 1;
}

table.DataTable th {
	background-color: #4F614B;
	color: white;
}

table.DataTable tbody tr:nth-child(odd) {
	background-color: #E2EFDA;
}

table.DataTable tr:hover td {
	background-color: lightyellow;
}

table.DataTable th, td {
	border: 1px solid black;
	text-align: left;
}

table.DataTable td.align-right {
	text-align: right;
}