/* Estilos Base */

/* Estilos del formulario */
form.contacto {
    margin-top: 10px;
    width: 95%;
	font-size: 12px;   
}
 
form.contacto fieldset {
  background: transparent;
    padding: 0px;
	
}
form.contacto fieldset > div {
    clear: both;
    margin-bottom: 0px;
    overflow: hidden;
}
form.contacto fieldset div label {
    display: block;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
    text-align: right;
    text-transform: uppercase;
    width: 84px;
}
form.contacto input[type="text"], form.contacto textarea {
    font-size: 12px;
  line-height: 12px;
  padding: 5px 4px 6px 5px;
  background-color: #f9f9f9;
  box-shadow: none;
  -moz-box-shadow: none;
  /* Firefox */

  -webkit-box-shadow: none;
  /* Safari, Chrome */

  border: 1px solid #dddddd;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}
form.contacto input[type="text"]:focus, form.contacto textarea:focus {
    background: #F9F9F9;
    border: 1px solid #D3D3D3;
    outline: none;
}
form.contacto .ultimo{
    margin-bottom: 0;
    position: relative
}
form.contacto button {
    background: #7e7e7e;
	font-size: 12px;
    border: 0 none;
    color: #FFFFFF;
    height: 32px;
    padding: 6px 12px;
	 margin: 10px;
     border: 1px solid #666666;
}
form.contacto button:hover{
    color: #ffffff;
  background: #888;
  border-color: #666666;
  text-decoration: none;
  text-shadow: 0 1px 0 #333;
}
.primary {
  background: #E55E48;
  border-color: #D03922;
}
 
/* AJAX Gif y mensajes de exito o fracaso */
.hide{
    display: none;
}
.ajaxgif{
    position: absolute;
    right: 150px;
    top: 20px;
}
.msg{
    color: #669900;
    height: 30px;
    line-height: 30px;
    padding: 0px 10px;
    position: static;
    right: -155px;
    min-width: 141px;
	font-size: 11px;

}
.msg_ok{
    background: transparent;
}
.msg_error{
    background: red;
}