<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Brand colours:
Caterpillar green   #3c5f13
Lime green   		#b0bc22
*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;800&amp;family=Sorts+Mill+Goudy:ital@0;1&amp;display=swap');
* { box-sizing: border-box; }
html { height: 100%; }
/*html, body { overflow-x: hidden; }*/
body {
	font-family: 'Raleway', sans-serif;
	font-size: 1.2em;
	min-height: 100%;
	position: relative;
	overflow-x: hidden;
}
html.scroll-lock,
body.scroll-lock {
	overflow-y: hidden;
}
html.scroll-lock body::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,.6);
    z-index: 1;
}
#sitehead {
	position: fixed; /* MOBILE */
	background-color: white;
	display: flex;
	justify-content: space-between;
	width: 100%;
	z-index: 999;
}
#sitehead.scrolled,
#sitehead.scrolled #logo svg {
	height: 60px;
}
#menubtn {
	display: flex;
	cursor: pointer;
}
#menubtn:active {
	background-color: #b0bc22;
} 
#menubtn svg {
	margin: 0 15px 0 10px;
	width: 50px;
	min-width: 50px;
	fill: #3c5f13;
}
#contactinfo {
	display: none; /* MOBILE */
	position: fixed; /* MOBILE */
	background-color: white; /* MOBILE */
	border-radius: 10px; /* MOBILE */
	margin: 10px; /* MOBILE */
	padding: 10px; /* MOBILE */
	top: 70px; /* MOBILE */
	width: 92.5%; /* MOBILE */
	box-shadow: 0px 0px 30px black; /* MOBILE */
}
#contactinfo a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	margin-bottom: 20px; /* MOBILE */
}
#contactinfo svg,
#contactinfo img {
	margin-right: 10px;
	width: 40px;
	min-width: 40px;
	fill: #3c5f13;
}
#mobile-hide-contactinfo,
#cta-contact-hidepopup {
	display: flex;
	justify-content: center;
	background-color: #999;
	border-radius: 10px;
	margin-bottom: 0;
	padding: 10px 30px;
	font-weight: 600;
	text-decoration: none;
	color: white !important;
}
#logo {
	max-width: 70%;
}
#sitehead, #logo svg {
	height: 100px; /* MOBILE */
}
/* COVID-19 message (temporary... hopefully!) */
#covid19-msg {
	background-color: darkred;
	text-align: center;
	font-weight: bold;
	color: white;
	padding-top: 100px; /* MOBILE - move back to main if covid message removed */
	width: 100%;
	z-index: 998;
}
#covid19-msg p {
	margin: 0;
	padding: 20px;
}
#covid19-msg a {
	white-space: nowrap;
	color: inherit;
}

#mainmenu {
	display: none; /* MOBILE */
	position: fixed; /* MOBILE */
	top: 60px; /* MOBILE */
	width: 100%; /* MOBILE */
	height: 100vh; /* MOBILE */
	/*background-color: rgba(0,0,0,.8);*/
	z-index: 99;
}
#mainmenu.show {
	display: block;
}
#mainmenu ul {
	display: flex; /* MOBILE - tiles version */
	flex-wrap: wrap; /* MOBILE - tiles version */
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#mainmenu ul li {
	width: calc(100% / 3); /* MOBILE - tiles version (3 columns) */
}
#mainmenu ul li a {
	display: flex;
	flex-direction: column;  /* MOBILE - tiles version */
	justify-content: center;  /* MOBILE - tiles version */
	align-items: center;
	width: 100%; /* MOBILE */
	/*height: calc((100vh - 60px) / 11);*/ /* MOBILE - list version h formula: (viewport h - site header h) / # of (mobile) menu items */
	height: calc(100vw / 3); /* MOBILE - tiles version (square tiles) */
	max-height: calc((100vh - 60px) / 4); /* MOBILE - tiles version (4 rows) */
	text-align: center; /* MOBILE - tiles version */
	text-decoration: none;
	font-weight: bold;
	color: white;
}
#mainmenu ul li a.urhere {
	background-color: white !important;
	color: #999;
}
#mainmenu ul li a svg {
	margin: 0 15px;
	width: 40px;
	min-width: 40px;
	fill: white;
}
#mainmenu ul li a.urhere svg {
	fill: #999;
}
#mainmenu #mobile-show-contactinfo a {
	font-weight: 600;
	color: #3c5f13;
}
#mainmenu #mobile-show-contactinfo a svg {
	fill: #3c5f13;
}

