/* Contact Form CSS */

/* fieldset styling */
fieldset {
  margin: 1em 0; /*  space out the fieldsets a little*/
  padding: 1em;
  border : 1px solid #ccc;
  background-color: #c7dd97;
  width:550px;
}

/* legend styling */
legend {
font-weight: bold;
}


/* style for  labels */
label {
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
display: block;
color:#3a4732;
}

/* style for required labels */
label .required {
  font-size: 0.75em;
  color:#760000;
}

input {
  width: 200px;
}


input.radio, input.submit {
  width: auto;
}

/* style form elements on focus */
input:focus, textarea:focus {
  background: #ffc;
}

input.radio {
  float: left;
  margin-right: 1em;
}

textarea {
  width: 400px;
  height: 200px;
}

/* Hack to make sure the floated radio buttons
   sit next to the labels correctly in IE/Mac*/

/* This is the style I want IE/Mac to see */
input.radio + label {
  text-indent: 2em;
}

/* Using the commented backslash filter, I'm resetting
   the above rule for everything other than IE5/Mac \*/
input.radio + label {
  text-indent: 0;
}

/* End the hack */

.btn {width:150px; margin: 10px 0 0 0;}

.ok {
	background-color: #c7dd97;
	width:510px;
	padding:40px;
}


.error {
	background-color: #c7dd97;
	width:510px;
	padding:40px;
}

.error p{ color:#CC0033;}
.error a{ text-decoration:none; color:#5E6F53;}
.error a:hover{ text-decoration:none; color:#CC0033;}