@charset "UTF-8";
/* CSS Document */

* {
        margin: 0px;
        padding: 0px;
}
body  {
	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: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-color: #FFF;
	text-decoration: none;
}
#container {
	width: 1000px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/bgd.jpg);
} 
#header {
	background-image: url(images/thegreen%20header.jpg);
	background-repeat: no-repeat;
	height: 300px;
	width: 1000px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 10px;
	background-position: 10px;
} 
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 25px;
	padding-top: 193px;
	padding-right: 40px;
	padding-left: 50px;
	color: #FFF;
	text-align: left;
	line-height: 60px;
	letter-spacing: 3px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 300px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 25px;
	padding-left: 10px;
	overflow: auto;
}
#sidebar1 h1{
	padding-bottom: 0px;
	padding-left: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 38px;
	color: #B5B892;
	text-align: right;
	padding-right: 25px;
	padding-top: 15px;
}
#sidebar1 p {
	text-align: center;
	margin-top: 8px;
	margin-bottom: 5px;
}
#mainContent {
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 310px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 12px;
	line-height: 150%;
	background-image: url(images/thegreen%20main%20bgd.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	width: 645px;
} 
#mainContent h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 30px;
	color: #B5B892;
	padding-top: 15px;
	padding-bottom: 20px;
	line-height: 120%;
	font-weight: bold;
}
#mainContent p a {
	text-decoration: none;
	color: #007100;
}
#mainContent p a:hover {
	color: #A0A381;
}
#footer {
	background-image: url(images/thegreen%20footer.jpg);
	height: 155px;
	width: 940px;
	padding-top: 0;
	padding-right: 40px;
	padding-bottom: 0;
	padding-left: 40px;
	background-repeat: no-repeat;
	background-color: #FFF;
} 
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FFF;
	text-align: left;
	padding-top: 40px;
	padding-right: 30px;
	padding-bottom: 18px;
	padding-left: 20;
	line-height: 20px;
} 
#footer p a {
	color: #FFF;
	text-decoration: none;
} 
#footer p a:hover {
	color: #000;
} 
#footer h6 {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 9px;
	color: #000;
	padding-top: 5px;
	padding-bottom: 15px;
	padding-right: 25px;
}
#sidebar1 li {
	background-color: #FFF;
	text-align: center;
	margin-left: 30px;
	padding: 3px;
	display: inline-block;
}
#sidebar1 li a {
	background-color: #FFF;
	padding-top: 45px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
#sidebar1 a:hover {
	background-color: #000;
}
.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: 15px;
	margin-bottom: 5px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 15px;
}
.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;
}
#header h3 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	color: #FFF;
	text-align: center;
	padding-left: 0px;
}
#footer h6 a {
	text-decoration: none;
	color: #000;
}
#footer h6 a:hover {
	color: #F60;
}
#footer h1 {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 50px;
	color: #FFF;
	padding-top: 0px;
	padding-bottom: 10px;
	text-align: center;
	padding-right: 30px;
}
.list {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 14px;
	color: #666;
	list-style-position: outside;
	list-style-type: square;
	line-height: 175%;
	text-align: left;
	padding-right: 0px;
	margin-right: 0px;
	padding-left: 25px;
	margin-top: 10px;
}
.list a {
	color: #000;
	text-decoration: none;
}
.list a:hover {
	color: #FFF;
}
#header ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
}

#header li {
	display: inline-block;
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 11px;
	width: 146px;
}

#header a
{
	text-decoration: none;
	padding-left: 0px;
	display: block;
	height: 40px;
	width: 145px;
	padding-top: 12px;
	background-image: url(images/dk%20green%20button.png);
	background-repeat: no-repeat;
	text-align: center;
	padding-right: 10px;
	color: #FFF;
}

#header a:hover
{
	color: #FFF;
	background-image: url(images/mid%20green%20button.png);
}
/* Current Nav Selections (Different Colours) */
#header li a#current {
	color: #000;
	padding-bottom: 20px;
	background-image: url(images/lt%20green%20button.png);
	background-repeat: no-repeat;
}
#mainContent h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 40px;
	color: #FFF;
	padding-top: 25px;
	padding-bottom: 0px;
	line-height: 120%;
}
#mainContent h3 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
	padding-top: 20px;
	padding-bottom: 20px;
	line-height: 160%;
	border-bottom-width: thin;
	border-bottom-style: dotted;
	border-bottom-color: #666;
}
#sidebar1 h2 {
	padding-bottom: 0px;
	padding-left: 20px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #B5B892;
	text-align: right;
	padding-right: 25px;
	padding-top: 15px;
}
#sidebar1 ul {
	list-style-type: none;
	position: relative;
}

