@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #beb9b1;
	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: #111;
}
p {
	font-size: 12px;
	padding: 5px 0px 5px;
	margin: 0px;
}
a {
	color: #008eb0;
	padding: 5px 0px 5px;
	text-decoration: none;
} 
a:hover {
	color: #111;
	text-decoration: underline;
} 
h1 {
	color: #beb9b1;
	font-size: 23px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
h2 {
	color: #beb9b1;
	font-size: 17px;
	line-height: 17px;
	font-weight: bold;
	padding: 3px 10px;
	float: right;
	margin: 0px;
} 
h3 {
	color: #beb9b1;
	font-size: 23px;
	font-weight: bold;
	margin: 0px;
	padding: 10px 0px 0px 0px;
}
#container {
	width: 880px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	height: 640px;
	margin: 15px auto 5px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #fff;
	height: 90px;
	border-bottom: 3px solid #ccc6be; 
	padding: 10px;  /* 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 a {
	float: right;
	color: #008eb0;
	font-size: 16px;
	text-transform: uppercase;
	padding: 3px 10px;
	text-decoration: none;
} 
#header a:hover {
	color: #111;
	text-decoration: underline;
} 
#logo {
	height: 80px;
	width: 218px;
	float: left;
	margin: 5px;
}
#mainContent {
	padding: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	height: auto;
}
#left {
	width: 550px;
	float: left;
}
#cited {
	border-top: 1px solid #beb9b1;
	width: 300px;
	font-size: 8px;
	margin-top: 8px;
	padding-top: 2px;
}
#right {
	width: 285px;
	float: right;
	margin-left: 15px;
}
#photoInfo {
	font-size: 10px;
	padding: 5px 0px 5px;
	margin: 0px;
}	
#footer {
	padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: transparent;
	width: 840px;
	margin: 0px auto;
}
#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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	float: left;
	color: #111;
	font-size: 10px;
	text-align: left;
}

/* FORM STYLES */
form { 
	width: 550px; 
}
form br { 
	clear:left; 
}
input { 
	line-height: 14px; 
	height: 14px;
}
input, textarea { 
	width: 200px; 
	margin: 1px 0 0 10px; 
	font-size: 12px; 
	color: #333333; 
	padding: 1px; 
	background: #ffffff; 
}
input.inputButton {
	margin-left: 60px; 
	height: 24px; 
	width: 151px; 
}
label { 
	color: #000000; 
	display: block; 
	float: left;  
	width: 280px; 
	padding: 0px 0px 0px 8px; 
	line-height: 20px; 
	font-size: 12px; 
	margin: 2px 0 0; 
	text-align: right; 
}
textarea { 
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	width: 500px; 
	overflow: auto; 
	margin: 0px;
}
/* END FORM STYLES */