/* Hide all background images. */
* {
	background: transparent !important;
	color: #000000 !important;
	text-shadow: none;
}


/* Make links show in their default state of blue. */
a,
a:link,
a:hover,
a:active,
a:visited {
	color: #0000ff !important; 
	text-decoration: underline;
}


/* Keep from being split. */
img,
pre,
blockquote {
	page-break-inside: avoid;
}
h2,
h3 {
	page-break-after: avoid;
}


/* Write the link after every anchor. */
a:after {
	content: " (" attr(href) ")";
}


/* Don't show links for images */
img a:after {
	content: ""; 
}


/* Show the title field for any abbreviations. */
abbr:after {
	content: " (" attr(title) ")";
}


/* Add a margin around the print page. */
@page {
	margin: 0.5cm;
}


/* Keep paragraphs and top level headers from being split from their content at the bottom of pages. */
p,
h2,
h3 {
	orphans: 3;
	widows: 3;
}
