/* CSS Document */

form {
  font-size: 11px;
}


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

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


/* style for  labels */
label {
  display: block;
  padding-top:0px;
}

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

input {
  width: 280px;
  border-width:thin;
  border-style:solid;
  border-color:#A6A8AA;

}


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

/* style form elements on focus */



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

textarea {
  width: 285px;
  height: 36px;
    border-width:thin;
  border-style:solid;
  border-color:#A6A8AA;
}

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

.sendbutton {
  text-align:left;
  width:76px;
  height:18px;
  font-family:Helvetica, Arial, sans-serif;
  font-size:10px;
  color:#FFFFFF;
  background-color:#0E386A;
  border:1px;
  border-color:#666666;
  text-transform:uppercase;
}



/* End the hack */


