/* CSS Document */

form {
  font-size: 12px;
  width: 500px;
  margin: 0 auto;
}

form p {
	margin:0;
	padding:0;
}


/* fieldset styling */
fieldset {
	margin: 15px 0; /*  space out the fieldsets a little*/
	padding: 5px;
	border : 1px solid #666666;
	background-color: #6C8946;
}

/* legend styling */
legend {
font-weight: bold;
  font-size: 13px;
padding-bottom: 15px;
}


/* style for  labels */
label {
  display: block;
}

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


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: 350px;
  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 */

-->
