@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	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;
}
.bodyContainer #container {
	width: 1020px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-top: 25px;
}
.bodyContainer #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0px;
	width: 1000px;
}
.t {
	background-image: url(top.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
}
.b {background: url(bottom.gif) 0 100% repeat-x}
.l {background: url(left.gif) 0 0 repeat-y}
.r {background: url(right.gif) 100% 0 repeat-y}
.bl {
	background-image: url(bl.gif);
	background-repeat: no-repeat;
	background-position: 0 100%;
}
.br {background: url(br.gif) 100% 100% no-repeat}
.tl {background: url(tl.gif) 0 0 no-repeat}
.tr {background: url(tr.gif) 100% 0 no-repeat; padding:10px} 
#mainContent #left {
	float: left;
	width: 200px;
}
#right {
	float: left;
	width: 800px;
}
#clearing {
	clear: both;
}

