<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
 * -------------------------------------------------------------------------
 *       General and High level behaviour 
 * ------------------------------------------------------------------------- 
 */
* {
	box-sizing: border-box;
}

header,
section,
/*footer,*/
aside,
nav,
main,
article,
figure {
	display: block;
	font-family: 'Book Antiqua', Cambria, serif;
}

/* 
 * ----------------------------------------------------------------------------
 * HEADER behaviour
 * ----------------------------------------------------------------------------
 */
header {
	/*clear: left;*/
	color: white;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	/*position: fixed;*/ /* Fix HEADER at top */
	top: 0; /* Fix HEADER at top */
	width: 100%;
}
/* Stroudley Improved Engine Green Lining box*/
header,
.Lining {
	background: url(graphics/Lining-top-left.png) left top no-repeat, url(graphics/Lining-top-right.png) right top no-repeat, url(graphics/Lining-bottom-left.png) left bottom no-repeat, url(graphics/Lining-bottom-right.png) right bottom no-repeat, url(graphics/Lining-vertical-top.png) top repeat-x, url(graphics/Lining-horizontal-left.png) left repeat-y, url(graphics/Lining-horizontal-right.png) right repeat-y, url(graphics/Lining-vertical-bottom.png) bottom repeat-x;
	padding: 30px;
	background-size: auto;
	background-color: #DD9B15; /* YellowOchre */
	border-image-outset: 10px;
}
header ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #DD9B15; /* YellowOchre */
}

header ul li {
	float: left;
	border-right: solid silver 1px;
}
header ul li:last-child {
	float: right;
	border-right: none;
}
header ul li a,
.dropbutton {
	display: inline-block;
	color: blue;
	text-align: center;
	padding: 14px 16px;
	/*min-height:68px;*/
	text-decoration: none;
}
header ul li:last-child a {
	padding-top: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
	padding-right: 8px;
}

/*header ul li a:hover,*/
.dropdown:hover .dropbutton {
	background-color: #DD9B15; /* YellowOchre */
	text-shadow: 1px 1px black;
	color: gold;
}
header ul li:hover {
	background-color: #DD9B15; /* YellowOchre */
	color: white;
}
/*header ul li.active a:-webkit-any-link {
	color: blue;
	cursor: pointer;
	text-decoration: none;
}*/
/* 
header ul li.active a.dropbutton:-webkit-any-link {
	color: white;
	cursor: pointer;
	text-decoration: none;
}
*/
header ul li.dropdown {
	display: inline-block;
}


/* Create Dropdown content for HEADER navigation */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.dropdown-content a {
	color: blue;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
	text-align: left;
}

.dropdown:hover .dropdown-content {
	display: block;
}

/* 
 * ----------------------------------------------------------------------------
 * FOOTER behaviour
 * ----------------------------------------------------------------------------
 */
footer {
	display: block;
	font-family: Helvetica, Arial, sans-serif;
	clear: left;
	color: black;
	text-align: center;
	background-color: silver;
	padding: 15px;
/*position: fixed;*/ /* Fix FOOTER at bottom */
	/*bottom: 0;*/ /* Fix FOOTER at bottom */
	width: 100%;
}
footer a {
	text-decoration: none;
}
button:hover {
	background-color: #DD9B15; /* YellowOchre */
}

/* 
 * ----------------------------------------------------------------------------
 * NAV behaviour
 * ----------------------------------------------------------------------------
 */
nav {
	float: left;
	padding: 0px;
	/*background: #eee;*/
	width: 15%;
	/*height: 100%;*/
	/*position: fixed;*/
	overflow: auto;
}
nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
nav ul li {
	padding: 2px;
	margin-bottom: 6px;
	background-color: #DD9B15; /* YellowOchre */
	color: white;
}
nav ul li a
{
	color: blue;
	text-decoration: none;
}
nav ul li.active:hover {
	background-color: #DD9B15; /* YellowOchre */
	text-shadow: 1px 1px black;
	color: gold;
}

/* 
 * ----------------------------------------------------------------------------
 * ARTICLE behaviour (used with NAV and ASIDE)
 * ----------------------------------------------------------------------------
 */
