





/*FORMULARIO NUEVO*/
/* the main layout */

#contentForm {
  display: block;
  width: 300px;
  margin: 0px auto;/*this line will center the page*/
  padding:5px;
border:thin dotted #CCC;  background-color:#f4f4f4;
}

/* and now the form formatting itself */
label {
  display: block;
  float: left;
  clear: left;
  Width: 280px;
  line-height: 12px;
  margin:10px 0 2px 0;
}


.box-form{
padding:3px 20px;
width:232px;
margin:0 0 0px 0;
background:#fff;
border:1px solid #c0c0c0;
}

input:focus, textarea:focus, select:focus {
  border: 1px solid #999;
  background-color: #FFFFFF;
}

input.button {
  cursor: pointer;
  border: none;
  font-weight: bold;
  background: url(images/enviar.png) no-repeat left top;
  width: 75px;
  height: 22px;
  margin-left: 0px;
}

span.required{
  font-size: 13px !important;
  color: red !important;
}

.errormsg {
  display: block;
  width:230px;
  height: 22px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: bold;
  background: #FF9D9D url(images/stop.gif) no-repeat 10px center;
  padding: 3px 10px 3px 30px;
  margin: 10px 0;
  border-top: 2px solid #FF0000;
  border-bottom: 2px solid #FF0000;
}

.msgSent {
  font-size: 20px;
  text-align: center;
}