#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 470px;
	margin: 0px;
	height: 700px;
	padding: 0px;
}
#sidebarTop {
	width: 370px;
	margin: 15px 0px 0px 50px; /* padding keeps the content of the div away from the edges */
	border: #FFFFFF solid 1px;
	height: 365px;
	padding: 5px 0px 0px 0px;
	background-color: #000000;
}
#sidebarBottom {
	width: 440px;
	margin: 20px 0px 0px 2px;
	height: 250px;
	background-color: #533700;
	color: #C0A773;
	padding: 10px;
	border: #FFFFFF thin dashed;
}
#sidebarBottom h1 {
	color: #FFFFFF;
	font-size: 28px;
}
#sidebarBottom h2 {
	color: #DDDDDD;
}
#sidebarBottom p {
	font-size: 14px;
	color: #FFE7B5;
}
#container {
	width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: #000000;
	background: url(images/spongeBgd.gif) bottom right;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainImage {
	width: 150px;
	height: 150px;
	float: right;
	margin: 0px;
	padding: 5px;
}
#mainContent {
	margin: 0px 0px 0px 0px;
	width: 450px;
	height: 730px;
	padding: 0px 5px 0px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #533700;
	float: left;
	overflow: hidden;
}
#mainContent h1 {
	color: #FFFFFF;
	font-size: 28px;
}
#mainContent h2 {
	color: #DDDDDD;
}
#mainContent p {
	font-size: 14px;
	color: #FFE7B5;
}
.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
