@charset "utf-8";
body {
	font: 80% Arial, Helvetica, sans-serif;
	background: #534E42;
	margin: 22; /* 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;
}
.hgop #container {
	width: 765px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.hgop #header {
	background: #DDDDDD; 
	background-image: url('/images2/bkgrnd.jpg');
	background-repeat: repeat-x;
	height: 26px;
}
.hgop #photoarea {
	background: #DDDDDD url('/images2/lincolnpic.jpg'); 
	background-repeat: no-repeat;
	width:520px;
	height: 294px;
 	float:left;
}
.hgop #linkarea {
	background-image: url('/images2/logo.jpg'); 
	background-repeat: no-repeat;
	width:245px;
	height: 294px;
 	float:right;
}
.hgop #linkarea p {
	margin-top: 57%;
	line-height: 200%;
	text-align: right; /* this overrides the text-align: center on the body element. */
 	padding: 0px 20px 0px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.hgop #mainContent {
	margin-top: 40%;
	padding: 15px 15px 15px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.hgop #footer {
	border-top: 1px solid #000000;
	background-image: url('/images2/bkgrnd.jpg');
	height: 55px;
}
.hgop #footer p {
	margin: 12px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 10px 10px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
a:link {
	color: #B70000;
}
a:visited {
	color: #B70000;
}
a:hover {
	color: #003399;
}
a:active {
	color: #B70000;
}