body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #070707;
	background-image:url(../images/bg.gif);
	background-repeat:repeat-x;
	margin: 0pt; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0pt;

	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: #dedede;
	
}
.bodycopy {
		font-weight:normal;
		letter-spacing: 1px;
		font-size: 11px;

}
.h3 {
		font-weight:normal;
		
}
.one #container {
	background-image:url(../images/main.jpg);
	background-repeat:no-repeat;
	width: 800px;  /* this will create a container 80% of the browser width */
	margin: 0pt auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0pt;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.one #container-p {
	background-image:url(../images/pages.gif);
	background-repeat:repeat-y;
	width: 800px;  /* this will create a container 80% of the browser width */
	margin: 0pt auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0pt;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.one #header {
background-image:url(../images/nav-bg.gif);
	background-repeat:repeat-x;
	position:relative;
	margin: 0pt;
	padding: 0pt;
	height: 100px;  /* 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. */
}
.one #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 */
}
.one #wrapper {
	position: relative;
	text-align: left;
	width: 800px;
	height: 300px;
	margin: 0px auto;
	}
.one #spacer {
	position: relative;
	text-align: left;
	width: 800px;
	height: 45px;
	margin: 0px auto;
	}	
.one #mainContent {
	background-image:url(../images/container-bg.gif);
	background-repeat:repeat-y;
	margin-top: -15pt;
	margin-right: 0pt;
	margin-bottom: 0pt;
	margin-left: 0pt;
	padding-top: 0pt;
	padding-right: 20pt;
	padding-bottom: 0pt;
	padding-left: 20pt;	
}
.one #footer {
	background-image:url(../images/footer.gif);
	background-repeat:no-repeat;
	height: 90px;
	text-align:center;
	position:relative;
	padding: 0pt 10px;  /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0pt;
	
} 
.one #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 */
}
