/*================*\
#    Impression    #
\*================*/
@media print{
	*{
		text-shadow:none !important;
		background:transparent !important;
		box-shadow:none !important;
	}
	body{
		width:auto;
		margin:auto;
		font-family:serif;
		font-size:12pt;
	}
	body::before{
		content:var(--qr-print);
		width:3cm;
		height:3cm;
	}
	p, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, blockquote, label, ul, ol{
		margin:auto;
		color:#000;
	}
	.no-print, .noPrint, .noprint{ display:none !important; }
	p, blockquote{
		widows:3;
		orphans:3;
	}
	blockquote, ul, ol{ page-break-inside:avoid; }
	h1, .h1, h2, .h2, h3, .h3, caption{ page-break-after:avoid; }
	a{ color:inherit; }
	p a[href]:not([href^="javascript:"]):not([href^="#"])::after,
	p a[data-lienprint]::after{
		content: " (" attr(href) ")";
		opacity:0.8;
		font-size:0.8em;
	}
	p a[data-lienprint]::after{ content: " (" attr(data-lienprint) ")" !important; }

}