/* ============== [ print.css ] ==============

Notes:

/*
---------------------------------------------------
Print Styles
---------------------------------------------------
*/


* {
	background: transparent !important;
	color: black !important; /* Black prints faster: sanbeiji.com/archives/953 */
	text-shadow: none !important;
	filter: none !important;
	-ms-filter: none !important;
}

body
{
	font-family: Trebuchet MS, Arial, Helvetica, Tahoma, sans serif;
}

a, a:visited {
	text-decoration: underline;
	font-weight:bold;
}

a[href]:after {
	content: " (" attr(href) ")";
}

/* Do not show javascript and internal links */
a[href^="javascript:"]:after, a[href^="#"]:after {
	content: "";
}

/* Printing Tables: css-discuss.incutio.com/wiki/Printing_Tables */
thead {
	display: table-header-group;
}

tr, img {
	page-break-inside: avoid;
}

@page {
	margin: 0.5cm;
}

p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h1
{
	font-size:20pt;
}
h2
{
	font-size:18pt;
}
h3
{
	font-size:17pt;
}
h4
{
	font-size:16pt;
}
h5
{
	font-size:15pt;
}
h6
{
	font-size:14pt;
}
p,li
{
	font-size:12pt;
}

.breadcrumbs
{
	font-size:10pt;
}
.breadcrumbs a
{
	margin-right:5px;
}
.breadcrumbs a:after
{
	content: " >";
}

h2, h3 {
	page-break-after: avoid;
}

#skiplink
{
	display:none;
}
