@charset "utf-8";
/* CSS Document */

.contact-info {
	float: left;
	width: 250px;
	margin: 0 0 0 20px;
}
.contact-form {
	float: left;
	width: 380px;
	margin-right: 10px;
	clear: both;
}
.form-row, .form-label {
	float: left;
	clear: both;
	margin: 0 0 5px 0;
}
.form-input {
	float: left;
	width: 200px;
	margin-left: 10px;
	
}
.form-input input, .form-input textarea {
	width: 200px;
	padding: 2px 2px 2px 4px;
}
.form-input textarea {
	height: 100px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
}
.form-label {
	width: 150px;
	text-align: right;
}
.form-response {
	padding:10px;
	border: 1px dashed #d6d7d9;
	background: #f5f5f5;
	font-weight: bold;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
#submit {
	text-transform: uppercase;
	font-family: Tahoma, Geneva, sans-serif;
	font-weight: bold;
	cursor: pointer;
	background: #c4c4c4; /* Old browsers */
	background: -moz-linear-gradient(left, #c4c4c4 0%, #eeeeee 47%, #c4c4c4 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#c4c4c4), color-stop(47%,#eeeeee), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left, #c4c4c4 0%,#eeeeee 47%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left, #c4c4c4 0%,#eeeeee 47%,#c4c4c4 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left, #c4c4c4 0%,#eeeeee 47%,#c4c4c4 100%); /* IE10+ */
	background: linear-gradient(left, #c4c4c4 0%,#eeeeee 47%,#c4c4c4 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4c4c4', endColorstr='#c4c4c4',GradientType=1 ); /* IE6-9 */
	border: none;
	width: 210px;
	height: 26px;
	line-height: 26px;
	margin: 5px 0 0 0;
}
	#submit:hover {
		background: #c4c4c4; /* Old browsers */
		background: -moz-linear-gradient(left, #c4c4c4 0%, #eeeeee 53%, #c4c4c4 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, right top, color-stop(0%,#c4c4c4), color-stop(53%,#eeeeee), color-stop(100%,#c4c4c4)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(left, #c4c4c4 0%,#eeeeee 53%,#c4c4c4 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(left, #c4c4c4 0%,#eeeeee 53%,#c4c4c4 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(left, #c4c4c4 0%,#eeeeee 53%,#c4c4c4 100%); /* IE10+ */
		background: linear-gradient(left, #c4c4c4 0%,#eeeeee 53%,#c4c4c4 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c4c4c4', endColorstr='#c4c4c4',GradientType=1 ); /* IE6-9 */
		color: #c60723;
		-webkit-box-shadow: 0px 0px 4px 0px rgba(3, 3, 3, .52);
		-moz-box-shadow: 0px 0px 4px 0px rgba(3, 3, 3, .52);
		box-shadow: 0px 0px 4px 0px rgba(3, 3, 3, .52);
|