/*----------------------------------------------
 |  form.css |
 |-----------
 |  Form and form related elements (input,select,option,legend...)
 *---------------------------------------------*/
form {
  padding: 0px;
  margin: 0px;
}

input, select, textarea {
 	margin-left: .5em;
  color: #000000;
  padding-left: .4em;
  padding-right: .4em;
  border: 1px solid #7E7E7E;
  background-color: #FFFFFF;
  height: 18px;

}

input.name {
   margin: 0px;
   width: 231px;
}

input.phone {
   margin: 0px;
   width: 75px;
}

input.email {
   margin: 0px;
   width: 138px;
}

textarea {
  width: 95%
}

.noborder {
  border: none;
  background-color: transparent;
}

legend {
  padding: 0px;
  margin: 0px;
  color: #000000;
  font-size: 1.4em;
  line-height: 1.45em;
  font-weight: normal;
  letter-spacing: 0.02em;
  padding-bottom: 5px;
}

fieldset {
	border: none;
}

button {
  background-color: transparent;
  background-image: url(../images/button-send.gif);
  background-position: top left;
  background-repeat: no-repeat;
  height: 22px;
  width: 47px;
  border: none;
  cursor: pointer;
}