/* Global Reset
   ------------ */
* {
	margin: 0;
	padding: 0;
}

/* Elements
   -------- */
body {
	font-family: Muli, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	color: #000;
	background-color: #DDD;
}
/* XXXXX removing all styling on image by default - do it via .pic div
img {
	max-width: 98%; /* Note: not 100% because we need to allow for the border *//*
	border: 1px solid #000;
}
*/
h1 {
	font-size: 1.6em;
	margin-bottom: 0.8em;
}
h2 {
	font-size: 1.6em;
	margin: 1em 0;
	padding-bottom: 0.7em;
	border-bottom: 2px solid #90A090;
}
h3 {
	font-size: 1.3em;
	margin: 1em 0;
	padding-bottom: 0.5em;
	/* border-bottom: 2px solid #90A090; */
}
p, li {
	font-size: 1.1em;
	line-height: 1.5em;
	margin-bottom: 1em;
	text-align: left;
}
blockquote {
	font-size: 1.1em;
	font-style: oblique;
	line-height: 1.5em;
	margin: 1em 1em 1em 1em;
	text-align: left;
}
ul {
	margin: 0 0 1em 1em;
}
li {
	margin-bottom: 0.2em;
	list-style-type: square;
}
a {
	color: #000;
	text-decoration: none;
	background-color: #DDD;
	padding: 0 5px;
}
a:hover {
	background-color: #BBB;
}
form {
	text-align: left;
}
fieldset {
	border: 0;
	margin-bottom: 1.5em;
}
label {
	display: block;
	font-size: 1em;
}
input, textarea, select {
	font-family: Muli, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
	width: 95%;
	margin-bottom: 0.7em;
	font-size: 1em;
	padding: 1px 4px;
	vertical-align: top;
	background-color: #FAFAFA;
}
input:focus, textarea:focus, select:focus {
	background-color: #EEE;
}
form #submit { /* Example of styling an individual form element */
	width: 11em;
	color: #000 !important; /* added as described in Kevin's email 15 July 2024 */
}
form #recycle {
	width: 11em;
}

/* Classes
   ------- */
   
.embed-container { 
	position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; 
} 
.embed-container iframe, .embed-container object, .embed-container embed { 
	position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
}

.pic {
	display: inline-block;
	margin: 0.5em 1.333333333333333% 0.5em 1.333333333333333%; /* 10/750 */
	vertical-align: middle;
	max-width: 97.33333333333333%; /* 730/750 */
	height: auto;
}
.fw-very-wide { /* Used on home page with .pic for embedded film */
	width: 500px;
}
.fw-wide { /* Used in conjuction with .pic - fixed width for landscape images */
	width: 300px;
}
.fw-tall { /* fixed width portrait */
	width: 225px;
}
.fw-icon-thumb { /* fixed width for icon thumbnails */
	width: 225px;
}
.fh-icon-thumb { /* fixed height for icon thumbnails - better? */
	height: 300px;
}
.float-left {
  float: none;
}
.float-right {
  float: none;
}
.float-clear {
  clear: none;
}
.pic img { /* style the image */
	border: 1px solid #000; /* XXX added here, removed from img above */
	max-width: 98%; /* Note: not 100% because we need to allow for the border */
}
.pic p { /* style picture caption text */
	font-size: 0.9em;
	line-height: 1.3em;
	text-align: center;
}
.pageLinks {
	margin-left: 12%; /* 90/750 */
	/* margin-right: 12%; didn't do what I wanted! ie. all lines same length */
}
.news {
	text-align: left;
	}
.error {
  color: #FF0000;
}
.smallPrint {
  font-size: 0.8em;
}

/* Page
   ---- */
#page {
	margin: 0 auto; /* Center Page */
	max-width: 1034px;
	border: 1px solid #CCC;
	background-color: #FFF;
}

/* Side Bar
   -------- */
#sideBar {
	margin-top: 1em;
	padding: 0 15px 0 10px;
	text-align: center;
}

