/* the main layout */

#contentForm {
  display: block;
  width: 500px;
  margin: 70px auto;/*this line will center the page*/
  padding: 25px;
  border: 1px solid black;
  background-color: white;
}

/* and now the form formatting itself */
label {
	display: block;
	float: left;
	clear: left;
	Width: 180px;
	/*	line-height: 20px;*/
	margin-bottom: 10px;
	margin: 5px 0;
}

input, textarea, select {
	margin: 0;
	font-size: 1em;
	color: #898989;
	background: #191919;
	border: 1px solid #8ba000;
	margin: 5px 0;
}   

input:focus, textarea:focus, select:focus {
	border: 1px solid #FFF;
  	color: #FFF;
	background-color: #191919;
}

input.button {
	cursor: pointer;
	border: none;
	font-size: 12px;
	text-decoration: underline;
	color: #FFF;
	background-color:#191919;
/*	background: url(images/submit.jpg) no-repeat left top;*/
	width: 60px;
	height: 20px;
	margin-left: 0px;
}

span.required{
  font-size: 13px !important;
  color: red !important;
}

.errormsg {
	display: block;
	width: 90%;
	height: 22px;
	line-height: 22px;
	color: #FFFFFF;
	font-weight: bold;
	background: #FF9D9D url(images/stop.gif) no-repeat 10px center;
	padding: 3px 10px 3px 40px;
	margin: 10px 0;
	border-top: 2px solid #FF0000;
	border-bottom: 2px solid #FF0000;
	font-size: 10px;
}

.msgSent {
	font-size: 20px;
	text-align: left;
}
