form.contacto {
    margin: 5px auto 0;
    width: 340px;
}
form.contacto fieldset {
    background:#151515;
    padding: 15px;
}
form.contacto fieldset > div {
    clear: both;
    margin-bottom: 2px;
    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 {
    background:  #151515;
    border: 1px solid #E8E8E8;
    color: #626262;
    display: block;
    float: left;
    padding: 8px;
    resize: none;
    width: 165px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
}
form.contacto input[type="text"]:focus, form.contacto textarea:focus {
	background: #F9F9F9;
	outline: none;
}
form.contacto .ultimo{
    margin-bottom: 0;
    position: relative
}
form.contacto button {
	background:  #151515;
    border: 0 none;
	cursor:pointer;
    color: #fff;
	float: left;
    font-weight: bold;
    height: 32px;
    padding: 0 10px;
	border: 1px solid #fff;
    position: relative;
    text-transform: uppercase;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
}
form.contacto button:hover{
	background: #6A6A6A;
	cursor:pointer;
	}

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