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

body {
	margin: 20px 0px;
	padding: 0px;
	text-align: center;
	background-color: #454545;
}

/* 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, ol, 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 {
	font-size: 12px;
	line-height: 16px;
	color: #666;
	margin-right: 35px;
	margin-left: 25px;
	margin-bottom: 20px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
}

ul li {
	font-size: 11px;
	line-height: 16px;
	color: #666666;
	}
	
ul.left {
	float: left;
	margin: 0 10px 10px 40px;
	padding: 0 0 0 15px;
	}	

h1 {
	font: bold 13px Arial, Helvetica, sans-serif;
	color: #333;
	padding: 5px;
	margin-right: 30px;
	margin-bottom: 20px;
	margin-left: 20px;
	text-transform: uppercase;
	text-indent: 5px;
	margin-top: 8px;
	border-bottom: 1px dashed #666;
}
h2 {
	font: bold 13px Arial, Helvetica, sans-serif;
	color: #762d15;
	padding: 0px;
	margin: 40px 0 10px 40px;
	text-transform: capitalize;
}
/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #677a45;
	font-weight: bold;
}
a:visited {
	color: #677a45;
}
a:hover {
	text-decoration: underline;
	color: #677a45;
}
a:active {
}
address {

	font: bold 14px Arial, Helvetica, sans-serif;
	color: #333;
	padding: 0px 0 30px 0;
	margin: 15px 0px 10px 0px;
	text-align: center;
	line-height: 16px;
	width: 209px;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */



/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background: url(images/header.jpg) no-repeat;
	position: relative;
	width: 770px;
	height: 187px;
	margin: 0px;
	padding: 0px;
	text-align: left;
}

/* Creates the div container for the site. */
div#container {
	background: url(images/content_bg.gif) repeat-y;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 5px;
	margin-bottom: 0px;
}

/* Creates the div for the content */
div#content {
	float: left;
	margin: 0;
	padding: 0px;
	width: 530px;
	}


img.right {
	float: right;
	margin: 0px 10px 0 0;
	padding: 0px;
	border: 1px solid #666;
}

/* Creates the div for the sidebar */
div#sidebar{
	float: right;
	margin: 10px 0 0 0;
	padding: 0px;
	width: 230px;
	border-left: 1px dashed #666;
	}


/* Creates the div container for the footer. */
div#footer {
	clear: both;
	margin: 0px auto;
	padding: 0px 0px;
	width: 770px;
	height: 38px;
	background-image:url(images/footer.gif);
	background-repeat: no-repeat;
	}

/* Styles the copyright div */
div#copyright {
	text-align: center;
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #999;
	margin: 0px auto;
	padding: 0px;
	text-transform: capitalize;
}
div#copyright a {
	font-size: 9px;
	color: #999;
	text-decoration: underline;
	font-weight: normal;
}


div#clear {
	clear:both;
	}
