/* Sets element margins, padding, and border to 0 to even out browser differences when adding desired values later. */
html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, 
ol, ul, li, dl, dt, dd, td, form, fieldset, a,
#wrapper, #banner  
{
	margin: 0;
	padding: 0;
	border: 0;
}

/* Set the bg color, default font family and size here. */
body {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-color: #FFF;
}

/* Set the color and font for headings. The bottom margin adds space below the heading. */
h1,h2,h3,h4,h5,h6 {
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
	margin-bottom: 0.2em;
}

/* Add a bit of padding below all the paragraphs. */
p { padding-bottom: 0.8em; }

/* No borders on any images. */
img	{ border: none; }

/* Links are white and not underlined. */
a {
	color: #CCC;
	text-decoration: none;
	background-image: url(../images/button_chrome_orange.jpg);
}

/* Hovered links are green and underlined. */
a:hover {
	color: #59200c;
	text-decoration: none;
	background-image: url(../images/button_chrome_orange.jpg);
}

/* This div wraps all three columns plus the banner, but doesn't include the footer. */
#wrapper {
	width: 1024px;		/* Ensures that it will fit into any monitor without needing scroll bars	*/
	background-color: #F60;
	background-image: none;
	background-repeat: repeat;
	background-position: center;
	position:relative;
	margin-right: auto;
	margin-left: auto;
}

/* This div has the page's H1 and header image. Note the z-index. */
#banner	{
	width: 100%;	/* This is the image of the  colored shells (right side). */
	height:120px;		/* Needs to be big enough to show the header image that's in the H1. */
	z-index:auto; 		/* This z-index is lower than the maincontent's z-index so that the banner always sits behind the maincontent */
	color: #CCC;
	background-color: #59200c;
	background-image: url(../images/sunrise.jpeg);
	background-repeat: no-repeat;
	background-position: left;
}

/**************************/
/* This is the center div. */
#maincontent {
	width:auto;
	top: 0px;
	/* Don't need this border since the footer is also black. */
	z-index:auto;					/* This z-index is lower than for the left and right side bars so the main content sits under the side bars. And this z-index is higher than the banner's z-index so the main content is above the banner. */
	background-color: #FFF;
	background-image: none;
	background-repeat: no-repeat;
	background-position: center top;	/* height: 500px; */ 			/* Specify a height if your sidebar content is longer than your main content. */
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	visibility: visible;
	overflow: visible;
	display: inherit;
	padding: 0em;
	left: 10px;
}

/**************************/

/**************************/
/* The footer div stretches across the page. */
#navbar	{
	position: relative;
	padding: 1em;
	text-align: left;
	color: #FFF;
	background-color: #59200C;
	height: auto;
	font-size: xx-small;
	width: auto;
	margin-right: auto;
	margin-left: auto;
}



/* The navbar links are white, and underlined when hovered over. */
#navbar a
 {
	color: #FFF;
	text-decoration: none;
	font-weight: normal;
	font-size: small;
}

#navbar a:hover {
	text-decoration: underline;
}


/**************************/
/* skip link is positioned off the screen, but still allows screen readers to see it */
#skiplinks {
	position: absolute;
  	margin-left: -1000px;
}

/* don't display the title image used for printing */
.printtitle {
	display: none;
}#banner h1 {
	font-family: Garamond;
	font-size: 48px;
	font-weight: bold;
	color: #FFF;
	position: absolute;
	top: 24px;
	right: auto;
	left: 180px;
}
#banner h2 {
	font-family: Garamond;
	font-size: 24px;
	color: #FFF;
	left: 230px;
	top: 80px;
	position: absolute;
	right: auto;
	font-weight: bolder;
}
