@charset "utf-8";
/* 
 * CSS Document 
 * used for print
 */

/* change font size / scales */
html, body {
	margin: 0;
	width: auto;
	
	font: 12pt Arial, Helvetica, sans-serif;
	
	background-color: #FFFFFF;
	color: #000000;
}

h1 {
	font-size: 1.4em;
}
h2 {
	font-size: 1.2em;
}
h3 {
	font-size: 1.1em;
}

th {
	text-align: left;
}

body {
	/* important for cross browser compatibility */
	font-size: 1em;
	line-height: 1.2em;
}

/* add pagebreaks */
p {
	page-break-after: auto;
	page-break-inside: auto;
}

/* repositioning */
.container {
	position: relative;
	width: 100%;
	margin: 0;
	
	border: 0;
}

/* hide everything we don't need to print */
.banner, .menu, .footer, .hide_for_print {
	display: none;
}

/* change colours to black and white */
a {
	background-color: #FFFFFF;
	color: #000000;
}