/* CSS Document */


#contact_details{
  float: right;
  margin-left: 20px;
  width: 150px;
}

#contact_form form{
  font-family: "Trebuchet MS", arial, sans-serif;
  font-size: 100%;
  min-width: 300px;
  max-width: 385px;
  width: 360px;
}

#contact_form fieldset{
  border-color: #676767;
  border-width: 1px;
  border-style: solid;
  padding: 5px;
}

#contact_form fieldset legend{
  /*make the legend text bold*/
  font-weight: bold;
  color: #676767;
}

#contact_form label{
  display: block;
  float: left;
  width: 120px;
  text-align: right;
  margin-top: 5px; /*set the top margin the same as the input and textarea elements*/
}


#contact_form input, #contact_form textarea{
  width: auto;
  float: left;
  margin-top: 5px; /*set the top margin the same as the label elements*/
  margin-left: 5px;
  color: #676767;
}

#contact_form select{
  width: auto;
  margin-top: 5px; /*set the top margin the same as the label elements*/
  margin-left: -2px;
  color: #676767;
}

#contact_form br{
  clear: left;
}

#contact_form input#submit, #contact_form input#reset{
  float: right;   /*override the float to send it to the right of the form */
}

#contact_form textarea{
  overflow: auto;
}