/* Logo added
   ---- */
#logo {
  height: 115px;
	text-align: center;
	overflow: hidden;
	margin-bottom: 1em;
  position:relative;
}

#logo h1 {
  margin-bottom: 0;
}

#logo img {
	height: 70px;
  border: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

#logoText{
  text-align: center;
  position: absolute;
  top: 0;
  left: 1em;
}

/* Navigation
   ---------- */
#nav ul { /* Hide the menu by default */
	display: none;
	margin: 0;
}
#nav p { /* Menu button */
	font-size: 1.2em;
	margin-bottom: 0;
}
#nav ul.show { /* Show all menus/sub-menus with class 'show' */
	display: block;
}
#nav li {
	margin: 2px 0 0 0;
	border-top: 2px solid #CCC;
	text-align: left;
	list-style: none;
}
#nav a { /* Style Anchors */
	display: block;
	padding: 15px;
	font-size: 1.3em;
}

/* Gallery Navigation
   ------------------ */
#galleryNav {
	margin: 0.5em 0;
	padding: 0 15px 1em 10px;
	text-align: center;
}

/* Main
   ---- */
#main {
	margin: 0.5em 0;
	padding: 0 15px 1em 10px;
	text-align: center;
}

/* Footer
   ------ */
#footer {
	clear: both;
	margin: 5px 10px 5px 5px; /* Hard-code values here */
	padding: 0 1.450676982591876% 2px 1.450676982591876%; /* 15/1034 */
	background-color: #94d04d; /*was CCC */
}
#footer p {
	margin-bottom: 0;
	font-size: 0.9em;
	text-align: center;
}

#footer ul {
  padding-top: 0.5em;
  text-align: center;
}

#footer li {
    padding: 0 1em;
    list-style-type: none;
    padding-left: 1em;
}

#footer a {
	color: #333;
	text-decoration: underline;
	background-color: transparent;
	padding: 0 5px;
}
#footer a:hover {
	color: #000;
}

/* Media Queries
   ------------- */
@media only screen and (min-width: 720px) {
	label {
		display: inline-block;
		width: 30%;
		text-align: right;
	}
	input, textarea, select {
		display: inline-block;
		width: 45%;
	}
	#page { /* Total width = sideBar width (250) + main width (784) = 1034 */
		margin: 20px auto;
	}
	#sideBar { /* Total width = 220 + (2 * 15) = 250 */
		float: left;
		width: 21.27659574468085%; /* 220/1034 */
		padding: 0 1.450676982591876%; /* 15/1034 */
	}

	#sideBar p {
		font-size: 1em;
		padding-bottom: 0.7em;
		border-bottom: 2px solid #90A090;
	}
	#nav p { /* Hide Menu Toggle Button */
		display: none;
	}
	#nav > ul { /* Show top-level menus */
		display: block;
		text-align: left;
		/* added following xxx*/
		margin-top: 0.7em;
	}
	#nav > ul > li { /* Style top-level list items only */
		display: block;
		margin: 0 0 0.3em 0;
		border-top: 0;
	}
	#nav a {
		font-size: 0.9em;
		padding: 3px 7px;
		line-height: 1.2em;
	}
	#main { /* Total width = 750 + (2 * 15) + 2 = 784 */
		float: right;
		width: 72.53384912959381%; /* 750/1034 */
		padding: 0 1.450676982591876% 1em 1.450676982591876%; /* 15/1034 */
		border-left: 2px solid #90A090;
	}
	#footer {
		margin-right: 5px;
	}
	#footer li {
		font-size: 0.9em;
    display: inline;
    padding: 0 1em;
    list-style-type: none;
    padding-left: 1em;
    border-right: 1px solid #333;
	}
  #footer li:first-child {
    padding-left: 0;
  }
  #footer li:last-child {
      border-right: 0;
  }
  
  .float-left {
    float: left;
  }
  .float-right {
    float: right;
  }
  .float-clear {
    clear: both;
  } 
}