/**
 *	Den en Rust general print stylesheet
 *	-------------------------------------------------------
 */

body {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000;
	background: #fff;
}

/* show the targeted URL after links */
a:link:after,
a:visited:after,
a:hover:after,
a:active:after {
	font-style: italic;
	font-weight: normal;
	content: " <" attr(href) "> ";
	color: grey;
}
a[href^="/"]:after {
	content: " <http://www.denenrust.nl"attr(href)"> ";
}

/* make sure table headers are repeated on every page on large tables, also in IE */
thead {
	display: table-header-group;
}

/* avoid table rows from breaking when spread across multiple pages */
tr {
	page-break-inside: avoid;
}

/* hide certain content in printed pages */

#breadcrumbs,#navigation,.banner,#search-form,.widget,.subnav {
	display: none;
}

h1,h2,h3,h4,h5,h6 {
	color: #96005a;
}

