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

body{
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;	
}

.contact_form{
	width: 96%;	
}

.contact_form input[type="text"],
.contact_form textarea {
	border: 1px solid #d8d8d8;
	float: left;
	width: 96%;
	margin: 4px;
	font-size: 12px;
	padding: 8px;
}

.contact_form input[type="submit"],
.contact_form input[type="button"],
.contact_form input[type="reset"] {
	cursor: pointer;
	padding: 8px 20px;
	border: 1px solid #eaeaea;
	font-size: 12px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: #666;
	background: #f2f2f2; /* Old browsers */
	background: -moz-linear-gradient(top, #f2f2f2 0%, #d1d1d1 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f2f2), color-stop(100%,#d1d1d1)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #f2f2f2 0%,#d1d1d1 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #f2f2f2 0%,#d1d1d1 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #f2f2f2 0%,#d1d1d1 100%); /* IE10+ */
	background: linear-gradient(to bottom, #f2f2f2 0%,#d1d1d1 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#d1d1d1',GradientType=0 ); /* IE6-9 */
}

.contact_form input[type="submit"]:hover,
.contact_form input[type="button"]:hover,
.contact_form input[type="reset"]:hover {
	color: #333;
	background: #d1d1d1; /* Old browsers */
	background: -moz-linear-gradient(top, #d1d1d1 0%, #f2f2f2 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d1d1d1), color-stop(99%,#f2f2f2)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #d1d1d1 0%,#f2f2f2 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #d1d1d1 0%,#f2f2f2 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #d1d1d1 0%,#f2f2f2 99%); /* IE10+ */
	background: linear-gradient(to bottom, #d1d1d1 0%,#f2f2f2 99%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1d1d1', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
}

.placeholder {
	color: #666;
}