#formulario{
	width:400px;
	margin-top:30px;
	text-align:center;
}

#contacto{
	text-align:left;
	width:375px;
}
fieldset{
	text-align:left;
	width:350px;
	border:1px solid #ff0000;
	padding:5px;
}
legend{
	font-size:15px;
	color:#ff0000;
}

label{
 width:70px;
	font-size: 15px;
	line-height: 15px;
	float: left;
	color: red;
}

input[type=text]{
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
	-moz-border-radius-bottomright:3px;
	-moz-border-radius-bottomleft:3px;
	width: 200px;
	height: 25px;
	border: 1px red solid;
	padding:2px;
	font-size: 15px;
	background: #fff;
}

 textarea{
 	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
	-moz-border-radius-bottomright:3px;
	-moz-border-radius-bottomleft:3px;
	width: 300px;
	height: 50px;
	border: 1px red solid;
	padding:2px;
	font-size: 15px;
	background: #fff;
	overflow: auto;
}

input[type=text]:hover, textarea:hover{
	background: #fff8c1;
}

 input[type=submit]{
	-moz-border-radius-topleft:3px;
	-moz-border-radius-topright:3px;
	-moz-border-radius-bottomright:3px;
	-moz-border-radius-bottomleft:3px;
	width: 70px;
	height: 20px;
	background:#ff0000;
	font-size:14px;
	font-weight: bold;
	color: #fff;
	float: right;
	border: 1px solid #6f0000;
	cursor: pointer;
}
 input[type=submit]:hover{
 	background:#6f0000;
 }

