/* https://www.michaelperrin.fr/blog/2019/11/printing-the-web-part-2-html-and-css-for-printing-books */
body, html { 
	background: white; 
	counter-reset: page;
	max-width: 100%;
}



@page {
	size: A4;
	/*margin: 2cm;
	padding: 1cm;
	counter-increment: page;*/
}

.noprint, pre.copyright {
     display:none;
 }
