/* Styles for printing out */

/* 	The basic aim here is to hide the menus and additional items and print the title, normal items 
	and footer (text not valid* icons) on a plain background */

/* Get rid of coloured backgrouns (unless explicitely put back on) */	
* {
	background:	white;
}	

/* Make links look just like any other text - you can't click them on the page anyway! */
a:link, a:visited {
	color:				black;
	text-decoration:	none;
	font-weight:		normal;
}

/* Get rid of the rounded corners, can't be bothered to make it work here */
.box_top, .box_bottom, .box_topleft, .box_topright, .box_bottomleft, .box_bottomright {
	display:	none;
}

/* Hide the *Menu and additionalItems areas */
.siteMenu, .pageMenuItemsArea, .additionalItemsArea {
	display:	none;
}

/* 	Set normalItemsArea to full width
	Set normalItem and pageTitle to full width, white background, no border */
.normalItemsArea {
	border:			none white;
	background:		white;
	margin-left:	0%;
	margin-right:	0%;
	width:			100%;
}
.pageTitle, .normalItem {
	background:		white;
	border:			none;
	width:			100%;
}


/* Hide the footer valid* icons, set disclaimer as full width, black border */
#footer #validHTML, #footer #validCSS {
	display:	none;
}
.standardDisclaimer {
	width:		100%;
	border:		1px solid black;
	background:	white;
}

/* Hide the web-page only links to cited acts */
.citedacts {
	display:	none;
}

.backlink{
	display:	none;
}