@charset "utf-8";
/* CSS Document */
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;
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #90EE90;
}
.main #container {
	width: 960px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFF91;
	border: 1px solid #000;
} 
.main #header {
	background-color: #1b8ecc;
	font-family: Georgia, "Times New Roman", Times, serif;
	width: 960px;
	height: 150px;
} 
.main #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.main #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* padding keeps the content of the div away from the edges */
	margin-top: 20px;
	text-align: center;
}
.main #mainContent {
	width: 700px;
	margin-top: 20px;
	margin-right: 220px;
	margin-bottom: 10px;
	margin-left: 30px;
} 
#please   {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bolder;
	color: #000;
	text-align: center;
	margin-top: 20px;
	width: 300px;
	margin-right: 240px;
	margin-left: 220px;
	text-decoration: underline;
}
#form1   {
	width: 400px;
	margin-right: 190px;
	margin-left: 200px;
	height: 360px;
	text-align: center;
	background-color: #FF9B6A;
	padding-top: 10px;
	border: 1px solid #FF0;
}
.main #footer {
	background:#1b8ecc;
	margin-top: 10px;
} 
#footer a {
	color: #000;
	text-decoration: none;
}
.main #footer p {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.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;
}
#mainContent #p2 {
	border: 2px solid #1B8ECC;
	font-size: 15px;
	text-align: center;
}
