h1 {
	margin: 10px 0 30px;
	font-size: 150%;
	color: #270039;
}

/* the main layout */

#contentForm {
	display: block;
	width: 450px;/*this line will center the page*/
	padding: 25px;
	background-color: white;
	margin-top: 5px;
	margin-right: auto;
	margin-bottom: 5px;
	margin-left: auto;
}

/* and now the form formatting itself */
label {
	display: block;
	float: left;
	clear: left;
	Width: 150px;
	line-height: 20px;
	margin-bottom: 10px;
	margin: 5px 0;
	color: #270039;
}

input, textarea, select {
	margin: 0;
	padding: 2px;
	font-size: 1em;
	color: #270039;
	background: #F5F5F5;
	border: 1px solid #ccc;
	margin: 5px 0;
}   

input:focus, textarea:focus, select:focus {
	border: 1px solid #999;
	background-color: #CFF09F;
}

input.button {
	cursor: pointer;
	border: none;
	font-weight: bold;
	width: 90px;
	height: 28px;
	margin-left: 150px;
	background-image: url(../images/submit.png);
	background-repeat: no-repeat;
	background-position: left top;
}

span.required{
  font-size: 13px !important;
  color: red !important;
}

.errormsg {
	display: block;
	width: 90%;
	height: 22px;
	line-height: 22px;
	color: #270039;
	font-weight: bold;
	padding: 3px 10px 3px 40px;
	margin: 10px 0;
	border-top: 2px solid #FF0000;
	border-bottom: 2px solid #FF0000;
	background-color: #FF9D9D;
	background-image: url(../images/stop.gif);
	background-repeat: no-repeat;
	background-position: 10px center;
	font-size: 12px;
}

.msgSent {
  font-size: 20px;
  text-align: center;
}

