<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/***
 *** PROVIDES A SET OF STYLE OVERRIDES FOR PRINT MEDIUM 
 ***/

/* Customisations purely for the header block print controls */

@media only print {
	header #options {
		display: none;
	}
}
.printonly {
	display: inherit;
}

header #options {
	padding: 10px 10px 5px 0;
	float: none;
}
header #options a:link, 
header #options a:visited {
    color:#FFF;
}
header #options a:hover {
    color:#FF0;
}
header #options .printview {
    display: none;
}
header #options .print {
	display: inline;
	padding: 3px 10px;
	font-weight: bold;
	color: #FFF;
	background-color: #000;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
header #banner.printonly + #options {
	 position: absolute;
	 top: 0;
	 right: 0;
}

header nav {
	display: none;
}

/* Remove all styles that don't translate well to print */
* {
	box-shadow: none !important;
	text-shadow: none !important;
}

/* Force the layout to be tighter and cleaner for print */
body,
body header,
body main,
body footer {
	max-width: 100%;
    width: 100%;
	background-color: #FFF;
}
body,
body main  {
    padding: 0;
	margin: 0;
	border: none;
}
body main,
body footer {
	padding-top: 5px;
	border-top: solid 1px #CCC;
}

/* Remove some styling from elements which have background colors and borders */
main h1 {
	font-size: 22px; /* fallback */
	font-size: 2.2rem;
	line-height: 2.6px; /* fallback */
	line-height: 2.6rem;
	font-weight: bold;
	color: #000;
	box-shadow: none;
}
main h1, main h2 {
	background-color: #F1F1F1;
	border: 2px solid rgba(153,0,51, 0.3);
	border-left: 5px solid rgba(153,0,51, 0.3);
}

table {
  display: table;
  max-width: none;
  overflow-x: visible;
}

table th {
	color: #000;
	background-color: #CCC;
}

/* Taylor size of main document text for print */
body {
	font-size: 12px; /* fallback */
	font-size: 1.2rem;
}
body p {
	line-height: 16px; /* fallback */
	line-height: 1.6rem;
}


/* Ensure some elements not split over two pages */
pre,
blockquote,
tr,
image, 
figure {
	page-break-inside: avoid;
}

/* Taylor link presentation for print and make URLs display */
main a:link, main a:visited, main a:hover, main a:active, main a:focus,  
aside a:link, aside a:visited, aside a:hover, aside a:active, aside a:focus  {
	color: black;
}
main a[href^="http:"]:link,
main a[href^="https:"]:link,
main a[href^="ftp:"]:link {
	background-image: none;
	padding: 0;
}
main a[href^="http:"]:after,
main a[href^="https:"]:after,
main a[href^="ftp:"]:after {
	content: " (" attr(href) ") ";
	position: relative;
	left: 0;
	top: 0;
	
	font-size:0.8em;
	font-weight:normal;
}
main a[href^="javascript:"]:after,
main a[href^="#"]:after {
	content: "";
}

/* Taylor abbreviation presentation for print and make full meaning display */
main abbr[title]:after {
	content: " (" attr(title) ")";
}


table.scrolling::after {
	display: none;
}</pre></body></html>