/* form.css */

form {
  margin: 0px;
  text-align: left;
}

fieldset {
  border-width: 1px 0px;
  border-color: #768d4c;
  border-style: solid;
  margin: 10px 0px;
  padding: 5px 30px;
  text-align: left;
}

legend {
  font-size: 120%;
  font-weight: bold;
  color: #768d4c;
  padding: 0px 5px;
}

label {
  display: block;
  width: 300px;
  font-size: 100%;
  margin: 10px 0px 5px 0px;
}

label.labelRequired {
  font-weight: bold;
}

label.labelOptional:after {
  content: ' (Optional)';
}

label.labelRequired:after {
  content: ' (Required)';
}

input, select, textarea {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 3px;
  font-size: 100%;
}

input.inputText, textarea.inputTextarea {
  display: block;
  width: 300px;
}

form fieldset input.inputText, form fieldset textarea.inputTextarea {
  margin-left: expression('-201px'); /* hack so that ie shows these types of form elements with the same amount of distance from the left as other browsers */
}

input.inputCheckbox, input.inputRadio {
  width: 14px;
  height: 14px;
  margin-left:20px;
}

label.labelCheckbox, label.labelRadio {
  display: inline;
  width: auto;
}

input.inputSubmit {
  width: auto;
  padding: 0px 10px;
  background-color: #cfe8b7;
  color: #4f7627;
  font-weight: bold;
  border: 1px solid #4f7627;
}

#siteSearch {
  float: right;
  margin: 6px -8px 0px 0px;
}

#siteSearch form label {
  display: inline;
  width: auto;
  font-weight: bold;
  font-size: 85%;
  color: #4F7627;
  margin: 0px;
}

#siteSearch input {
  font-size: 100%;
  border: 1px solid #4f7627;
  margin: 0px;
  width: 170px; 
  padding: 0px;
}

#siteSearch input.SearchButton {
  background-color: #cfe8b7;
  color: #4f7627;
  width: auto;
  font-size: 80%;
  font-weight: bold;
  margin-left: 2px;
}

#content input.zoom_button {
  background-color: #cfe8b7;
  color: #4f7627;
  width: auto;
  font-size: 80%;
  font-weight: bold;
  margin-top: 15px;
}

