@charset "UTF-8";
/* CSS Document */

body  {
	background-image:url(../images/bkg.png);
	background-color: #503017;
	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 */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-repeat: repeat-x;
}

a:link {
	color: #E96800;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #E96800;
}
a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}
a:active {
	text-decoration: none;
}

#container {
	width: 45em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: #503017;
	padding: 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. */
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding:0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#topnav {
	margin:0;
	padding:0;
	font-size: 8pt;
	color:#FFF;
}

a.current {
	color:#FFF;
	text-decoration:none;
}

#pic {
	float:left;
	display:inline;
	padding:30px 30px 30px 30px;
}

img.flower {
	padding:15px 0 0 0;
}

#mainContent {
	margin: -5px 0em 0 0px; /* the left margin will look best if you match the padding amount to the header and footer. */
	background-color: #ebdca7;
	font-family: Helvetica;
	line-height: 20px;
	font-size: 12px;
	color: #503017;
	letter-spacing: 0em;
	text-align: left;
	white-space: normal;
	text-indent: 0px;
	padding:25px 25px 25px 0;
} 

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
} 

/* Miscellaneous classes for reuse */
.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;
}