#sitehead, #sitehead *,
#mainmenu ul li a, #mainmenu ul li a svg {
	transition: all .5s;
}
#cta-contact {
	background-color: #3c5f13;
	padding: 40px 20px; /* MOBILE */
	font-size: 1.5em;
	font-weight: bolder;
	color: white;
}
#cta-contact p {
	margin: 0;
	text-align: center;
}
#cta-contact a:link,
#cta-contact a:visited {
	background-color: white;
	margin-left: 20px;
	padding: 10px 30px;
	border-radius: 5px;
	white-space: nowrap;
	text-decoration: none;
	color: #3c5f13;
	transition: all .5s;
}
#cta-contact a:hover,
#cta-contact a:active {
	background-color: #b0bc22;
	color: white;
}
main {
	display: block; /* for IE */
	/*padding-top: 100px;*/   /* ported to covid-19 message block */
}
main header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #CCC;
	background-size: cover;
	background-position: center;
	height: 200px;
	font-size: 0.6em; /* MOBILE */
	overflow: hidden;
}
main header::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,.4); /* rgba(60,95,19,0.6);*/
}
main header * {
	position: relative;
}
main header div {
	width: 660px;
	margin: 0 60px;
}
main header h1 {
	margin: 0;
	line-height: 0.9;
	font-family: 'Sorts Mill Goudy', serif;
	font-weight: normal;
	font-style: italic;
	font-size: 5em;
	text-align: center;
	color: white;
}
main section {
	padding: 20px; /* MOBILE */
}
main section h1 {
	margin-top: 0;
	font-size: 1.5em;
	font-weight: 600;
	color: #3c5f13;
}
main section h2 {
	font-size: 1.2em;
	font-weight: 600;
	color: #3c5f13;
}
main img {
	width: 100%;
	height: auto;
}
main strong {
	font-weight: 600;
}
main a:link,
main a:visited {
	color: #0f8088;
	text-decoration: none;
}
main a:hover,
main a:active {
	text-decoration: underline;
}
figure {
	margin: 0;
}
figure.pic {
	width: 100%;
	text-align: center;
}
figure.pic img {
	width: 80%;
	height: auto;
}
figure.pic img:nth-child(n+2) {
	margin-top: 3%;
}
figcaption {
	font-weight: 600;
	color: #3c5f13;
}
ul {
	list-style-type: circle;
}
footer {
	background-color: #534741;
	padding: 30px;
	text-align: center;
	color: white;
	overflow: hidden;
}
footer p:first-child {
	font-family: 'Sorts Mill Goudy', serif;
	font-style: italic;
	font-size: 1.3em;
}
footer a {
	color: inherit;
	text-decoration: none;
}
footer ul {
	padding-left: 0;
	list-style-type: none;
}
footer ul li a {
	display: block;
	padding: 10px 0;
}
#cta-contact-popup {
	display: none;
}
#scrolltotop {
	display: none;
	background-color: #b0bc22;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	position: fixed;
	bottom: 30px;
	right: 10px;
	opacity: 0.8;
}
#scrolltotop::before {
	content: "";
	display: block;
	width: inherit;
	height: inherit;
	background-color: white;
	-webkit-mask-image: url('../img/ico/top.svg');
	-webkit-mask-size: 50%;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
}
#sitecredit {
	font-size: 0.6em;
	letter-spacing: 0.2em;
	color: #a9a3a0;
}
#sitecredit a {
	text-decoration: underline;
	text-decoration-style: dotted;
}

