<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	background: #dddddd; 
	color: black;
	font-family: Sans-serif; 
}

h1 {
	clear: both;
	text-align: center; 
	font-size: 150%; 
	color: blue
}
h2 {
	font-size: 125%; 
	color: blue
}
h3 {
	font-size: 100%; 
	color: blue
}


a:hover { 
	color: red;
}


.centred {
	text-align: center
}
div.centred table {
	margin-left: auto; 
	margin-right:auto; 
	text-align: left;
}
img.centred {
	display: block; 
	margin-left: auto; 
	margin-right:auto;  
}
img.small {
	max-height: 200px;
}

p.small, div.small {
	font-size: 75%;
	font-style: italic;
}

img.margined {
	margin: 4px 40px 4px 4px;
}

.left {
	text-align: left
}

.gray {
	background: #808080; 
	color: black;
}

#footer {
	position: fixed;
	bottom: 0;
	width: 98%;
	background: #dddddd;
	z-index: 1;
	border: medium dotted white;
	margin: 2px 0 0 0;
	left: 2px;
}

.clear {
	display: block;
	clear: both;
}

.leftfloat {
	display: block;
	float: left;
}

.rightfloat {
	display: block;
	float: right;
}

.hidden {
	visibility: hidden;
}

.num_reset {
    counter-reset: item;      /* Create a counter scope */
}
.numbered:before {
    content: counter(item) "."  ;
	 counter-increment: item;  /* Add 1 to item */
</pre></body></html>