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

body {
	margin: 0px 0px 20px;
	padding: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
}
/* Sets the margin and padding to zero */
ul, li {
	 margin: 0;
	 padding: 0;
	 text-align: left;  /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* 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;
	color: #4F4F4F;
}
/* Redefines the p tag */
p {
	font-size: 12px;
	line-height: 16px;
	margin-right: 35px;
	margin-left: 35px;
	margin-bottom: 20px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
}

h1 {
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E1DEDE;
	font-size: 18px;
	font-weight: bold;
	color: #64B01E;
}
h2 {
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	text-transform: uppercase;
	padding: 5px;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited {
	margin: 0px;
	padding: 0px;
}
a:hover {
	text-decoration: underline;
	color: #478CB9;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background: center top;
	position: relative;
	width: 550px;
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	vertical-align: top;
	height: 400px;
}
/* Creates the div container for the site. */
div#container {
	width: 900px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	position: relative;
	background-image: url(images/contentbg.gif);
	background-repeat: repeat-y;
}

.name {
	color: #3F7E9E;
}
.clear {
	clear: both;
}

/* ----------------- 2 COLUMN FORM  ------------------- */
div#form {
	width: 550px;
	margin-right: auto;
	margin-left: auto;
}
input {
	margin-bottom: 10px;
	width: 260px;
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
}
textarea {
	margin-bottom: 10px;
	width: 200px;
	height: 70px;
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
label {
	padding: 5px 0px 0 0;
	display: block;
	text-align: left;
	color: #666666;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
textarea#comments {
	width: 100%;
	color: #666666;
	float: left;
}
div#rightform {
	float: right;
	margin-right: 0px;
}
div#clear {
	clear: both;
	margin: 0px;
	padding: 0px;
}
div#text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #3F7E9E;
	text-align: left;
	margin-top: 10px;
	line-height: 17px;
	font-weight: normal;
	padding-right: 35px;
	padding-left: 35px;
}
div#leftform {

	float: left;
	margin-right: 10px;
}
.submit {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
}

