@charset "utf-8";
body  {
	margin: 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: #066;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 100%;
	background-color: #FFF;
	background-image: url(images/scrappinfunbackground.jpg);
	height: auto;
	width: auto;
	padding-top: 50;
}
link {
	font-family: Tahoma, Geneva, sans-serif;
	color: #066;
	text-decoration: none;
	background-color: #FFF;
}
.twoColFixLtHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #066;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.twoColFixLtHdr #header {
	background-color: #FFF;
	height: 187px;
	width: 800px;
	border: 1px solid #066;
	margin-right: auto;
	margin-left: auto;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px;
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #066;
	background-color: #FFF;
}
.twoColFixLtHdr #container #sidebar1 h3 {
	text-align: center;
	background-color: #FFF;
}

.twoColFixLtHdr #mainContent {
	height: auto;
	width: 640px;
	margin: 0;
	padding: 0;
	border: 1px solid #066;
	float: right;
} 
.twoColFixLtHdr #container #mainContent h1 {
	margin-left: 20px;
}
.twoColFixLtHdr #container #mainContent h2 {
	margin-left: 20px;
	color: #C06;
}

.twoColFixLtHdr #container #mainContent p {
	margin-left: 20px;
	margin-right: 5px;
	text-align: left;
	color: #066;
}

.twoColFixLtHdr #footer {
	background-color: #FFF;
	height: 25px;
	width: 800px;
	clear: both;
	border: 1px solid #066;
	color: #066;
	text-align: center;
} 
a:link {
	color: #066;
	text-decoration: none;
}

.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;
}
