/* the main layout */

#quickForm {
  display: block;
  width: 200px;
  margin:0 auto /*this line will center the page*/
  padding: 0;
}

/* and now the form formatting itself */
#quickForm label {
  display: block;
  Width: 100%;
  line-height: 15px;
  margin: 0 0 2px 0;
}

#quickForm input, #quickForm textarea, #quickForm select {
  margin: 0;
  width:198px;
  padding: 2px 0;
  font-size: 1em;
  color: #666666;
  background: #fcfcfc;
  border: 1px solid #ccc;
  margin: 0 0 5px 0;
}   

#quickForm input:focus, #quickForm textarea:focus, #quickForm select:focus {
  border: 1px solid #999;
  background-color: #fcfcfc;
}

#quickForm input.button {
  cursor: pointer;
  border: none;
  font-weight: normal;
  background: url(/images/submit1.jpg) no-repeat left top;
  width: 90px;
  height: 20px;
 /* margin-left:55px; */
  background: #fcfcfc;
  border: 1px solid #ccc;
}

#quickForm span.required{
  font-size: 13px !important;
  color: #84166A !important;
}

#quickForm .errormsg {
  display: block;
  width: 150px;
  line-height:22px;
  color: #FFFFFF;
  font-weight: bold;
  background: #FF9D9D url(/images/stop.gif) no-repeat 10px center;
  padding: 3px 10px 3px 40px;
  margin: 10px 0;
  border-top: 2px solid #FF0000;
  border-bottom: 2px solid #FF0000;
}

#quickForm .msgSent {
  width:200px;
  font-size: 20px;
  text-align: center;
  background: #fcfcfc;
  border: 1px solid #ccc;
  padding-top:10px
  }