@charset "UTF-8";
/* CSS Document */

/*formulario*/

.textfield_effect {
/*we will first set the border styles.*/
position:relative;
text-align:left;
font-weight:200;
border-width: 1px;
border-style: solid;
border-color: #333333;
/*we are now going to add in the shadow image that we created earlier*/
background-color:#FFF;
/*I am going to add some text formatting of my own*/
font-size: 17px;
color:#333333;
padding:3px;
margin-bottom:10px;
width: 80%;
}
/*we are now going to style how the textfield will look when we
hover over it and when we actually have it selected*/
.textfield_effect:hover {
border-color:#CCC;
border-width: 1px;
padding:3px;
}
.textfield_effect:focus {
border-color:#fff;
border-width: 1px;
background-color:#FAF7EE;
}

.submit {
	position:relative;
	float:right;
	margin-right:20%;
	width: 150px;
	min-height:35px;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #5e58a7), color-stop(1, #5e58a7));
	background:-moz-linear-gradient(top, #5e58a7 5%, #5e58a7 100%);
	background:-webkit-linear-gradient(top, #5e58a7 5%, #5e58a7 100%);
	background:-o-linear-gradient(top, #5e58a7 5%, #5e58a7 100%);
	background:-ms-linear-gradient(top, #5e58a7 5%, #5e58a7 100%);
	background:linear-gradient(to bottom, #5e58a7 5%, #5e58a7 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5e58a7', endColorstr='#5e58a7',GradientType=0);
	background-color:#5e58a7;
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
	border-radius:4px;
	border:1px solid #5e58a7;
	display:inline-block;
	cursor:pointer;
	color:#fff;
	font-size:17px;
	font-weight:normal;
	padding:4px 15px;
	text-decoration:none;}
	
.submit:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe9e1a), color-stop(1, #fe9e1a));
	background:-moz-linear-gradient(top, #fe9e1a 5%, #fe9e1a100%);
	background:-webkit-linear-gradient(top, #fe9e1a 5%, #fe9e1a100%);
	background:-o-linear-gradient(top, #fe9e1a 5%, #fe9e1a100%);
	background:-ms-linear-gradient(top, #fe9e1a 5%, #fe9e1a100%);
	background:linear-gradient(to bottom, #fe9e1a 5%, #fe9e1a100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe9e1a', endColorstr='#fe9e1a',GradientType=0);
	background-color:#fe9e1a;
	color:#fff;
}
.submit:active {
	position:relative;
	top:1px;
}

