.contacto{
	padding: 25px 20px 20px;
	margin: 20px 20px 0 180px;
	background-color: none;
	width: 300px;
	float:left;
}
.contacto label{
	display: block; margin-bottom: -3px; font-weight: bold; 
	font: normal 12px Arial, sans-serif; color:#555;
}
.contacto div{
	margin-bottom: 5px;
}
.contacto input[type='text'], .contacto textarea{
	padding: 5px 6px;
	width: 280px;
	border: 1px solid #7bb0cd;
	resize: none;
	box-shadow:0 0 0 3px #c3d0db;
	margin: 5px 0;
	border-radius: 3px;
}
.contacto input[type='text']:focus, .contacto textarea:focus{
	outline: none;
	box-shadow:0 0 0 3px #dde9ec;
}
.contacto input[type='text'].invalido, .contacto textarea.invalido{
	box-shadow:0 0 0 3px #FFC9C9;
}
.contacto input[type='submit']{
	border: 1px solid #09244d;
	box-shadow:0 0 0 3px #c3d0db;
	padding: 4px 16px;
	border-radius: 5px;
	font-weight: bold;
	text-shadow: 1px 1px 0px #09244d;
	color: white;
	margin-left:100px;

	background: #016cb2; 
	background: -moz-linear-gradient(top, #016cb2 0%, #0d3168 100%);
	background: -webkit-linear-gradient(top, #016cb2 0%,#0d3168 100%); 
}
.contacto input[type='submit']:hover{
	background: #38affb; 
	background: -moz-linear-gradient(top, #38affb 0%, #0d3168 100%);
	background: -webkit-linear-gradient(top, #38affb 0%,#0d3168 100%); 
}
.contacto input[type='submit']:active{
	background: #0d3168; 
	background: -moz-linear-gradient(top, #0d3168 0%, #38affb 100%);
	background: -webkit-linear-gradient(top, #0d3168 0%,#38affb 100%);
}
.error{
    background-color: #38affb;
    border-radius: 4px 4px 4px 4px;
    color: white;
    font-weight: bold;
    margin-left: 16px;
    margin-top: 6px;
    padding: 6px 12px;
    position: absolute;
}
.error:before{
    border-color: transparent #38affb transparent transparent;
    border-style: solid;
    border-width: 6px 8px;
    content: "";
    display: block;
    height: 0;
    left: -16px;
    position: absolute;
    top: 8px;
    width: 0;
}
.result_fail{
    background: none repeat scroll 0 0 #BC1010;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
}
.result_ok{
    background: none repeat scroll 0 0 #1EA700;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    text-align: center;
}