/* CSS updated Jan 2025*/

body {
	font: 14pt times, Arial, Helvetica, sans-serif;
	background-color: white;

#pagewrap {
	/*padding: 20px 20px 20px 20px;*/
	max-width: 800px;
	margin:auto;
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: times; 
	color:black;
	*font-size: 14pt; 
	text-align: justify;
	line-height: 1.2; 
	background-color: white;
	background-repeat: repeat;
	/*background-image: url(../img/background.jpg);*/
	}

#header{
	/*height: 150px;*/
	width: 100%;
	border: 1px;
	margin-bottom: 20px;
	margin-top: 20px;
	/*background-repeat: repeat;*/
	/*background-repeat: no-repeat;*/
	background-position: center;
	background-color: #E0FFFF;
	/*background-image: url(../img/background.jpg);*/
	
h1 { color:green;  
	margin: 20pt 0 0 0 }

h1, h2, h3 {
  font-family: sans-serif; 
  }

h2 { 
	padding: 12pt 0 0 0 
	}

p {
	font-family: times; 
	font-size: 14pt; 
	}

ul, ol, li {
	font-family: times; 
	font-size: 14pt; 
	}

#imgcaption {
	text-align:center;
	font-weight: bold;
	font-size: 12pt;
	}

/* Top navigation menu  -------------------------------------------- */
#toggleNavMain {/*mobile Menue*/
	display:none;
	font-size: 20px;
	color:white;
	font-weight: bold;
	font-family: Tahoma, Geneva, sans-serif;
	}

#navcontainer {
	margin:auto;
	align:center;
	margin-top:0;
	padding: 0;
	}
	
/*==================================================================*/
/* NEW NAVIGATION SECTION
https://webdesignerhut.com/css-dropdown-menu/ */

/* Giving a background-color to the nav container. */
nav {
    margin: 0px 0 0 0;
    background-color: #008080;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:relative" */
nav ul {
    padding:0;
    margin:0;
    list-style: none;
    position: relative;
    }

/* Colour Current Page Menu Item */
nav li .current a{
background: #00C000;
	}
	
/* Positioning the navigation items inline */
nav ul li {
    margin: 0px -7px 0 0;
    display:inline-block;
    background-color: #008080;
    }

/* Styling the links */
nav a {
    display:block;
    padding:0 21.0px;
    color:#FFF;
    font-size:18px;
	font-weight: normal;
	font-family: Tahoma, Geneva, sans-serif;
    text-decoration:none;
    line-height: 40px;
}

/* Background color change on Hover */
nav a:hover {
    background-color: #00C000;
    font-size:18px;
	font-weight: normal;
	font-family: Tahoma, Geneva, sans-serif;
    text-decoration:none;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display:inherit;
    font-size:20px;
	font-weight: normal;
	font-family: Tahoma, Geneva, sans-serif;
    text-decoration:none;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    min-width:170px;
    display:list-item;
    position: relative;
}

/* Second, Third and more Tiers
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul {
    position: absolute;
    top:0;
    left:100%;
}
/*==================================================================*/
	
