
:root {
	--headerFontColor:#06709e;
	--subheaderFontColor:#fa3000;
	--mainBackColor: #8cf0be; /*light green*/
	--mainFontColor: black;
	--mainBorderColor: silver;
	--menuColor: #5ce594;
	--menuHoverColor: #00b449;
	--menuFontColor: black;
	--subMenuColor: #5fb7dd;
	--subMenuHoverColor: #06709e;
	--subMenuFontColor: black;	
	--subMenuHoverFontColor:white;
	--gotoTopButtonColor :#64aad0;	
	--figureBorderColor: silver;
	--lightMenuColor: #d7edf6
}

.animateFadeIn {
  visibility: visible;
  animation:fadeIn 2s}@keyframes fadeIn{0%{opacity:0}100%{opacity:1};
}
.animateFadeOut {
  visibility: hidden;
  transition:visibility 0s 2s;
  animation:fadeOut 2s}@keyframes fadeOut{0%{opacity:1}100%{opacity:0};
}

.animateFadeBoth {
  visibility:visible;
  animation:fadeBoth 10.2s}@keyframes fadeBoth{0%{opacity:0}20%{opacity:1}80%{opacity:1}100%{opacity:0};
}

.carouselCaption{
	font-size:0.8em;
	font-style:italic;
	text-align: center;
	margin-top:-.2em;
}

.scroll-left {
 height:2em;
 overflow: hidden;
 position: relative;
 background: white;
 color: var(--headerFontColor);
 border: var(--mainBackColor);
}

.scroll-left p {
 position: absolute;
 width: 150%;
 height: 100%;
 margin: 0;
 font-size:1.3em;
 line-height: 2em;
 text-align: center;
 /* Starting position */
 transform:translateX(100%);
 /* Apply animation to this element */	
 animation: scroll-left 20s linear infinite;
}
/* Move it (define the animation) */
@keyframes scroll-left {
 0%   { 
 transform: translateX(100%); 		
 }
 100% { 
 transform: translateX(-100%); 
 }
}

body {
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--mainFontColor);
	background-color:var(--mainBackColor);
	min-width:320px;
	margin-bottom:35px;
}

p, li{
	font-size:0.9em;
	margin-left:2em;
	margin-right:2em;
}

video {
	margin-left:2em;
}


figure.figurefloatleft {
	display:block;
	float:left;
	text-align:center;
	font-style:italic;
	font-size:smaller;
	text-indent:0;
	line-height:1;
	border:thin solid;
	border-color:var(--figureBorderColor);
	margin:0.5em;
	max-width:600px;
	min-width:300px;
}
img.figureimage{
	max-width:100%;
    height: auto;
}

figure.figurecentre {
	display:block;
	float:none;
	text-align:center;
	font-style:italic;
	font-size:smaller;
	text-indent:0;
	line-height:1;
	border:thin solid;
	border-color:var(--figureBorderColor);
	margin:0.5em;
	max-width:1200px;
}

img.figurefullimage{
	height:auto;
	width:auto;
	max-width:100%;
	max-height:100%;
	margin-left:auto;
	margin-right:auto;
}

/* for use in single column */
img.fullimage{
	display:block;
	margin-left:Auto;
	margin-right:Auto;
	max-Width:100%;
}

img.floatleft {
	display:block;
	float:left;
	margin-top:15px;
	margin-right:20px;
	max-width:400px;
	max-height:400px;
}
img.floatright {
	display:block;
	float:right;
	margin-top:15px;
	margin-left:20px;
	max-width:400px;
	max-height:400px;
}
img.floatcentre {
    display:block;
    margin-left: auto;
    margin-right: auto;
    max-width:100%;
}


/*for use in 2 columns*/
img.lefthalfimage{
	max-width:400px;
	max-height:400px;
}

img.righthalfimage{
	max-width:350px;
	max-height:350px;
}

a.blocklink{
	display:block;
	float:left;
	margin-top:5px;
	margin-right:10px;
	padding-left:5px;
	padding-right:5px;
	text-decoration: none;
	color: var(--menuFontColor);
	background-color: #37DB79;
}
a.blocklink:hover {
	background-color: var(--menuHoverColor);
	color: var(--menuHoverFontColor);
}
a.indexblock{
	display:block;
	float:left;
	margin-top:5px;
	margin-right:10px;
	padding-left:5px;
	padding-right:5px;
	text-decoration: none;
	color: var(--menuFontColor);
	background-color: var(--subMenuColor);
}

a.commandlink{
	display:block;
	float:left;
	margin-left:20px;
	margin-top:5px;
	margin-right:10px;
	margin-bottom:10px;
	padding-left:5px;
	padding-right:5px;

	text-decoration: none;
	color: var(--menuFontColor);
	background-color:#85a1ee;
}

hr {
    border: 0.1em solid lightgray;
}


em {
	font-weight:bold;
	font-style:normal;
}

