/* form.css */

* {
  margin: 0;
  padding: 0;
}

form {
  margin: 0;
  padding: 0;
  font-size: 100%;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
}

form fieldset {
  clear: both;
  font-size: 100%;
  border-color: #999999;
  border-width: 1px 0 0 0;
  border-style: solid none none none;
  padding: 10px;
  margin: 0 0 0 0;
}

form fieldset legend {
  font-size: 110%;
  font-weight: normal;
  color: #000000;
  margin: 0 0 0 0;
  padding: 0 5px;
}

label {
  font-size: 100%;
}

label u {
  font-style: normal;
  text-decoration: underline;
}

input, select, textarea {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 100%;
  color: #000000;
}

textarea {
  overflow: auto;
}

form > .formRow {
  position:relative;
  clear: both;
  display: block;
  width: 100%;
  margin:10px 0 0 0;
  padding: 0px;
}

form .formItem {
  float:left;
  clear: none;
  display: block;
  margin:0px;
  padding:0px;
}

form .formLabel {
    font-size:100%;
    font-weight:normal;
}

form .subLabel { clear:both; display:block; font-size:70%; font-style:italic; }

form .half { width:50%; }
form .full { width:95%; }
form .third { width:30%; }
form .twothirds { width:70%; }

