@charset "UTF-8";
body {
	font: small Verdana, Arial, Helvetica, sans-serif;
	background: #eee;
	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: #000000;
}

#container {
	width: 770px;
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
}
#header {
	padding: 0;  /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	height: 75px;
}
#navbar {
	background-color: #529233;
	padding-top: 5px;
	padding-bottom: 6px;
}
#mainContent {
	margin: 15px 0;
	padding: 0 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#mainContent h1 {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 150%;
	color: #107439;
}
/* Styles specific to home page */
#pgHome #mainContent h1,
#pgHome #mainContent h2,
#pgHome #mainContent p {
	text-align: center;
	line-height: 1.5em;
	margin-top: 35px;
}
#pgHome #mainContent h1 {
	font-size: 200%;
}
#pgHome #mainContent h2 {
	font-size: 140%;
	font-style: italic;
}
#pgHome #mainContent p {
	font-size: 110%;
}

#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 130%;
	color: #107439;
}
#mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	color: #107439;
}
#footerPhoto {
	clear: both;
	margin: 0;
	padding: 0;
	height: 50px;
}
#footer {
	padding: 0 15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear: both;
} 
#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: 85%;
}
.photoRight {
	float: right;
	margin: 2px 0 15px 10px;
	padding: 0;
}
.photoRight p {
	margin: 0;
	padding: 0;
	text-align: right;
	font-size: 80%;
	color: #666;
	font-style: italic;
}
.photoRight img {
	margin-bottom: 2px;
}
.photoLeft {
	float: left;
	margin: 2px 10px 15px 0;
	padding: 0;
}
.photoLeft p {
	margin: 0;
	padding: 0;
	text-align: left;
	font-size: 80%;
	color: #666;
	font-style: italic;
}
.caption {
	margin: 0;
	padding: 0;
	font-size: 80%;
	color: #666;
	font-style: italic;
}
.boxRight {
	float: right;
	margin-left: 15px;
	margin-bottom: 10px;
}
.boxRight p {
	margin-top: 0;
	text-align: right;
}

/* Styles for photo gallery pages */
#mainContent .galleryThumbs {
	padding-bottom: 20px;
}
#mainContent .galleryThumbs p {
	float: left;
	width: 200px;
	height: 200px;
	padding: 15px;
	border: 1px solid #999;
	margin-right: 10px;
	margin-bottom: 10px;
	text-align: center;
}
p.kudosAuthor {
	padding-left: 40px;
	font-weight: bold;	
}