h1 {
	font-size:1.5em;
	color:var(--headerFontColor);
	text-align:center;
	margin-top:0.8em;
	margin-bottom:0.5em;
}
h2 {
	font-size:1.2em;
	color:var(--headerFontColor);
	text-align:center;
	margin-top:0.3em;
	margin-bottom:0.4em;
}
h3 {
	font-size:1.0em;
	color:var(--headerFontColor);	
	text-align:center;
	margin-top:0.3em;
	margin-bottom:0.2em;
    margin-left:0.5em;
    margin-right:0.5em;
}
h3.leftside {
	font-size:1.0em;
	color:var(--headerFontColor);	
	text-align:left;
	margin-left:2em;
	margin-top:0.3em;
	margin-bottom:0.2em;
}

li {
	background-repeat: no-repeat;
	background-position: 0px 5px;
	padding-left: 0px;
	list-style:none;
}

div.outercon {
	position:relative;
	width: 100%;
	margin: 1px auto;
	border-width: 1px;
	border-style: solid;
	border-color: #007730;
	line-height: 150%;
	min-width: 320px;
	max-width: 1200px;
	background-color:#ffffff;
}

div.header {
	position:relative;
	padding: 0.0em;
	height: 50px;
	clear: left;
	background-image: url('../images/logo.jpg');
	background-position:left center ;
	background-repeat:no-repeat;
	margin-bottom:5px;

}

div.headerlogo{
	position:absolute;
	top:4px;
	left:4px;
}

div.headertext{
	position:relative;
	text-align:center;
	font-size:2.5em;
	color:var(--headerFontColor);
	margin-top:-0.8em;
	margin-bottom:-0.9em;
	line-height:1em;
	z-index:1;

}
div.headersubtext{
	position:relative;
	text-align:center;
	font-size:1em;
	font-weight:normal;
	line-height:1.0em;
	color:var(--subheaderFontColor);
}
table {
	font-family:sans-serif;
	font-size:0.8em;
	border-collapse:collapse;
	width:auto;
	margin:2em;

}


/* tables */
td,th{
	border:1px solid silver;
	text-align:left;
	padding:0.4em;	
	margin:2em;
    vertical-align: top;    
}

th{
	font-weight:bold;
}


#header-image {
	position: absolute; 
	top: 0px;  
	margin-top:0px;
	width: 100%; 
	background-color: transparent;
	text-decoration: none;
	text-align:center;
	font-size:2.5em;
	outline: 0; 
	color:#007730;
}

#carparktime {
	position:abolute;
	margin-top:5px;
	text-align:center;
	color:#007730;
}

div.subheader, div.subfooter {
	padding: 0px;
	height: 32px;
	font-size: 90%;
	border-width: 1px;
	border-style: solid;
	border-color: #FFF;
}

/* top menu bar section */
/* format main menu bar */
div.menubar {
	clear: both;
	height: auto;
	padding-top: 1px;
	padding-left:0px;
}

/* format menu button */
div.menubutton {
	margin: 0px 3px 0px 0px;
	padding: 0px 0px 0px 0px;
	float: left;
	position: relative;
	background-color:var(--menuColor);
	width:110px;
}

div.menubutton a:active, div.menubutton a:hover {
	color:var(--menuHoverFontColor);
	background-color:(--menuHoverColor);
}

/* links in main menu bar */
div.menubar a {
	font-weight:normal; 
	color:var(--menuFontColor);
	text-decoration: none;
	display: block;
	padding: 4px 6px;
}

/* Highlight element in submenu */
div.submenubutton a:hover {
	background:var(--subMenuHoverColor);
	color:var(--subMenuHoverFontColor);
}

/* dropdown when hovering */
div.menubar div.menubutton:hover > div.submenu{
	display: block;
	background:var(--subMenuColor);
	z-index:100;
}

/* drop down list */
div.menubar div.submenu {
	display:none;
	margin: 0px;
	padding: 4px 0px;
	width: 110px;
	position: absolute;
	top: 32px;
	left: 0px;	
}


div.innercon {
	float:none;
	padding:0px;
	height:auto;
	margin-bottom:0px;
	margin-left:0px;
	margin-right:0px;
	background-color: #fff;
}


div.leftside{
	display:block;
	float:left;
    width:50%;
	margin-right:0px;
}

div.rightside{
	display:block;
	float:right;
  	width:50%;
	padding-left:0px;
}

div.rightsidealignright{
	display:block;
	float:right;
	text-align:right;
  	width:50%;
	padding-left:0px;
}


div.fullwidth{
	display:block;
}

p.notetext{
	font-size:0.8em;
}

p.centred{
	text-align:center;
}

div.footer {
	clear: both;
	text-align: center;
	font-weight: bold;
	margin: 0px;
	padding: 1px;
	color: #007730;
	height:27px;
	line-height: 10%;
	background-color:#63db93;;
}

div.cleardiv{
	clear:both;
}

hr.dotted{
	border-top: 3px dashed #fa3000;
	border-bottom: 3px dashed #fa3000;
}


