/* Estilos del formulario */
form.contacto {
    margin: 0px auto 0;
    width: 684px;
}
form.contacto fieldset {
    background: 0 0 white;
    border: 1px solid #fffeff;
}
form.contacto fieldset > div {
    clear: both;
    margin-bottom: 20px;
    overflow: hidden;
}
form.contacto fieldset div label {
    display: block;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
    text-align: right;
    text-transform: uppercase;
    width: 60px;
	font-size: 11px;
	color: #0078be;
}
form.contacto input[type="text"], form.contacto textarea {
	background: #ebfbff;
	border: 1px solid #ceeefd;
	color: #626262;
	display: block;
	float: right;
	padding: 8px;
	resize: none;
	width: 560px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
}
form.contacto input[type="text"]:focus, form.contacto textarea:focus {
	background: #fffeff;
	border: 1px solid #ceeefd;
	outline: none;
}
form.contacto .ultimo{
    margin-bottom: 0;
    position: relative
}
form.contacto button {
	background: #1ab7ea;
    border: 0 none;
    color: #FFFFFF;
    float: right;
    height: 32px;
    padding: 0 10px;
    position: relative;
    text-transform: uppercase;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
}
form.contacto button:hover{
	background: #54d1f9;
}

/* AJAX Gif y mensajes de exito o fracaso */
.hide{
	display: none;
}
.ajaxgif{
	position: absolute;
    right: 150px;
    top: 5px;
}
.msg{
    color: white;
    font-weight: bold;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    position: absolute;
	right: -155px;
    text-transform: uppercase;
	min-width: 121px;
}
.msg_ok{
	background: #589D05;
}
.msg_error{
	background: red;
}