/* Estilos del formulario */

form.contacto  {
width: 700px }

form.contacto input[type="text"]:focus, form.contacto textarea:focus {
	background: #999999;
	border: 1px solid #D3D3D3;
	outline: none;
}

form.contacto .ultimo{
    margin-bottom: 0;
    position: relative
}

form.contacto button {
	background: #444444;
    border: 0 none;
    color: #FFFFFF;
    float: right;
    font-weight: bold;
    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: #6A6A6A;
}

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