@charset "UTF-8";
/* Colors
Old light gray BG: D0D0D0
NEW light gray #2: B2B2B2
*/

body {
	font-size:13px;
	font-family:Verdana, Geneva, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 12px 0 0 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: #333;
	background-color: #B2B2B2;
}
#container {
	width: 675px;
	margin: 0 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. */
}
#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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 12px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent h1 {
	font-size:14px;
	border-bottom:1px solid #777;
	font-weight:normal;
	font-family:Arial, Helvetica, sans-serif;
}
/*#mainContent h2 {
	font-size:13px;
}
*/h2 {
	font-size:14px;
	border-top:1px solid #333;
	padding-top:3px;
	text-align:right;
	margin:0 0 24px 0;
}
a:link, a:visited {
	color:#333;
	text-decoration:underline;
	padding:1px;
}
a:hover {
	color:#CCC;
	background:#666;
	padding:1px;
	text-decoration:none;
}
#slider {
}
/*#slider h1 {
	font-size:15px;
	font-weight:normal;
}
*/#largephoto {
	text-align:center;
}
#attributions {
	font-size:11px;
	margin-top:36px;
}
#readmore {
	font-size:11px;
	margin-top:75px;
}
#footer {
	border-top:1px solid #333;
	text-align:right;
	font-size:12px;
}
#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 */
}
