@charset "UTF-8";
/* COLORS
BG dark brown: 563722
Light brown (copy): CC9933
Light gray line: 8C8C8C
Distince orange: D88044
*/
body  {
	font-size:12px;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	background: #563722;
	margin: 0;
	padding: 12px 0 0 0;
	text-align: center;
	color: #CC9933;
	line-height:160%;
}
#container { 
	width: 780px;
	margin: 0 auto;
	text-align: left;
} 
#header {
	padding: 4px;
	border:2px solid #7D5C22;
}
#innerborder {
	padding:12px;
	border:2px solid #CC9933;
	}
#sidebar1 {
	float: right;
	width: 126px;
	padding: 36px 0 0 10px;
}
#mainContent { 
	margin: 36px 150px 36px 0;
	padding: 0 48px 0 24px;
	border-right:1px solid #8C8C8C;
} 
a:link, a:visited {
	color:#FFFFFF;
	text-decoration:none;
	}
a:hover {
	color:#CCCCCC;
	text-decoration:underline;
	}
h1 {
	font-size:15px;
	padding: 0 0 0 18px;
	margin-bottom:36px;
	border-bottom:1px solid #8C8C8C;
	background:url(../images/square_white.gif) no-repeat left;
	}
h2 {
	font-size:13px;
	color:#FFFFFF;
	margin-top:36px;
	}
#footer { 
	padding: 0;
	color:#E2E2E2;
	border-top:1px solid #8C8C8C;
} 
#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 */
}
#dogpaw {
	margin: 36px 0;
	color:#B7892F;
	}
#dogpaw a:link, #dogpaw a:visited {
	color:#B7892F;
	text-decoration:none;
	}
#dogpaw a:hover {
	color:#CCCCCC;
	}
.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;
}