@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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000066;
	background-color: #2E5E62;
}

#container  {
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #E8E8FF;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	width: 800px;
} 
#main {
	padding: 20px;
}


h1 {
	font-size: 16px;
	padding-top: 10px;
	display: block;
	text-transform: uppercase;
	padding-bottom: 30px;
	text-align: center;
	margin: 0px;
}
h2 {
	font-size: 14px;
	padding-top: 20px;
	text-transform: uppercase;
	margin: 0px;
}
p {
	margin: 0px;
	padding-top: 5px;
	padding-bottom: 10px;
	line-height: 1.5em;
}


.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;
}

.fltlft { /* this class can be used to float an element left in your page */

}

.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;
}
form {


	background-image: url(../images/form_background_gradient.jpg);
	background-repeat: repeat;


	margin-left: 15px;
	margin-bottom: 10px;
}
.elementDiv {
	font-size: 12px;
	margin-left: 10px;
	margin-bottom: 20px;
}
.checkBox {
	float: left;
	width: 20px;
	margin-right: 10px;
}

label {
	width: 650px;
}
#buttons {
	margin-left: 275px;
	margin-top: 20px;
}
#submit {
	width: 100px;
	display: inline;
}
#reset {
	width: 100px;
	margin-left: 10px;
	display: inline;
}

#elementDivName {
	float: left;
	width: 350px;
	margin-bottom: 10px;
}
#name {
	margin-left: 30px;
}
#elementDivDate {
	float: right;
	width: 350px;
	margin-bottom: 10px;
}

#elementDivTelephone {
	float: left;
	width: 350px;
	clear: left;
	margin-bottom: 20px;
}



#elementDivEmail {
	float: right;
	width: 350px;
	margin-bottom: 20px;
}
#footer {
	padding: 20px;
}
label.error {
	font-size: 1em;
	font-weight: bold;
	color: #FF0000;
	display: block;
}
.thankYou {
	font-style: italic;
	text-align: center;
	margin-top: 100px;
}

