@charset "utf-8";
/* CSS Document */
form.contactus {
	float: left;
	font-family: 'Open Sans', sans-serif;
}
form.contactus h2
{
	font-family: 'Open Sans', sans-serif;
	font-size:21px;
	
	
	font-weight: 600;
	margin:10px 0;
}
form.contactus p
{
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	margin:0 0 10px
}
form.contactus label {
	float: left;
	font-size: 14px;
	color: #000;
	width: 80px;
	margin: 6px 0;
	text-align: left;
}
form.contactus input, form.contactus textarea {
	float: left;
	border:1px solid #9f9e9e;
	outline: none;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
	font-family: 'Open Sans', sans-serif;
}
form.contactus input[type=text], form.contactus textarea {
	width: 310px;
	padding: 5px;
	background-color: rgba(219,216,216,0.6);
	color: #323232;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	margin: 8px 0;
}
form.contactus input[type=text]:focus, form.contactus textarea:focus, form.contactus input[type=text]:hover, form.contactus textarea:hover {
	background-color: #014d93;
	color:#fff;
}
form.contactus textarea {
	height: 60px;
}
form.contactus input[type=submit] {
	float: right;
	width: 80px;
	border-radius: 2px;
	background: #e31836; /* Old browsers */
background: -moz-linear-gradient(top, #e31836 0%, #c91619 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e31836), color-stop(100%,#c91619)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #e31836 0%,#c91619 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #e31836 0%,#c91619 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #e31836 0%,#c91619 100%); /* IE10+ */
background: linear-gradient(to bottom, #e31836 0%,#c91619 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e31836', endColorstr='#c91619',GradientType=0 ); /* IE6-9 */
	
	padding: 10px;
	margin: 10px 0;
	font-weight: bold;
}
form.contactus input[type=submit]:hover {
	background-color: #C90;
	color: #FFF;
}
