@charset "utf-8";

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #F0F8FF; /* Outer page color */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.Main #container {
	width: 900px;  /* this will create a container 80% of the browser width */
	background: #92C53C;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.Main #header {
	background: #17A9F1; 
	padding: 5px 50px 0px 50px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

.Main #header img {
	border: none;
}

.Main #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #000000;
}

/* Main menu settings */
.Main #menu {
	clear: both;
	float: left;
	margin: 0;
	margin-bottom: 15px;
	padding: 0;
	/*border-bottom: 1px solid #000; /* black line below menu */
	width: 100%;
	font-size: 90%; /* Menu text size */
	z-index: 1050; /* This makes the dropdown menus appear above the page content below */
	position: relative;
	background: #92C53C;
}

/* Top menu items */
.Main #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
	position: relative;
	right: 50%;
}

.Main #menu ul li {
	margin: 0 0 0 1px;
	padding: 0;
	float: left;
	position: relative;
	left: 50%;
	top: 1px;
}

.Main #menu ul li a {
	display: block;
	margin: 0;
	padding: 0.6em 0.5em 0.4em;
	font-size: 1em;
	line-height: 1em;
	/*background: #DCDCDC;*/
	text-decoration: none;
	color: #1E90FF;
	font-weight: bold;
	/*border-bottom: 1px solid #000000;*/
}

.Main #menu ul li.active a {
	color: #FFFFFF;
	background: #000000;
}

.Main #menu ul li a:hover {
	background: #1E90FF; /* Top menu items background colour */
	color: #FFFFFF;
	/*border-bottom: 1px solid #03f;*/
}

.Main #menu ul li:hover a,
.Main #menu ul li.hover a { /* This line is required for IE 6 and below */
	background: #1E90FF; /* Top menu items background colour */
	color: #FFFFFF;
	/*border-bottom: 1px solid #03f;*/
}

/* Submenu items */
.Main #menu ul ul {
	display: none; /* Sub menus are hiden by default */
	position: absolute;
	top: 2em;
	left: 0;
	right: auto; /*resets the right:50% on the parent ul */
	width: 12em; /* width of the drop-down menus */
}

.Main #menu ul ul li {
	left: auto;  /*resets the left:50% on the parent li */
	margin: 0; /* Reset the 1px margin from the top menu */
	clear: left;
	width: 100%;
}

.Main #menu ul ul li a,
.Main #menu ul li.active li a,
.Main #menu ul li:hover ul li a,
.Main #menu ul li.hover ul li a { /* This line is required for IE 6 and below */
	font-size: 0.8em;
	font-weight: normal; /* resets the bold set for the top level menu items */
	/*background: #DCDCDC;*/
	color: #1E90FF;
	line-height: 1.4em; /* overwrite line-height value from top menu */
	border-bottom: 1px solid #000000; /* sub menu item horizontal lines */
}

.Main #menu ul ul li a:hover,
.Main #menu ul li.active ul li a:hover,
.Main #menu ul li:hover ul li a:hover,
.Main #menu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background: #1E90FF; /* Sub menu items background colour */
	color: #FFFFFF;
}

/* Flip the last submenu so it stays within the page */
.Main #menu ul ul.last {
	left: auto; /* reset left:0; value */
	right: 0; /* Set right value instead */
}

/* Make the sub menus appear on hover */
.Main #menu ul li:hover ul,
.Main #menu ul li.hover ul { /* This line is required for IE 6 and below */
	display: block; /* Show the sub menus */
}

.Main #mainContent {
	padding: 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #92C53C;
	font-size: 0.9em;
}

.Main #mainContent p {
	color: #FFFFFF;
}

.Main em {
	font-weight: bold;
	font-style: normal;
}

.Main it {
	font-style: italic;
}

.Main cen {
	text-align: center;
}

.Main table.center {
	display: block;
	border: 0;
	margin-left: auto;
	margin-right: auto;
}
.Main #mainContent ul li {
	color: #FFFFFF;
}

.Main #mainContent img {
	border: 1px solid #000000;
}
.Main #mainContent a {
	color: #FFFFFF;
	font-weight: bold;
	
}

.Main #mainContent p.news {
	color: yellow;
}

.Main #mainContent p.error {
	color: red;
	font-weight: bolder;
}

.Main #formBlock label {
    display: inline-block;
    float: left;
    clear: left;
    width: 25%;
    text-align: right;
}

.Main #formBlock input {
	display: inline-block;
	float: left;
	width: 40%;
}

.Main #mainContent img.noScript {
	display: block;
  border: 0;
	margin: 0;
	padding: 0;
}

.Main #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#92C53C;
	text-align: center;
	border-top: 1px solid #000000;
} 

.Main #footer h6 {
	margin: 0;
	padding: 10px 0;
	color: #000000;
	font-size: 0.5em;
}

.Main #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.Main #map {
	margin: 0;
	margin-left: 15px;
	margin-bottom: 15px;
	padding: 0;
	float: right;
	width: 325px;
	height: 325px;
	border: 1px solid #000000;
}

.Main #slideShowLeft {
	display: inline;
  float: left;
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
/*	width: 325px;
	height: 488px;*/
	border: 1px solid #000000;
}

.Main #facebookBlockRight {
	display: inline;
	float: right;
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
}

.Main #slideShowUpper {
	margin: 0;
	padding: 0;
	margin-left: 15px;
	margin-bottom: 15px;
	width: 325px;
	height: 217px;
	border: 1px solid #000000;
}

.Main #slideShowLower {
	margin: 0;
	padding: 0;
	margin-left: 15px;
	margin-bottom: 15px;
	width: 325px;
	height: 217px;
	border: 1px solid #000000;
}

.Main ul.slideShowList {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
}

.Main div.staticImages {
	clear: both;
	float: left;
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
	width: 100%;
	font-size: 90%; /* Menu text size */
	position: relative;
	background: #92C53C;
}

.Main div.staticImages ul {
	margin: 0;
	padding: 0;
	list-style: none;
	float: right;
	position: relative;
	right: 50%;
}

.Main div.staticImages ul li {
	margin: 0 10px;
	padding: 0;
	float: left;
	position: relative;
	left: 50%;
	top: 1px;
}

.Main div.staticImages ul li img {
	display: block;
	margin: 0;
	padding: 0;
	border: 1px solid #000000;
}
