@charset "UTF-8";
/* CSS Document */
/*form*/
textarea, input {
	font-family:Arial, 'Helvetica', sans-serif;
	color:#000;
	line-height:1.6em;
	font-size:16px;
	letter-spacing:0px;
}
textarea {
	width:100%;
	height:200px;
	resize: none;
	padding:10px;
	border:1px #e5e5e5 solid;
	/* Firefox */
	width: -moz-calc(100% - 40px);
	/* WebKit */
	width: -webkit-calc(100% - 40px);
	/* Opera */
	width: -o-calc(100% - 40px);
	/* Standard */
	width: calc(100% - 40px);
}
input {
	border:1px #e5e5e5 solid;
	padding:10px;
	/* Firefox */
	width: -moz-calc(100% - 40px);
	/* WebKit */
	width: -webkit-calc(100% - 40px);
	/* Opera */
	width: -o-calc(100% - 40px);
	/* Standard */
	width: calc(100% - 40px);
}
input:focus, textarea:focus { 
	border: 1px solid #000;
	background-color: rgba(255, 255, 255, 1); 
}
input[type="submit"] {
	/* Firefox */
	width: -moz-calc(100% - 19px);
	/* WebKit */
	width: -webkit-calc(100% - 19px);
	/* Opera */
	width: -o-calc(100% - 19px);
	/* Standard */
	width: calc(100% - 19px);
	margin-top:20px;
	margin-bottom:60px;
	border:1px #fff solid;
	background-color:#242424;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	font-family:'Helvetica Neue', sans-serif;
	letter-spacing:1px;
	font-size:20px;
	line-height:35px;
	color:#fff;
	font-weight:100;
	font-style:italic;
	

}
input[type="submit"]:hover {
	background-color:#ad936f;
	color:#fff;
	border:1px #fff solid;
	cursor:pointer;
}
.form_text {
	margin-top:10px;
}
