html {
	box-sizing: border-box;
	font-size: 18px;
	font-family: Fira Sans, Arial, sans-serif;
	font-weight: 300;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
	background-color: #ffffff;
	color: #373f4c;
	padding: 0px;
	margin: 0px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	padding: 0px 3%;
	width: 100%;
	background-color: #f2f5f6;
	flex: 0;
}

header h1 img {
	height: 2em;
	vertical-align: middle;
	margin-right: 0.5em;
}

header h1 a:hover {
	text-decoration: none;
}

div.content {
	max-width: 60rem;
	margin: 0px auto;
}

header div.content {
	padding: 0.5em 0px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-bottom: 1px solid #949aa0;
}

h1, h2, h3 {
	font-weight: 200;
	color: #1d5d6f;
	padding: 0.2em 0px;
	margin: 0px 0px 0.5em 0px;
}

h1 {
	font-size: 200%;
}

h2 {
	font-size: 200%;
}

h3 {
	font-size: 150%;
}

b {
	font-weight: 600;
}

header h1 {
	margin: 0px 1em 0px 0px;
	flex: 1;
	flex-basis: content;
	flex-shrink: 1;
}

header form.login {
	flex-shrink: 3;
	margin: 0.5em 0px;
	font-size: 80%;
	text-align: right;
}

header form.login input {
	max-width: 8em;
}

a.forgot:link, a.forgot:visited, a.forgot:hover, a.forgot:active  {
	display: inline-block;
	width: 20px;
	position: relative;
	left: -21px;
	top: 1px;
	margin-right: -20px;
	z-index: 99;
	color: #ffffff;
	background-color: #949aa0;
	text-align: center;
	padding: 0.2em 0px;
	border-top-right-radius: 0.1em;
	border-bottom-right-radius: 0.1em;
	font-weight: bold;
}

a:link, a:visited, a:hover, a:active {
	text-decoration: none;
	color: #237cb5;
}

a:hover, a:active {
	text-decoration: underline;
}

header a:link, header a:visited, header a:hover, header a:active {
	color: inherit;
}

nav.menu {
	text-align: right;
	margin: 1em 0px 0px 0px;
	font-size: 130%;
}

nav.menu a {
	margin-left: 1em;
	color: #1d5d6f;
}

nav.menu a:first-child {
	margin-left: 0px;
}

main {
	flex: 1;
}

section {
	background-color: #ffffff;
	padding: 0.5em 3%;
}

section.grey {
	background-color: #f2f5f6;
}

div.flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: stretch;
	gap: 2em;
}

div.col {
	flex-basis: 20em;
	flex-grow: 1;
	flex-shrink: 1;
}

input[type=text], input[type=password], textarea {
	padding: 0.2em 0.5em;
	appearance: none;
	border-radius: 0.2em;
	border: 1px solid #949aa0;
	font-family: inherit;
	font-size: inherit;
	color: #373f4c;
	vertical-align: middle;
}

div.search {
	padding: 1em 2px 1em 2px;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	margin-right: -2px;
}

div.search input {
	width: 100%;
	padding: 0.2em 0.5em;
	appearance: none;
	border-radius: 0.2em;
	border: 2px solid #949aa0;
	font-size: 150%;
	font-family: inherit;
	color: #373f4c;
}

.searchbutton {
	position: relative;
	top: 0.05em;
	left: -1.65em;
	z-index: 10;
	font-size: 150%;
	cursor: pointer;
}

div.search .fa-solid {
	xxcolor: #666666;
	color: #ffffff;
	background-color: #1d5d6f;
	padding: 0.35em;
	border-top-right-radius: 0.2em;
	border-bottom-right-radius: 0.2em;
}

div.search p {
	margin: 2em 0px 1em 0px;
}


button, .button {
	color: #ffffff;
	background-color: #1d5d6f;
	border: 1px solid #1d5d6f;
	padding: 0.2em 0.5em;
	cursor: pointer;
	font-size: inherit;
	font-weight: 600;
	display: inline-block;
	vertical-align: middle;
}

a.button:hover {
	text-decoration: none;
}

a.button:link, a.button:visited {
	color: #ffffff;
}

button.blue, .button.blue {
	background-color: #0167b8;
	xxxbackground-color: #018bb8;
	border-color: #0167b8;
}

button.mustard, a.button.mustard {
	xxxxxbackground-color: #f7b74b;
	background-color: #ca963d;
	border-color: #ca963d;
	xxxcolor: #373f4c;
}

iframe {
	width: 100%;
	overflow: hidden;
}

