@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #CCC;
}
#container  {
	width: 800px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #CCC;
} 
#header  {
	width: 800px;
} 
#sidebar1  {
	float: left;
	width: 236px;
}
#mainContent  {
	border-top-width: 1px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
	background-color: #FFF;
	padding-bottom: 20px;
	font-family: Arial, Helvetica, sans-serif;
	float: right;
	width: 554px;
} 
#mainContent p   {
	left: 20px;
	top: 20px;
	right: 40px;
	bottom: 60px;
	color: #000;
	padding-top: 0px;
	padding-right: 60px;
	padding-bottom: 0px;
	padding-left: 60px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 40px;
	margin-left: 0px;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	line-height: 20px;
	font-weight: normal;
}
#mainContent h1   {
	font-size: 16px;
	color: #000;
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 20px;
	text-align: left;
	margin-left: 60px;
	line-height: normal;
}
#mainContent form {
	margin-right: 60px;
	margin-left: 60px;
	padding: 0px;
	border: 2px solid #CCC;
	margin-top: -20px;
}
#mainContent #frmRegister p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	color: #666;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	line-height: 1em;
	font-weight: bold;
}
#mainContent #frmRegister input.text {
	border: 1px solid #999;
	background-color: #FFC;
}
#mainContent #frmRegister input.text:focus, #mainContent #frmRegister textarea:focus {
	background-color: #eddab1;
	border: 1px solid #9d6124;
}
#footer  {
	padding: 0;
	position: relative;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	clear: both;
} 
#footer p  {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-style: normal;
	color: #666;
	text-align: right;
	position: relative;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
