
/* Estilos del formulario */
form.contacto {
    margin: 0px auto 0;
    width: 100%;
}
form.contacto fieldset {
    background: url(img/fdo_3.png);
    border: 1px solid #E1E1E1;
    box-shadow: 0 0 10px #DADADA;
    -webkit-box-shadow: 0 0 10px #DADADA;
    -moz-box-shadow: 0 0 10px #DADADA;
    padding: 25px;
}
form.contacto fieldset > div {
    clear: both;
    margin-bottom: 20px;
    overflow: hidden;
}
form.contacto fieldset div label {
    display: block;
    float: left;
    margin-right: 10%;
    margin-top: 5px;
    text-align: right;
    text-transform: uppercase;
    width: 15%;
	font-size:14px;
}
form.contacto input[type="text"], form.contacto textarea {
    background: #F5F5F5;
	font-family:Arial, Helvetica, sans-serif;
    border: 2px solid #CCC;
    color: #626262;
    display: block;
    float: left;
    padding: 8px;
    resize: none;
    width: 100%;
	font-size:16px;
 
			-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
form.contacto input[type="text"]:focus, form.contacto textarea:focus {
    background: #f9ebcc;
    border: 2px solid #ffae00;
    outline: none;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
form.contacto .ultimo{
    margin-bottom: 0;
    position: relative
}
form.contacto button {
    background: #dc9702;
    border: solid 1px #dc9702;
    color: #fff;
    float: right;
    font-weight: bold;
    height: 32px;
    padding: 0 10px;
    position: relative;
    text-transform: uppercase;
	cursor:pointer;

	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
	-o-transition: all 0.6s ease-in-out;
	-ms-transition: all 0.6s ease-in-out;
	transition: all 0.6s ease-in-out;
}
form.contacto button:hover{
    background: #f86e1b;
	color:#fff;
   
}
 
/* AJAX Gif y mensajes de exito o fracaso */
.hide{
    display: none;
}
.ajaxgif{
    position: absolute;
    right: 150px;
    top: 5px;
	width:16px;
	height:16px;
}

.cont_ .ajaxgif{  width:16px; 	height:16px;}


.msg{
    color: white;
    font-weight: bold;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    position: absolute;
    right: -155px;
    text-transform: uppercase;
    min-width: 121px; font-size:12px;
}
.msg_ok{
    background: #589D05;
}
.msg_error{
    background: red;
}


 