/* Estilos Base */
*{
	color: #000000;
}
/*body {
    background: #F4F4F4;*/
}
/* Estilos del formulario */
form.contacto {
	padding-left:495;
	width: 470px;
	height: 450px;
}
form.contacto fieldset {
	background: 0 0 #f4f4f4;
	/* border: 1px solid #E1E1E1;
    box-shadow: 0 0 10px 0 #DADADA;
    -webkit-box-shadow: 0 0 10px 0 #DADADA;
    -moz-box-shadow: 0 0 10px 0 #DADADA;*/
    padding-top: 130px;
	padding-left:495px;
	padding-right:30px;
	height:550px;
	top: -2px;
}
form.contacto fieldset > div {
	clear: both;
	margin-bottom: 11px;
	overflow: hidden;
	font-family: "Open Sans Condensed Light", sans-serif;
	font-size: 16px;
	color: #D0CFC4;
	text-align: left;
	font-weight: 300;
	text-transform: uppercase;
}
form.contacto fieldset div label {
    display: block;
    float: left;
	padding-bottom:5px;
    /*margin-right: 15px;*/
    margin-top: 5px;
    text-align: left;
    text-transform: uppercase;
    width: 84px;
}
form.contacto input[type="text"], form.contacto textarea {
	background: #FFFFFF;
	border: 0px solid #E8E8E8;
	color: #626262;
	display: block;
	float: left;
	padding: 8px;
	resize: none;
	width: 450px;
	-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: 0px solid #D3D3D3;
	outline: none;
	font-family: Arial, Helvetica, sans-serif;
}
form.contacto .ultimo{
    margin-bottom: 0;
    position: relative
}
form.contacto button {
	background: #95B3C8;
	border: 0 none;
	color: #FFFFFF;
	float: right;
	font-weight: bold;
	height: 32px;
	padding_top: 20px;
	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: 150px;
    top: 5px;
}
.msg{
	font-weight: bold;
	height: 32px;
	line-height: 32px;
	position: absolute;
	right: -155px;
	text-transform: uppercase;
	padding-left: 10px;
	padding-right: 10px;
	width: auto;
}
.msg_ok{
	color: #95B3C8;
}
.msg_error{
	background: red;
}
