/* stylesheet.css */

/* style rule for the page body and page background */
body {	
	margin: 0px;
	padding: 0px;
	font-family: Georgia, "Lucinda Bright", serif;
	background-image: url("images/wheat-field.jpg");
	background-repeat: repeat;
}

/* page wrapper */
#wrapper {
	width: 90%;
	margin: auto; /* centers the layout */
	margin-top: 1em;
}

/* page header style */
#header {
	width: 100%;
	background-color: #FFFFFF;
	text-align: left;
}

/* main page content style */
#main {
	height: 700px;
/* margin-right must equal total width of right sidebar */
	margin-right: 14em;
	margin-bottom: 1em;
	margin-top: 1em;
	padding: 0.5em;
	background-color: #FFFFCC;
	text-align: left;
	font-size: 1em;
	color: #000000;
}


/* style for text in blockquotes */
p.blockquote {
	background-color: #ffffff;
	margin-left: 10em;
	margin-right: 10em;
	padding: 1em;
	border: solid thin #663300;
}

/* style for images floating to left of text in main section */
img.floatleft {
	float: left; 
	margin-right: 1em; 
	margin-top: 1em; 
	margin-bottom: 1em;
}

/* style for nav menu buttons in right sidebar */
img.button {
	border-width: 0px;
	margin-top: 0.5em;
}

/* right sidebar column style */
#sidebar {
	float: right;
	display: inline; /* only purpose is to correct AOL and IE browser issues */
	padding: 0;
	padding-top: 1em;
	padding-bottom: 1em;
	margin-top: 1em;
	margin-left: 1em;
	margin-bottom: 1em;
	width: 13em;
/* actual width is 14em */
	background-color: #FFFFCC;
	text-align: center;
	vertical-align: top;
}

/* page footer style */
#footer {
	clear: both; /* fix ensures doesn't interfere with sidebar or main content - opposite of float */
	width: 100%;
	background-color: #663300;
	padding-bottom: 1em;
	padding-top: 1em;
	margin-bottom: 1em;
	color: #ffffff;
	font-size: 0.83em;
	text-align: center;
}

#footer a:link {
	color: #ffffcc; /* tan */
	text-decoration: none;
}

#footer a:visited {
	color: #ffffcc; /* tan */
	text-decoration: none; /* no underline */
}

#footer a:hover {
	color: #ffffcc; /* tan */
	text-decoration: underline;
}

#footer a:active {
	color: #ffffcc; /* tan */
	text-decoration: underline;
}

/* style rule for heading 1 */

h1 {
	margin: 0;
	font-family: Papyrus, Verdana, Geneva, Univers, sans-serif;
	font-weight: bold;
	color: #663300; /* dark brown */
	text-align: left;
}
/* style rule for heading 2 */

h2 {
	margin: 0;
	margin-top: 1em;
	font-family: Papyrus, Verdana, Geneva, Univers, sans-serif;
	color: #663300;
	font-weight: bold;
}

/* style rule for heading 3 */
h3 {
	margin: 0;
	margin-top: 1em;
	font-family: Georgia, "Lucinda Bright", serif;
	font-style: bold;
	color: #000000;
}

/* style rule for paragraph text */
p {
	margin: 0;
	margin-top: 0.5em;
	line-height: 1em;
}

/* style rule for highlighted grains on grains page */
.highlight {
	background-color: #663300;
	color: #ffffff;
}

/* style rule for hr */
hr {
	background-color: #663300;
	height: 0.5em;
	width: 100%;
	text-align: left;
/*extra code below to align hr for Firefox etc */
	display: block;
	float: left;
}

/* style for caption in div sections */
#caption {
	margin: 0;
	margin-top: 1em;
	margin-bottom: 1em;
	font-style: italic;
}

/* NORMAL LINKS IN PAGE */
/* unvisited links */
a:link {
	color: #663300; /* dark brown */
	text-decoration: none; /* no underline */
}

/* visited links */
a:visited {
	color: #663300; /* dark brown */
	text-decoration: none; /* no underline */
}

/* hover links */
a:hover {
	color: #663300; /* dark brown */
	text-decoration: underline;
}

/* active or clicked links */
a:active {
	color: #663300; /* dark brown */
	text-decoration: underline;
}
