/* Estilos Base */
*{
    color: #050607;
    font: 12px sans-serif;
}
body {
    background: #050607;
}
/* Estilos del formulario */
form.contacto {
    margin: 0px 0 0 0;
    width: 250px;
}

form.contacto fieldset div label {
    display: block;
    float: left;
    margin-right: 0px;
    margin-top: 12px;
    margin-bottom: 5px;
    text-align: left;   
    width: 245px;
	font-size:12px;
	color:#666666;
}
form.contacto input[type="text"], form.contacto textarea {
    background: #F5F5F5;
    border: 1px solid #999;
    color: #626262;
    display: block;
    padding: 5x;
    resize: none;
    width: 245px;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
}

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: #444444;
    border: 0 none;
    color: #FFFFFF;
    float: right;
    font-weight: bold;
    height: 32px;
    padding: 0 10px;
	top: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{
	color: white;
    font-weight: bold;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    position: absolute;
	float:right;
    text-transform: uppercase;
	min-width: 121px;
}
.msg{
    color: white;
    font-weight: bold;
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    position: absolute;
	float:right;
    text-transform: uppercase;
	min-width: 121px;
}

.advertencia
{
	color: white;
    font-weight: bold;
    width: 121px;
	height:100px;
    padding: 0 10px;
    position:relative;
	top:32px;
	left:31px;
}
.msg_ok{
	background: #444444;
}
.msg_error{
	background: red;
}