form { font-size: 1.1em; width: 30em; margin-top: 0; padding-top: 0; }
/* fieldset styling */
fieldset {
  margin: 0.5em 0; /*  space out the fieldsets a little*/
  padding: 1em;
  border : solid 1px #ccc;
}
fieldset p { font-size: 1.1em; line-height: normal; margin: 6px 0 0; padding: 0; }
/* legend styling */
legend { color: #505050; font-weight: bold; }
/* style for  labels */
label { margin-right: 12px; display: block; }
/* 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: 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 */
