/* css taken from CSS Mastery */
.fillForm {
  width: 90%;
  font-size: 1.2em;
  
  margin: 5px;
}

/* fieldset styling */
.fillForm fieldset {
  border : 1px solid #ccc;  
  
  padding: 5px;
  
  margin-bottom: 5px;
}

/* legend styling */
.fillForm legend {
  font-weight: bold;
}

.fillForm p {
  position: relative;
  width: 100%;
  padding: 5px 0;
}

/* style for  labels */
.fillForm label {
  float: left;
  width: 15em;
}

/* style for required labels */
.fillForm .required {
  font-size: 0.75em;
  color:#760000;
}

.fillForm input {
  width: expression(this.type=="text"?"200px":"auto");
}

input.radio, .fillForm input.checkbox, .fillForm input.submit {
  width: auto;
}

/* style form elements on focus */
.fillForm input:focus, .fillForm textarea:focus {
  background: #ffc;
}

.fillForm input.radio {
  float: left;
  margin-right: 1em;
}

.fillForm textarea {
  width: 300px;
  height: 100px;
}

.fillForm textarea.content {
  width: 90%;
  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 */
.fillForm input.radio + label {
  text-indent: 2em;
}

/* Using the commented backslash filter, I'm resetting
   the above rule for everything other than IE5/Mac \*/
.fillForm input.radio + label {
  text-indent: 0;
}

/* End the hack */