footer {
	padding: 2rem 3%;
	width: 100%;
	xxbackground-color: #541a87;
	background-color: #373f4c;
	color: #ffffff;
	xxbackground-color: #f2f5f6;
	text-align: right;
	flex: 0;
}

footer div.content {
	font-size: 80%;
}

footer a:link, footer a:visited, footer a:hover, footer a:active {
	color: inherit;
}

ol li {
	margin-bottom: 1em;
}

ul.standards {
	list-style-type: none;
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: stretch;
	gap: 1em;
}

ul.standards li {
	flex: 1;
	min-width: 8em;
	padding: 0.5em;
	text-align: center;
	border: 1px solid #333333;
	border-radius: 0.5em;
	box-shadow: 5px 5px 10px #dddddd;
}

.scon {
	border: none;
	width: 100%;
}

.max30 {
	max-width: 30em;
}

ul.form {
	display: inline-block;
	width: 30rem;
	margin: 0px auto 2em auto;
	padding-left: 12em;
	text-align: left;
	list-style-type: none;
	min-height: 8rem;
}

ul.form li {
	position: relative;
	padding: 0.1em 0px;
	white-space: nowrap;
}

ul.form label {
	position: absolute;
	right: 100%;
	padding-right: 1em;
	top: 0.2em;
	width: auto;
	text-align: right;
}

ul.form label.static {
	position: static
}

ul.form span.value {
	top: 0.2em;
	font-weight: 600;
}


ul.form input, ul.form textarea, ul.form select, select {
	width: 100%;
	padding: 0.2em 0.5em;
	appearance: none;
	border-radius: 0.2em;
	border: 1px solid #666666;
	font-size: inherit;
	color: #333333;
	font-family: inherit;
}

ul.form select {
	appearance: auto;
	padding: 0px;
}

select {
	appearance: auto;
	background-color: #ffffff;
	width: auto;
}

ul.form input[type=checkbox] {
	width: auto;
	padding: auto;
	appearance: checkbox;
	border-radius: initial;
	vertical-align: top;
}

ul.proplist li {
	margin-bottom: 1em;
}

.form_buttons {
	padding-left: 12em;
}

span.req {
	display: inline-block;
	color: #FF0000;
	margin-right: 0.2em;
}

ul.display {
	display: inline-block;
	width: 100%;
	margin: 0px auto 2em auto;
	padding-left: 12em;
	text-align: left;
	list-style-type: none;
}

ul.display li {
	position: relative;
	padding: 0.1em 0px;
}

ul.display label {
	position: absolute;
	right: 100%;
	padding-right: 1em;
	width: auto;
	text-align: right;
}

@media
only screen and (max-width: 40rem)  {

	header h1 {
		text-align: center;
	}

}

@media
only screen and (max-width: 36rem)  {

	ul.form {
		padding-left: 0px;
		width: 100%;
	}

	ul.form label {
		position: relative;
		display: inline-block;
		width: auto;
		right: auto;
		text-align: left;
		margin-bottom: 0.3em;
	}

	ul.form input, ul.form textarea {
		display: block;
	}

	ul.form span.value {
		display: block;
	}

	span.req {
		float: right;
	}

	div.form_buttons {
		padding-left: 0px;
	}

}

iframe.map, iframe.map_add {
	float: right;
	margin: -4rem 0px 1rem 0px;
	width: calc(100% - 30rem);
	height: 15rem;
	border: 1px solid #000000;
	background-color: #ffffff;
}

iframe.map_add {
	width: calc(100% - 33rem);
	height: 18rem;
}

@media
only screen and (max-width: 50rem)  {
	iframe.map, iframe.map_add {
		float: none;
		margin: 1rem 0px;
		width: 100%;
		height: 15rem;
	}
}

.greentick {
	height: 3em;
	vertical-align: middle;
	margin-right: 0.5em;
}

.redquestion {
	color: #009900;
	font-size: 200%;
	vertical-align: middle;
	margin-right: 0.5em;
}

.redquestion {
	color: #990000;
}

.bigbutton {
	float: right;
	margin: 0px 0px 0.5em 0.5em;
	font-size: 150%;
}

.rightbutton {
	float: right;
	margin: 0.5em 0px 0.5em 0.5em;
	max-width: 40%;
	text-align: center;
}

.fr {
	float: right;
}

/* messages */

ul.errors, ul.warnings, ul.messages {
	list-style-type: none;
	margin: 0.5em 0px;
	padding: 0.5em;
}

ul.errors {
	border: 1px solid #FF0000;
	color: #FF0000;
}

ul.warnings {
	border: 1px solid #CF8F00;
	color: #CF8F00;
}

ul.messages {
	border: 1px solid #00AF00;
	color: #00AF00;
}

