@charset "UTF-8";
body  {
	font: 80% Georgia, "Times New Roman", Times, serif;
	background: #b3bccb;
	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: #433113;
}
#container { 
	width: 785px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #b3bccb;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
#sidebar1 img {
	text-decoration: none;
	border: none;
}
#sidebar1 .photo {
	margin: 10px 0;
}
#nav {
	border: 4px solid #513b18;
	background: #ffffff;
	text-align: center;
	font-size: 90%;	
}
#nav a{
	color: #433113;
	text-decoration: none;
	font-size: 110%;
	}
#nav a:hover {
	color: #336699;
	}
.navWrap {
	border: 2px solid #513b18;
	background: #cfb991;
	margin: 2px;
	padding: 10px 0;
	}
#mainContent { 
	margin: 0 0 0 225px; /* 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: 20px 20px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent p {
	line-height: 1.7em;
} 
#mainContent a {
	color: #433113;
	}
#mainContent a:hover {
	color: #62459c;
	}
#mainContent h1{
	font-size: 2.5em;
	font-family: 'EnglishRegular';
	}
#mainContent h2 {
	padding-left: 5px;
	margin-bottom: -3px;
	font-size: 1.35em;
	line-height: 1.4em;
	}
#mainContent h3 {
	padding-bottom: -6px;
	font-size: 1.2em;
	font-style: italic;
	}
#mainContent li {
	list-style-type: disc;
	line-height: 1.5em;
	padding: 0 50px 5px 0;
	}
	#mainContent img { 
	margin-top: 14px;
}

#footer { 
	padding: 0 20px 0 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(images/close_to_paradise.gif);
	background-repeat: no-repeat;
	background-position: right;
	margin-top: 8px;
} 
#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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 90%;
}
.alignright, .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;
}
.alignleft, .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;
}


.gallerycontainer{
position: relative;
height: 550px;
top: 0px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
margin: -5px 4px;
border: none;
}

.thumbnail:hover{
text-decoration: none;
}

.thumbnail:hover img{
border: none;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px 5px 20px 0;
left: -1000px;
visibility: hidden;
color: #433113;
font-size: 80%;
font-style: italic;
text-align: left;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
padding: 0 0 10px 0;
border: none;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
text-decoration: none;
top: 180px;
left: 0%; /*position where enlarged image should offset horizontally */
z-index: 50;
}
