@charset "UTF-8";
/* CSS Document */


form {
  font-size: 1.4em;
  width: 30em;
}


/* fieldset styling */
fieldset {
  margin: 1em 0; /*  space out the fieldsets a little*/
  padding: 1em;
  border : 1px solid #ccc;
}

/* legend styling */
legend {
  font-weight: bold;
}


/* style for  labels */
label {
  display: block;
  margin-bottom: 3px;
}

label.radio {
	display: inline;
}

/* style for required labels */
label .required {
  font-size: 0.75em;
  color:#760000;
}

input[type=text] {
  width: 180px;
  background: url('http://www.americanheatus.com/images/web/fieldbg.gif') repeat-x top center;
  border-top: solid 1px #7c7c7c;
  border-bottom: solid 1px #c3c3c3;
  border-left: solid 1px #c3c3c3;
  border-right: solid 1px #c3c3c3;
}


input.radio, input.submit {
  width: auto;
}

/* style form elements on focus */
input[type=text]:focus, textarea:focus {
  background: #ffc;
}

input.radio {
  float: left;
  margin-right: 1em;
}

textarea {
  width: 300px;
  height: 100px;
}

/* 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 */

.error {
	margin-top: 5px;
	color: red;
}

