/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #E4D3B1;
	color:#1B1201;
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p, td, li {
	font-size: 12px;
}
a {
	color:#624B1C;
}
h1 {
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Create styles to float images and groups of images.*/

.left {
	float: left;
	margin: 0px 25px 10px 0px;
}
img.leftimage{
	border:1px solid #014743;
}
img.leftimage1{
	border:1px solid #014743;
	float: left;
	margin: 0px 25px 10px 0px;
}
.right {
	float: right;
	margin: 0px 10px 10px 25px;
	font-size:10px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}
img.rightimage{
	border:1px solid #014743;
}
img.rightimage1{
	border:1px solid #014743;
	float: right;
	margin: 0px 0px 10px 10px;
}
img.thumb {
	padding:0px 5px 10px;
	border:0px;
}
/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 650px;
	margin: 0px auto;
	}

/* Styles the div that serves as the container for the content and sidebar navigation.*/
div#container {
	width: 664px;
	margin: 0px auto;
	background: url(images/layout.jpg) repeat-y; /* Faux column bg for page */
}
/* Creates DIV container for content */ 
div#content {
	width: 630px;
	margin: 10px auto;
}
div#copyright {
	font-size: 10px;
	width: 650px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 10px;
	background:#DEC188;
	height:40px;
}
div#copyright a {
	color: #624B1C;
	text-decoration: underline;
}
/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	margin: 0px;
	padding: 0px;
	width: 156px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 11px;
	color: #00C;
	text-decoration: none;
	display: block;
	width: 146px;
	border-bottom: 1px solid #FFF;
	padding: 5px;
	text-transform: uppercase;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #0000CC;
	color: #FFFFFF;
	width: auto;
}
