@media print {
	html{}
	body{
		
	}

	h1,h2,h3,h4,h5,h6{
		page-break-after: avoid;
	}

	h1{}
	h2{}
	h3{}
	h4{}
	h5{}
	h6{}


	a{}
	a:hover{}
	a:link{}
	a:active{}
	a:focus{}
	a[href]:after {
	  	content: " (" attr(href) ")"; /* affichage des URL des liens */
	}

	p{
		orphans: 3; /* pas de ligne seule en bas */
  		widows: 3;
	}
	hr{}


	ul{
		page-break-inside: avoid; 
	}
	ul li{}

	dl{}
	dd{}
	dt{}

	table{}
	caption{
		page-break-after: avoid;
	}
	tr{}
	th{}
	td{}

	small{}
	strong{}

	header{}
	section{}
	aside{}
	footer{}

	address{}
	article{}
	time{}
	blockquote{
		orphans: 3; /* pas de ligne seule en bas */
  		widows: 3;
	}
	details{}
	figcaption{}
	figure{}

	fieldset{}
	button{}
}