@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #88BED6;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 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. */
} 
#mainContent blockquote {
	font-style: italic;
}

#header {
	padding: 0 0px 0 0px;  /* 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. */
} 
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 15px 20px;
}

#sidebar1 ul
{
margin: 0;
padding: 0;
list-style-type: none;
}

#sidebar1 li { margin: 0 0 .2em 0; }

#sidebar1 a
{
	display: block;
	color: #024397;
	background-color: #FFFFFF;
	width: 9em;
	padding: .2em .8em;
	text-decoration: none;
	border: thin solid #CCCCCC;
}

#sidebar1 a:hover
{
	display: block;
	color: #FFFFFF;
	background-color: #88BED6;
	width: 9em;
	padding: .2em .8em;
	text-decoration: none;
	border: thin solid #CCCCCC;
}

 #sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #003366;
}

#sidebar1 p {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #666666;
	border: thin solid #CCCCCC;
}

#nonmenu {
	margin: 0 0 .2em 0;
	border-width: 0px;
	border-style: none;	
	}
	
#nonmenu p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	border-style: none;	
	}
#nonmenu h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #333333;
	text-align: center;

	}	

#nonmenu a{
	color: #024397;
	background-color: #FFFFFF;
	padding: .2em .2em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	border-top: 0px none;
	border-right: 0px none;
	border-bottom: 0px none;
	border-left: 0px none;
	display:	inline-block;
	}
#nonmenu a:hover{
	background-color:#FFFFFF;
	padding: .2em .2em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	display:	inline-block;



	color:#333333
	border: thin solid #FFFFFF;
	color: #FF9900;
	border-width: 0px;
	border-style: none;
	}
	

#mainContent {
	margin: 0 0 0 210px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left: thin solid #CCCCCC;
} 
#mainContent a {
	color: #DA7509;
	text-decoration: none;
	font-weight: bold;
}
#mainContent a:hover {
	color: #006699;
	text-decoration: underline;
}


#mainContent p {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.5em;
}
#mainContent h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #006699;
	font-style: italic;
}
#mainContent h2 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-style: italic;
	color: #006699;
}
#mainContent h3 {
	font-size: 1em;
	color: #006699;
}

#mainContent li {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.3em;
}



#footer {
	padding: 10px 20px 10px 20px;
	background-image: url(images/footer.jpg);
} 
#footer ul {
	margin:0;
	padding:0;
	font-size:0.7em;
	list-style-type: none;
	text-align:center;
	}
#footer ul li {
	display:inline;
	}
#footer ul li a {
	text-decoration:none;
	color:#024397;
	padding: 0em 0.5em 0em 0.4em;
	font-weight: bold;
		}
	
#footer ul li a:hover {
	text-decoration:underline;
	color:#024397;
	font-weight: bold;	
	}
 #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 */
}
#meter {
	float: left;

}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

IMG.centre {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 5px;
	}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


.picture {
	background-color: #F9F9F9;
	border: 1px solid #CCCCCC;
	padding: 3px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 1.4em;
	text-align: center;
}

.picture img { 
border: 1px solid #CCCCCC;
vertical-align:middle; 
margin-bottom: 3px;
 }
.right { margin: 0.5em 0pt 0.5em 0.8em; float:right; }

.left { margin: 0.5em 0.8em 0.5em 0; float:left; }
.imagelink {
	background-color: #FFFFFF;
	width: 10em;
	padding: 0.2em 0.8em 0.2em 0em;
	text-decoration: none;
}

