/* CSS Document */

body {
	background-image:url(images/background_03.gif);
	background-repeat: repeat;
	text-align: center;
	}
	
* {margin: 0; padding: 0;}

div#centeringwrap {
	width: 780px;
	margin-left: auto; 
	margin-right: auto;
	margin-top: 10px;
	text-align: left;
	}
	
/* home page design elements */
	
div#photowrapper {
	width: 780px;
	background-color: #ebe7e1;
	}
	
div#homephoto1 {
	width: 390px; height: 332px;
	background-color: #ffffff;
	float: left;
	}
	
div#homephoto2 {
	width: 390px; height: 332px;
	background-color:#6f522d;
	float:left;
	}
	
div#navwrapper {
	width: 780px;
	background-image:url(images/stripe_fade_15.gif);
	background-repeat: repeat-y;
	}
	
	
div#tagline {
	margin: 0 0 0 0;
	width: 780px;
	}
	
div#homenav {
	margin: 0 0 0 200px;
	width: 186px;
	float: left;
	display: inline;
	}
	
div#hometext {
	margin-left: 390px;
	width: 360px;
	}
	
	
div#footer {
	margin-left: auto; margin-right: auto;
	padding-bottom: 10px;
	width: 780px;
	border-top: solid 2px #18462c;
	background-color:#ebe7e1;
	}
	
/* secondary page design elements */

div#bannerwrapper {
	width: 780px;
	background-color: #ebe7e1;
	border-top: 8px solid #18462c;
	}
	
div#banner1 {
	width: 204px;
	float: left;
	}
	
div#banner2 {
	width: 197px;
	float:left;
	}
	
div#banner3 {
	width: 379px;
	float:left;
	}
	
/*secondary navigation and text blocks*/
	
div#navwrapper2 {
	width: 780px;
	padding-top: 15px;
	background-image:url(images/stripe_fade_15.gif);
	background-repeat: repeat-y;
	}
	
div#nav2 {
	margin: 0 0 0 0;
	width: 204px;
	float: left;
	display: inline;
	}
	
div#text2 {
	width: 320px;
	float: left;
	display: inline;
	}
	
div#imagecolumn {
	width: 245px;
	float: left;
	display: inline;
	}
	
div#gallery {
	width: 575px;
	float: left;
	}
	
div#thumbnail {
	width: 550px;
	margin: 0 0 20px 10px;
	}

	
/*Font styling*/
	
div#hometext p, div#text2 p, div#gallery p {
	font-family: "Times New Roman", Times, serif;
	font-size: .8em;
	color:#333333;
	margin: 0 20px 7px 10px;
	}
	
h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.2em;
	color:#18462c;
	margin: 0 20px 7px 10px;
	}
	
h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: .9em;
	color:#18462c;
	margin: 0 20px 7px 10px;
	}
	
div#text2 a {
	font-family: Times New Roman, sans-serif;
	color: #18462c;
	text-decoration: underline;
	}
	
div#text2 a:hover {
	color: #6f522d;
	}

div#text2 ul {
	margin: 5px 0px 20px 0px;
	font-family: Times New Roman, serif;
	font-size: .8em;
	color: #333333;
	}
	
div#text2 li {
	margin: 0 20px 2px 25px;
	list-style-image:URL(images2/leaf_bullet.gif);
	}
	
div#imagecolumn p {
	margin: 5px 20px 0px 0px;
	font-family: "Times New Roman", Times, serif;
	font-size: .9em;
	color: #6f522d;
	font-style: italic;
	}
	
div#imagecolumn p a {
	color: #6f522d;
	text-decoration: underline;
	}
	
div#imagecolumn p a:hover {
	color: #18462c;
	}
	
div#footer p {
	font-family: "Times New Roman", Times, serif;
	font-size: .7em;
	color:#333333;
	margin: 10px 20px 10px 10px;
	}

div#footer p a {
	color: #6f522d;
	text-decoration: none;
	}
	
div#footer p a:hover {
	color: #18462c;
	}
	
.bold {
	font-weight: bold;
	}
	
/*Image styling*/

img {
	border: none;
	}
	
div#footer img {
	margin: 0px 10px 0px 25px;
	}
	
div#thumbnail img {
	margin-right: 12px;
	}
	

	
	/* clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
	display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}