@charset "UTF-8";
/*----- basic styling ----- */
* {
	margin: 0px;
	padding: 0px;
}
body {
	text-align: center; /*---solves problem of ie.  this insures that i.e. centers everything in the middle of the page---*/
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 75%; /*--size here is 85% of what the browser will normally display the font size at ---*/
	background-image: url(../images/png/background.png);
	background-repeat: repeat;
	} 
#wrapper {
	position: relative;
	width: 950px;
	margin: 0 auto; /*---auto enters the wrapper element in the center of the browser window ---*/
	text-align: left; /*---ie doesn't always calculate auto margins correctly so after doing text-align above we can no position text how we want by usingt this rule ---*/
	background-color: #fff;
	}
#clear {
	clear: both;
	}
	
/*----header styles----*/
#header {
	position: relative;
	height: 152px;
	background: url(../images/header.jpg) no-repeat top left;
}
#header h1 {
	margin-left: -9000px;
}
#top-box {
	margin-top: 3px;
	position: relative;
	margin-bottom: 3px;
}

#nav {
	float: left;
	background: #b2d281;
	width: 214px;
	height: 360px;
	}

/*--main navigation styles--*/
#nav ul {
	list-style: none;
	display: block;
	margin-top: 50px;
	}

#nav ul li { /*you would use this tag if you wanted to float the list horizontally*/
	padding-left: 50px;
}

#nav ul a { /*-you can also write this "nav ul li a"-*/
	font-size:18px;
	line-height: 2.5em;
	text-decoration: none; /*spaces list out vertically*/
	color:#593A25;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
	}
#nav ul a:hover {
	color:#FFFFCC;
	}
	 

h1 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #333333;
}
h2 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 1.3em;
	font-style: italic;
	font-weight: bold;
	color: #B2D281;
}
#center-image/*----middle content----*/
 {
	float: left;
	width: 250px;
	height: 360px;
	background-image: url(../images/flowers1.jpg);
	background-repeat: no-repeat;
	margin-left: 3px;
	}
#content {
	background-color: #FED2D1;
}

#sidebar {
	float: right;
	width: 480px;
	height: 360px;
	background-color: #b2d281;
	background-image: url(../images/silk-stems.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	}
#sidebar h1 {
	padding-top: 20px;
	padding-left: 25px;
}
#sidebar p {
	padding-left: 25px;
	padding-top: 10px;
	padding-right: 25px;
}
	
/*----bottom boxes----*/
#bottom-box {
	width: 950px;
	height: 170px;
	background-image: url(../images/vertical-bar2.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
#left-box {
	float: left;
	width: 300px;
	height: 170px;
	}
#left-box h2 {
	padding-top: 10px;
	padding-left: 35px;
}
#left-box img {
	float: left;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
}
#right-box {
	float: right;
	width: 300px;
	height: 170px;
	
	}
#right-box h2 {
	padding-top: 10px;
	padding-right: 38px;
	text-align: right;
}
#right-box p {
	text-align: right;
}

	
#right-box img {
	float: right;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#footer {
	height: 200px;
	width: 950px;
	background-image: url(../images/footerBkgd.jpg);
}
#footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #006699;
	text-align: center;
	padding-top: 20px;
}
#subFooter {
	height: 150px;
	width: 950px;
}
