@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #CCC;
	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;
}
#container {
	width: 940px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background-image: url(../images/page_header.jpg);
	background-repeat: no-repeat;
	height: 144px;
	padding: 0 10px 0 20px;  /* 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. */
}
#nav {
	width: 940px;
	height: 26px;
}
#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 */
}
#mainContent {
	width: 940px;
	height: 480px;
	background-image: url(../images/content_bgd_home.jpg);
	background-repeat: no-repeat;
}
#mainContactContent {
	width: 940px;
	height: 480px;
	background-image: url(../images/content_bgd_home.jpg);
	background-repeat: no-repeat;
}
#homeContent {
	width: 940px;
	height: 466px;
	background-image: url(../images/home_silverbox.jpg);
	background-repeat: no-repeat;
}
#pageContentBgd {
	width: 940px;
	height: 415px;
	background-image: url(../images/silverbox2.jpg);
	background-repeat: no-repeat;
}
#pageContentContactBgd {
	width: 940px;
	background-image: url(../images/silverbox2.jpg);
	background-repeat: no-repeat;
}
#homePhotos {
	width: 433px;
	height: 264px;
	float: left;
}
#homeText {
	width: 490px;
	height: 246px;
	padding: 10px 15px 0 0;
	overflow: auto;
	float: right;
}
#aboutContentBox {
	width: 625px;
	height: 369px;
	margin: 19px 0 27px 42px;
	background-image: url(../images/aboutBox.jpg);
	background-repeat: no-repeat;
	float: left; 
}
#greenContentBox {
	width: 625px;
	height: 369px;
	margin: 19px 0 27px 42px;
	background-image: url(../images/greenImpactBox.jpg);
	background-repeat: no-repeat;
	float: left; 
}
#bignewsContentBox {
	width: 625px;
	height: 369px;
	margin: 19px 0 27px 42px;
	background-image: url(../images/bigNewsBox.jpg);
	background-repeat: no-repeat;
	float: left; 
}
#contactContentBox {
	width: 625px;
	height: 420px;
	margin: 19px 0 0 42px;
	background-image: url(../images/contactBox.jpg);
	background-repeat: no-repeat;
	float: left; 
}
#contactContentBox2 {
	width: 625px;
	height: 380px;
	margin: 19px 0 0 42px;
	background-image: url(../images/contactBox2.jpg);
	background-repeat: no-repeat;
	float: left; 
}
#productContentBox {
	width: 625px;
	height: 369px;
	margin: 19px 0 27px 42px;
	background-image: url(../images/productBox.jpg);
	background-repeat: no-repeat;
	float: left; 
}
#pageContentTitle {
	width: 581px;
	height: 22px;
	padding: 11px 0	0 42px;
}
#goGreen {
	width: 201px;
	height: 336px;
	float: left; 
}
#pageContentText {
	width: 413px;
	height: 320px;
	margin: 15px 0 0 0;
	padding-right: 10px;
	overflow: auto;
	float: left;
}
#pageContentContactText {
	width: 605px;
	height: 400px;
	margin: 15px 10px 0 10px;
	/*overflow: auto;*/
	float: left;
}
#sidebar {
	width: 207px;
	height: 359px;
	margin: 19px 32px 0 0;
	padding: 10px 0 0 0;
	background-image: url(../images/sidebarBgd.jpg);
	background-repeat: no-repeat;
	float: right;
}
#sidebarTitle {
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #000;
	padding-bottom: 15px;
}
#sidebarContent {
	height: 321px;
	width: 183px;
	padding: 0 6px 0 12px;
	text-align: left;
	overflow: auto;
}
#footer {
	width: 940px;
	height: 202px;
	float: right;
}
#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 */
}