.contactform {
	max-width: 30em;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5em;
	margin: 1em 0px;
}

.contactform input::placeholder {
  opacity: 1;
}
.contactform input:-moz-placeholder {
  opacity: 1;
}
.contactform input::-moz-placeholder {
  opacity: 1;
}
.contactform input:-ms-input-placeholder {
  opacity: 1;
}
.contactform input::-webkit-input-placeholder {
  opacity: 1;
}

.contactform input {
	min-width: 40%;
	flex-grow: 1;
}

.contactform textarea {
	width: 100%;
	height: 10em;
	flex-grow: 2;
}

.contactform input.text, .contactform textarea {
	padding: 0.5em;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
}

.contactform input[type=submit]{
	padding: 0.5em;
}

/* Services */

ul.servicelist {
	display: grid;
	list-style-type: none;
	padding: 0px;
	gap: 1em;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	margin: 1em 0px 2em 0px;
}

ul.servicelist li {
	border: 1px solid #eeeeee;
	border-radius: 0.5em;
	box-shadow: 5px 5px 10px #dddddd;
	padding: 1em;
}

ul.servicelist h4 {
	margin: 0px;
	display: inline;
}

ul.form textarea {
	resize: none;
	height: 3em;
}

.servdesc {
	font-style: italic;
	margin-top: 0.2em;
}

@media
only screen and (max-width: 56rem)  {
	ul.servicelist {
		grid-template-columns: 1fr 1fr;
	}
}

@media
only screen and (max-width: 36rem)  {
	ul.servicelist {
		grid-template-columns: 1fr;
	}
}

/* admin */

nav.tabs {
	border-bottom: 1px solid #dddddd;
	position: relative;
	margin: 1em 0px;
	padding: 0px 0.5em;
}

nav.tabs h3 {
	position: relative;
	bottom: 0;
	display: inline-block;
	vertical-align: top;
	margin: 0 0.3em -1px 0.3em;
	padding: 0.2em 1em;
	background-color: #f2f5f6;
	border: 1px solid #dddddd;
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
	zoom: 1;
	cursor: pointer;
	*display: inline;
}

nav.tabs h3.sel {
	border-bottom: 1px solid #ffffff;
	background-color: #ffffff;
}

.b_approve, .b_unapprove {
	background-color: #009933;
	border-color: #009933;
	margin-right: 0.5em;
	font-size: 80%;
	float: right;
}

.b_delete {
	background-color: #cc3333;
	border-color: #cc3333;
	font-size: 80%;
	float: right;
}

.b_unapprove {
	background-color: #ca963d;
	border-color: #ca963d;
}

table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 2em;
}

th {
	white-space: nowrap;
}

th, td {
	padding: 0.5em 0.5em;
	text-align: left;
	margin: 0px;
}

tbody.singlerow tr {
	border-top: 1px solid #dddddd;
}

tbody.singlerow tr:nth-child(odd), tbody.singlerow tr:nth-child(odd) td {
	background-color: #fafcfc;
}

tbody.doublerow tr:nth-child(odd) {
	border-top: 1px solid #dddddd;
}

tbody.doublerow tr:nth-child(4n - 3), tbody.doublerow tr:nth-child(4n - 3) td,
tbody.doublerow tr:nth-child(4n - 2), tbody.doublerow tr:nth-child(4n - 2) td {
	background-color: #fafcfc;
}

tbody.doublerow tr:nth-child(even) td {
	padding-top: 0px;
}

p.hoverholder {
	display: inline-block;
	position: relative;
}

span.onhover {
	display: none;
	position: absolute;
	top: 110%;
	left: 30%;
	z-index: 99;
	border: 1px solid #373f4c;
	padding: 0.5em;
	width: 25em;
	max-width: 70%;
	background-color: #f2f5f6;
}

/* fonts */

@font-face{
	font-family: 'Fira Sans';
	font-weight: 300;
	src: url('fonts/FiraSans-Light.ttf') format('truetype');
}

@font-face{
	font-family: 'Fira Sans';
	font-weight: 300;
	font-style: italic;
	src: url('fonts/FiraSans-LightItalic.ttf') format('truetype');
}

@font-face{
	font-family: 'Fira Sans';
	font-weight: 100;
	src: url('fonts/FiraSans-Thin.ttf') format('truetype');
}

@font-face{
	font-family: 'Fira Sans';
	font-weight: 200;
	src: url('fonts/FiraSans-ExtraLight.ttf') format('truetype');
}

@font-face{
	font-family: 'Fira Sans';
	font-weight: 600;
	src: url('fonts/FiraSans-SemiBold.ttf') format('truetype');
}