@charset "utf-8";
body  {
	background: #666666;
	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;
	font-family: "Times New Roman", Times, serif;
	font-size: medium;
	line-height: 115%;
}

#container  {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
} 

/* CSS Document */

a:link {
	color: #000066;
	text-decoration: none;
}
#photo {
	float: left;
	width: 125px;
	margin-right: 10px;
	margin-bottom: 5px;
	padding-right: 5px;
	padding-left: 5px;
	margin-top: 0px;
	padding-top: 0px;
	text-align: right;
}
.image-caption {
	font-size: small;
	font-weight: normal;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#photo p {
	margin-top: 5px;
}

.image-credit {
	font-size: xx-small;
	font-weight: normal;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: italic;
	text-align: right;
}



a:visited {
	text-decoration: none;
	color: #000066;
}
a:hover {
	text-decoration: none;
	color: #330033;
}
a:active {
	text-decoration: none;
	color: #330033;
}
#header  {
	margin: 0px;
	padding: 0px;
	height: 82px;
	width: 760px;

} 
#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: 10px 0;
}
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 240px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 8px 8px;
	background-color: #E5DBC2;
}
#leftcol  h1 {
	font-size: 135%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #330000;
}
#leftcol  h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}

.citation {
	font-size: small;
	font-style: italic;
}
#mainContent  {
	margin: 0; /* the right margin on this div element creates the column down the right 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: 0;
	background-color: #FFFFFF;
} 
#rightcol {
	float: right;
	width: 100px;
	background-color: #A62C29;
}
#leftcol {
	float: left;
	width: 320px;
	padding-right: 30px;
	padding-left: 7px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #410A07;
	margin-top: 20px;
	background-color: #FFFFFF;
	clear: both;
}
#middlecol {
	float: left;
	width: 400px;
	padding-top: 0px;
	padding-right: 19px;
	padding-bottom: 10px;
	padding-left: 15px;
	border-left-style: none;
	background-color: #FFFFFF;
	margin-top: 17px;
	margin-left: 35px;
}


#footer  {
	background:#E5DBC2;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-weight: normal;
	padding: 10px;
	clear: both;
	margin: 0px;
} 

.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: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
}
.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;
}
.title-style {
	font-style: italic;
}
#middlecol h1 {
	font-size: 110%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #330000;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
#middlecol h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	margin-bottom: 8px;
	padding: 0px;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: large;
}
