html {
	margin: 0;
	font-size: 11.7pt;
}

body {
	margin: 0;
	font-size: 9.5pt;
}

@page {
	margin: 0;
}

.page-wrapper {
	position: relative;
	top: 0;
	bottom: 0;
	width: 210mm;
	height: 297mm;
	overflow: hidden;
}

.page {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.download-button {
	display: none;
}

@media not print {

	body {
		background: #666;
	}

	.page-wrapper {
		position: relative;
		background: white;
		margin: 10mm auto;
		/*border: 1px solid black;*/
		/*width: calc(210mm + 2px);*/
		/*height: calc(297mm + 2px);*/
		box-shadow: 0 0 1mm 0 black;
		box-sizing: border-box;
	}

	.download-button {

		display: block;

		position: absolute;
		right: 1em;
		top: 1em;

		font-size: 2em;
		color: #333;

		opacity: 0.5;
		transition: opacity 0.2s ease-in-out;

	}

		.download-button:hover {
			opacity: 1;
		}

}
