@charset "utf-8";
/* CSS Document */
/* With help from http://www.alistapart.com/articles/goingtoprint/ */

/* Body background is reset to preserve ink, font size changed to something suitable for print */
#body {
	background: #FFF;
	font-size: 12pt;
}

/* Navigation menu is hidden, and it's width removed */
#navigation {
	display: none;
	width: 0;
}

/* Search box is hidden */
#search {
	display:none;
}

/* Content has it's float removed so that the printer can correctly print long pages */
/* Content has it's width increased, to fill the void that navigation left */
#content {
	float:none;
	width: 950px;
}

/* Footer contains links to Contact/Accessibility/T&C, and is not needed */
#footer {
	display: none;
}

/* To display links on B&W Printers, an underline is used. */
a:link, a:visited {
	text-decoration:underline;
}

/* Style to make sure that the RoSPA logo and the Banner both display correctly on print */
#banner .printbanner {
	display:block;
	float:left;
}

/* Conditional IE6 Value to get wide content to wrap to portrait A4 pages */
* html #content {
	width: 700px;
}