@media only screen and (min-width: 960px) {
body {
	/*font-size: 1em;*/
}
#sitehead { position: static; }
#mainmenu { position: relative; }
#menubtn { display: none; }
#contactinfo {
	display: flex;
	flex-direction: column; /* narrow desktop */
	flex-wrap: wrap; /* narrow desktop */
	justify-content: center; /* narrow desktop */
	position: static;
	background-color: transparent;
	border-radius: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	box-shadow: none;
	overflow: hidden;
}
#contactinfo a {
	height: 60px; /* narrow desktop */
	margin-bottom: 0;
	font-size: 0.8em;
}
#mainmenu #mobile-show-contactinfo,
#sitehead #contactinfo #mobile-hide-contactinfo {
	display: none;
}
#sitehead, #logo svg {
	height: 150px;
}
#covid19-msg {
	padding-top: 0;
}
#mainmenu {
	display: block;
	float: left;
	width: auto;
	height: auto;
	top: auto;
}
#mainmenu ul {
	display: block;
}
#mainmenu ul li {
	width: 100%;
}
#mainmenu ul li a {
	flex-direction: row;
	justify-content: flex-start;
	width: 250px;
	height: 50px;
	max-height: none;
	text-align: left;
}
#mainmenu ul li a.hover,
#mainmenu ul li a.urhere {
	background-color: white !important;
	color: #3c5f13;
}
#mainmenu ul li a.hover svg,
#mainmenu ul li a.urhere svg {
	fill: #3c5f13;
}
#mainmenu::after { /* decorative wave in desktop menu - purely ornamental */
	content: "";
	display: block;
	width: 200px;
	height: 100px;
	position: absolute;
	top: 30px;
	left: 175px;
	background-image: url('../img/waves.svg');
	background-repeat: no-repeat;
	opacity: 0.2;
	pointer-events: none;
}
#cta-contact {
	display: flex;
	align-items: center;
	position: relative;
	padding: 75px;
}
#cta-contact p {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0; /* IE11 */
	left: -250px;
	width: 125%;
	height: 100%;
	background-color: #3c5f13;
}
#cta-contact-popup {
	position: fixed;
	top: 30vh;
	left: 0;
	z-index: 999;
	width: 100%;
	text-align: center;
}
#cta-contact-popup div {
	background-color: white;
	width: 300px;
	margin: 0 auto;
	padding: 10px 20px;
	border-radius: 20px;
}
#cta-contact-popup a {
	font-size: 0.8em;
	color: #0f8088;
}

main {
	padding-left: 250px;
	padding-top: 0;
	padding-bottom: 240px; /* match footer height */
}
main header {
	font-size: 0.8em;
}
main section {
	padding: 50px;
}
main p:first-child,
main ol:first-child,
main ul:first-child,
main h1:first-child,
main h2:first-child {
	margin-top: 0;
}
figure.pic {
	width: 50%;
}
figure.pic img {
	width: 100%;
}
figure.l {
	float: left;
	margin-right: 3%;
}
figure.r {
	float: right;
	margin-left: 3%;
}
footer {
	position:absolute;
	width: 100%;
	height: 240px; /* match above */
	bottom: 0;
}
footer p span:not(:last-child) {
	margin-right: 20px;
}
footer ul li {
	display: inline-block;
	margin-right: 20px;
}
footer ul li a {
	display: inline-block;
}

}
@media only screen and (min-width: 1160px) {
	#contactinfo {
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-around;
	}
	#contactinfo a {
		height: auto;
	}
	#contactinfo a:not(:first-child) {
		margin-left: 20px;
	}
	figure.pic {
		width: 30%;
	}
}
@media only screen and (max-width: 640px) {
	#cta-contact a {
		display: block;
		margin-left: 0 !important;
		margin-top: 20px;
	}
}

/* Perishable Clearfix: use on any parent with floating children */
.clearfix:after,
section:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix,
* html .row             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix,
*:first-child+html .row { zoom: 1; } /* IE7 */</pre></body></html>