#gototopbutton {
	width: 90px;
	background-color:var(--gotoTopButtonColor);
	margin: 2px 3px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-decoration: none;
	padding: 6px 12px;
	position:fixed;
	bottom:0px;
	right:20px;
	height:20px;
	display:none;
	font-size:0.8em;
}

form {
	position:relative;
	font-size: 0.9em;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	margin-bottom: 0.5em;
	width:100%;
	max-width:600px;
}


div.formline {
	position:relative;
	height:4em;
}



/*div.formline dt{
	position:absolute;
	top:2px;
}

div.formline dd{
	position:absolute;
	left:120px;
	top:2px;
}
*/

.linkdropbtn {
	background-color: var(--subMenuColor);
	color: var(--subMenuFontColor);
	padding: 4px;
	font-size: 1em;
	border: none;
	cursor: pointer;
	min-width: 180px;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .linkdropdown {
	position: relative;
	display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .linkdropdown-content {
	display: none;
	position: absolute;
	background-color: var(--lightMenuColor);
	min-width: 180px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	overflow-y: auto;
	max-height:500px;
  }
  
  /* Links inside the dropdown */
  .linkdropdown-content a {
	color: black;
	padding: 6px 8px;
	text-decoration: none;
	display: block;
  }
  
  /* Change color of dropdown links on hover */
  .linkdropdown-content a:hover {background-color: var(--subMenuColor)}
  
  /* Show the dropdown menu on hover */
  .linkdropdown:hover .linkdropdown-content {
	display: block;
  }
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .linkdropdown:hover .linkdropbtn {
	background-color: var(--subMenuHoverColor);
	color: var(--subMenuHoverFontColor);	
  }

input[type=text] {
	width:95%;
	display:inline-block;
	margin-top:4px;
  }

div.special {
	text-align:center;
	border: 2px solid #000;
	font-size: 1.3em;
}

input {
	width:305px;
	display:block;
	border: 1px solid #bbb;
	height:20px;
	font-size:0.9em;
	font-family:Arial, Helvetica, sans-serif;
}

select {
	height:25px;
	width:150px;
	font-size:0.9em;
	font-family:Arial, Helvetica, sans-serif;
	color:#000;
}

textarea#description {
	height:150px;
	width:95%;
}

input#submitbutton, input#resetbutton {
	width:150px;
	background:#FFF;
}

input#submitbutton:hover {
	background:#d71920;
	color:#FFF;
}

textarea {
	font-size: 0.9em;
	font-family: Arial, Helvetica, sans-serif;
	border: 1px solid #bbb;
}

textarea:focus, input:focus {
	border: 1px solid #50a5dc;
}

img.thumb
{
	border-style:none;
	-webkit-box-shadow: 1px 2px 4px #444;
	-moz-box-shadow: 1px 2px 4px #444;
	box-shadow: 1px 2px 4px #444;		
}

.gallery
{
/*	position:relative;
	width:800px;
	height:950px;*/
	clear:both;
	margin:1px;
	margin-bottom:8px;
	font-size:90%;
	overflow:auto;
}

.gallery ul
{
	list-style-type:none;
	margin-top:20px;
	margin-right:10px;
}

.gallery li
{
	float:left;
	width:150px;	
}

.gallery a
{
	display:block;
	padding:5px 5px;
	text-decoration:none;
	width:130px;
	height:100px;
	cursor:pointer;
}

.gallery a img.thumb
{
	border-style:none;
	-webkit-box-shadow: 1px 2px 4px #444;
	-moz-box-shadow: 1px 2px 4px #444;
	box-shadow: 1px 2px 4px #444;		
}

@media screen and (max-width: 700px) {
div.headertext{
	font-size:2.2em;
}
video {
    width:480px;
    height:270px ;
  }
}


@media screen and (max-width: 600px) {
  img.lefthalfimage{
	  max-width:240px;
	  max-height:240px;
  }
  
  img.righthalfimage{
	  max-width:240px;
	  max-height:240px;
  }

  video {
    width:320px;
    height:180px ;
  }
  
  img.floatleft, img.floatright{
	  max-width:300px;
  }
/*  figure.figurefloatleft{
	  max-width:250px;
  }*/
   div.leftside{
	 display:block;
	 float:left;
	 width:100%;
  } 
  
   div.rightside{
	display:block;
	float:left;
	width:100%;
   }
   
   figure.figurefloatleft {
	display:block;
	float:none;
	text-align:center;
	font-style:italic;
	font-size:smaller;
	text-indent:0;
	line-height:1;
	border:thin solid;
	border-color:var(--figureBorderColor);
	margin:0.5em;
	max-width:600px;
}

.carouselCaption{
	font-size:0.5em;
	font-style:italic;
	text-align: center;
	margin-top:-.2em;
}

div.footer {
	font-size:0.8em;
}


div.headerlogo {
	visibility:hidden;
}

}
