springtime.css
@charset "iso-8859-1";
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, 
for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. 
By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer 
in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent 
styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set 
the background color of the page and create a centered container for the page content to display. */
body {
	font-size: 1em;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0px;
	padding: 0px;
	background-color: #786159;
	background-image: url('images/site-name-bg2.jpg');
	background-repeat: repeat-x;
}
body img {
	border: 0px;
	text-decoration: none;
}
/* Commonly used to style page titles. */
h1, h2, h3 {
	background-color: inherit;
	color: #663300;
	font-family: Georgia, "Times New Roman", Times, serif;
}
h1 {
	font-size: 150%;
}
h2 {
	font-size: 130%;
}
h3 {
	font-size: 100%;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #884C1A;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #006600;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	text-decoration: underline;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to 
avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container 
on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and 
right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	width: 80%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	max-width: 1024px;
	margin: 0px auto;
}
/* This is the conatiner for the site name. You may choose to use a graphic image in place of the site name*/
#outerWrapper #sitename {
	height: 40px;
	padding: 10px;
	border-bottom: solid 1px #44583A;
	color: #FFFFFF;
	text-align: center;
	background-color: #5A754D;
	background-image: url('images/site-name-bg.jpg');
	background-repeat: repeat-x;
	font-size: 2em;
}
/* This is the container for the header image. You could also edit the image in a graphics program to include the site name and delete that divison.*/
#outerWrapper #header {
	background-position: center top;
	background-color: #415539;
	padding: 10px 10px 0px 10px;
	border-bottom: solid 1px #415539;
	background-image: url('images/arboretum.jpg');
	height: 250px;
	background-repeat: no-repeat;
}
/* This is the container for the main content area. Add padding for additional white space if wanted.*/
#outerWrapper #contentWrapper #content {
	padding: 10px 20px 10px 20px;
	margin: 0px;
}

/* This is the footer container. The paragraph style removes white space from the top and bottom of the paragraph.*/
#outerWrapper #footer {
	padding: 5px;
	border-top: 2px solid #44583A;
	background-color: #ffffff;
	text-align: center;
	font-size: small;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}
/*=============images =============*/
.imglft {
	float: left;
	padding: 5px;
}
.imgrgt {
	float: right;
	padding: 5px;
}

.center {
	 text-align:center;
}

.smltxt {
	font-size:small;
}