@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #A69C89;
	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;
}
h1, h2, h3, h4, h5, p {margin: 0; padding: 0;}
p { font-size: 14px; line-height:1.25em;}
a {}
a:link, a:visited { color:#333;}
a:hover {
	color: #CCC;
	background-color: #722D32;
}

#container {
	width: 780px;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border-right: 3px solid #666;
	border-bottom: 3px solid #666;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #D2BCA5;
} 
#header { 
	background: #FFF;
	height: 165px;
	padding: 0 0px 0 0px;  /* 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. */
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px;
	background-color: #9A907F;
	margin: 5px 0 0 0;
}
#sidebar1 h3 { font-size:16px; text-align:center; color: #600; Padding-bottom: 1.25em;}
#sidebar1 p {
	font-size:12px;
	text-align:left;
	padding-bottom: 0.75em;
}
#sidebar1 a { text-decoration: none;}
#sidebar1 a:link, #sidebar1 a:visited { color:#633;}
#sidebar1 a:hover {
	color:#063;
}

#mainContent {
	margin: 0 0 0 220px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px;
} 
#mainContent h2 { font-size: 18px; padding: 0 0 10px 0;}
#mainContent p { padding: 0 0 10px 0;}

#wholePage {
	margin: 0;
	Padding: 0 10px;
}
#wholePage p {padding-bottom: .75em;}
#wholePage h2 {font-size: 18px; padding: 0px 0 10px 0;}
.pad15 {padding-top: 220px;}

#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	background-color:#772C33;
} 
#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 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:10px;
	text-align: center;
	color:#CCC;}
#footer a:link, a:hover { color:#CCC;}
.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;
}
.pictureFrame {
	padding: 10px 10px;
}
/************ Photo Gallery Divs/ Classes ****************/
#imagePlacement { text-align:center;}
#imagePlacement a:hover { background-color: #d2bca5;}
.buttonL {  
	margin: 0 20px 200px 0;}
.buttonR { 
	padding: 0 0 0 0;
	margin: 0 0 200px 20px;}