article {
	border-left: 1px solid gray;
	padding: 1em;
	float: left;
	width: 65%;
}

/* 
 * ----------------------------------------------------------------------------
 * ASIDE behaviour
 * ----------------------------------------------------------------------------
 */
aside {
	float: right;
	padding: 15px;
	background: #eee;
	width: 200px;
}
aside img {
	max-width: 100%;
	height: auto;
}
aside.Key {
	text-align: left;
	padding-bottom: 10px;
	padding-right: 15px;
	padding-left: 10px;
	padding-top: 5px;
	margin-right: 10px;
	background: #eee;
	position: fixed;
	top: 190px;
	right: 0px;
	width: 200px;
}
aside.Circle {
	float: right;
	padding: 5px;
	background: none;
	width: 20%;
}
/* 
 * ----------------------------------------------------------------------------
 * SECTION behaviour (used for full wide pages)
 * ----------------------------------------------------------------------------
 */
section {
	padding: 1em;
	float: left;
	width: 85%;
}

/* 
 * ----------------------------------------------------------------------------
 * MAIN-BODY behaviour
 * ----------------------------------------------------------------------------
 */
.main-body {
	padding: 0px;
	/*margin-top: 180px;*/ /* Allow space for fixed HEADER */
	/*margin-bottom: 100px;*/ /* Allow space for fixed FOOTER */
}
/* This ensures that the main blocks in the MAIN-BODY are kept together */
.main-body::after {
	content: "";
	clear: both;
	display: table;
}
/* Allow for responsive re-sizing */
@media (max-width : 1000px) {
	nav,
	aside,
	article {
		width: 100%;
	}
}

/* 
 * ----------------------------------------------------------------------------
 * GENERAL element behaviour
 * ----------------------------------------------------------------------------
 */
h1 {
	color: gold;
	font-family: Helvetica, Arial, sans-serif;
	text-shadow: 3px 3px black;
	font-variant: small-caps;
	text-align: center;
	font-size: 1.8em;
}
h2,
h3,
h4 {
	color: maroon;
	font-family: Helvetica, Arial, sans-serif;
}
h5,
h6 {
	color: maroon;
	font-family: Helvetica, Arial, sans-serif;
	margin-top: 5px;
	margin-bottom: 5px;
}
address {
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 80%
}
/* Second level display list */
dd dl {
	display: inline;
}
dd dl dt {
	display:block;
}
/*
 * ------------------------------------------------------------------------------------------------
 * Background and foreground colour classes
 * ------------------------------------------------------------------------------------------------
 */
ins,
.Changed {
	color: #436545; /* Olive green */
	font-weight: bold;
}
del {
	color: red;
	text-decoration: line-through;
}

.Checked {
	background-color: #80ff00; /* Light Green */
}
.Heading {
  font-size:large;
	background-color: silver; /* Silver */
	text-align: center;
}
tr.Heading th {
	height:50px;	
}
.Figure, .Centre {
	text-align: center;
}
.New {
	color: #436545; /* Olive green */
}

.Note {
	color: #436545; /* Olive green */
}
.OliveGreen {
	background-color: #436545; /* Olive green */
}
.Ottley {
	/*background-color: #80ff00;*/ /* Light Green */
}
.OttleyChecked {
	/*background-color: #FFCCCC;*/ /* Pink */
}
.SubHeading {
	background-color: #DD9B15; /* YellowOchre */
	text-align: center;
	color: gold;
	text-shadow: 1px 1px black;
	font-family: Helvetica, Arial, sans-serif;
}
.Unchecked {
	background-color: #FFCCCC; /* Pink */
}
.Updated {
	color: #436545; /* Olive green */
}
p.Updated {
	text-align: center;
	font-size: 80%;
}
p.Updated:before {
	content: "Updated: ";	
}
.YellowOchre {
	background-color: #DD9B15; /* YellowOchre */
}
.right {
	float:right;
}
.Sharman {
  background-color: #FFFF99;
}
.Bradley {
  background-color: #00CC33;
}
.Empty {
  text-align: center;
  background-color: #CCCCCC ;
}
.Unknown {
  color: red ;
  background-color: #FFCC99 ;
}
.Notice {
  font-family: Helvetica, Arial, sans-serif;
	font-size: 80%
}
.Disclaimer {
	background-color:maroon;
	color: gold;
	padding: 7px;
	width:100%;
	margin:auto;
	text-align:center;
}
.Source {
	color: #436545; /* Olive green */
	font-size: 80%	
}
.Source:before {
	content: "Source: ";
}
.fraction{
	font-size:small;
}
/*
 * ------------------------------------------------------------------------------------------------
 * TABLE settings
 * ------------------------------------------------------------------------------------------------
 */
