/* =========================================================
	PRINT STYLESHEET
	https://www.30secondsofcode.org/css/s/print-stylesheet/
========================================================= */

@media print {
	@page {
		size: A4;
	}

	body {
		margin: 0;
		padding: 0;
	}

	body, p, h1, h2, h3, h4, h5, h6, li {
		font-weight: normal;
		font-size: 12pt;
		font-family: Helvetica, Arial, sans-serif;
	}

	h1, h2, h3, h4, h5, h6 {
		margin-bottom: 0.5em;
		font-weight: bold;
	}

	h1 { font-size: 24pt; }
	h2 { font-size: 18pt; }
	h3 { font-size: 14pt; }

	a:-webkit-any-link {
		color: #0000FF;
		text-decoration: none;
	}

	a:-moz-any-link {
		color: #0000FF;
		text-decoration: none;
	}

	a:any-link {
		color: #0000FF;
		text-decoration: none;
	}

	a:-webkit-any-link::after {
		content: " ["attr(href)"] ";
	}

	a:-moz-any-link::after {
		content: " ["attr(href)"] ";
	}

	a:any-link::after {
		content: " ["attr(href)"] ";
	}

	img { width: 100%; }

	header, footer, nav, aside, form, iframe, script {
		display: none;
	}
}


/*# sourceMappingURL=print.css.map*/