html { overflow-x: auto; height:100%;} /* fixes MSIE scrollbar bug, has no effect in other browsers */
	
body {
	font: 100% Arial, Helvetica, sans-serif;
	font-size:12px;
	background: #E9E9E9;
	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;
}
.clearboth{clear:both;}

a {text-decoration: none; color:#333;}
a:hover {color:#999;}

#outercontainer {
	position: relative;
	width: 960px;
	margin: 0 auto;
	background: transparent url(../images/site/siteybg.jpg) repeat-y 50% 0; /* re-renters bg-img position */
}

#sitebgtop {
	position:absolute;
	left:0px;
	width:960px;
	height:150px;
	background: transparent url(../images/site/sitebgtop.jpg) no-repeat 50% 0; /* re-renters bg-img position */
}
#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/* background: #333; used to give the background color to the secondary content */
	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 {
	position:relative;
	width:960px;
	height:150px;
}
#header div.title {
	position:absolute;
	left:320px;
	top:71px;
	width: 625px;
	font-size:20px;
	text-align: right;
	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 div.navigation {
	position:absolute;
	left:320px;
	top:92px;
	width: 625px;
	font-size:12px;
	text-align: right;
	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 */
}
#maincontent {
	position: relative;
	left:80px;
	width: 880px;
	padding: 0 0; /* was 0 20px remember that padding is the space inside the div box and margin is the space outside the div box */
}
#sidebarmenu {
	position: relative;
	width: 240px;
	float: left;
	padding: 0 0 0 0px;
}
#sidebarmenu ul{
	list-style-type: none; margin:0; padding: 0 0 0 38px;
	}
	
	#sidebarmenu li{padding: 2px 0;}

#primarycontent {  /* DIFFERING VALUES */
	position: relative;
	width: 640px;
	padding: 0 0px;
	float: right;
}
#primarycontent p {
	padding: 0 15px;
}


#footer {
	position: relative;
	margin: 0 auto;
	width: 960px;
	height: 46px;
	padding: 0 0px 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #E9E9E9 url(../images/site/sitefooterbg.jpg) no-repeat 50% 0;
	clear:both;
	}
#footer p{
	padding-left:80px;
	padding-top:15px;
}