th {
	font-family: Helvetica, Arial, sans-serif;	
	min-width: 20%;
}
table.simpletable {
	border-collapse: collapse;
	border: solid blue 1px;
}
table.simpletable td {
	padding: 5px;
	margin: 0px;
}
table.simpletable th {
	padding: 5px;
	margin: 0px;
}
table.Models .Status {
	width: 10%;
}
table.Models .Item {
	width: 25%;
}
table.Models .Maker {
	width: 25%;
}
table.Models .Details {
	width: 40%;
}
table.Models {
	border-collapse: collapse;
	border: solid blue 1px;
	padding: 0px;
	margin: 0px;
}
table.Models tr {
	padding: 10px;
	margin: 10px;
}
table.Models td,
table.Models th {
	border: solid blue 1px;
	padding: 2px;
	margin: 1px;
}

table.Book td:first-child {
	text-align: right;
}

/* Jeoffry Spence Award table settings */
.AwardHeader {
	vertical-align: top;
	text-align: left;
}
.AwardDate {
	width: 4em;
	vertical-align: top;
	text-align: left;
	border-top: solid 1px black;
}
.AwardName {
	width: 10em;
	vertical-align: top;
	text-align: left;
	border-top: solid 1px black;
}
.AwardContribution {
	text-align: left;
	border-top: solid 1px black;
}
.Award {

}
.officers {
	text-align: center;
	width: 50%;
}
/*
 * ------------------------------------------------------------------------------------------------
 * LINK settings
 * ------------------------------------------------------------------------------------------------
 */
/* Mouse-overs for &lt;span class="checked"&gt; inside links */
a {
	position: relative;
	display: inline-block;
}
a .checked {
	visibility: hidden;
	width: 160px;
	background-color: #B4B2B2; /* Light grey */
	color: #F4F5F2;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	text-shadow: none;
	position: absolute;
	z-index: 1;
}
.checked:before {
	content: "External link: Checked ";
}
/* Mouse-overs for &lt;span class="todo"&gt; inside links */
a .todo {
	visibility: hidden;
	width: 100px;
	background-color: #B4B2B2; /* Light grey */
	color: #F4F5F2;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	text-shadow: none;
	position: absolute;
	z-index: 1;
}
.todo:before {
	content: "Still To Do ";
}
@media Screen
{
	a:hover {
		background-color: #DD9B15; /* YellowOchre */
		text-shadow: 1px 1px black;
		color: gold;
		text-decoration: none;
	}
	a:hover .checked {
		visibility: visible;
		width: 160px;
		bottom: 100%;
		left: 50%;
		margin-left: -80px; /* Use half of the width, to center the tooltip */
		margin-bottom: 3px;
	}
	a:hover .todo {
		visibility: visible;
		width: 100px;
		bottom: 100%;
		left: 50%;
		margin-left: -50px; /* Use half of the width, to center the tooltip */
		margin-bottom: 3px;
	}
}

/*
 * ------------------------------------------------------------------------------------------------
 * Annotations to pop up additional text when hovering over some block elements
 * ------------------------------------------------------------------------------------------------
 */
.annotation {
    position: relative;
    /*display: inline-block;*/
    /* border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.annotation .annotationtext {
    visibility: hidden;
    max-width: 400px;
    background-color: #DD9B15; /* YellowOchre */
    color: #fff;
    text-align: left;
    padding: 5px;
    /*border-radius: 6px;*/
 
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.annotation:hover .annotationtext {
    visibility: visible;
}

/* ========================================================================= */
</pre></body></html>