@charset "utf-8";
/* CSS Document */

/*form styles*/
.contact-form{
	width:100%;
	padding:80px 0;
	text-align:left;
	margin-top:80px;
	border-top:1px solid #eaeaea;
}

.contact-form h3{text-transform:uppercase;}

#formpage {
	width:100%;
	vertical-align: top;
	display:inline-block;
	text-align:left;
}

#formpage p{
	text-align:left;
}
.formfield {
	width: 100%;
	display:inline-block;
	margin-right: 10px;
	margin-top: 10px;
	color: #F89520;
	min-width: 175px;
	text-align:left;
}
#formpage div {
	vertical-align: top;
	padding: 5px 5px;
	position: relative;
}
#formpage input,select {
	padding: 6px 5px 10px;
	border: 1px solid #333;
	font-family: "Source Sans Pro", sans-serif;
	color: #000;
	font-size: 16px;
	background: rgba(255,255,255,0.30);
	width: 100%;
	margin-top: 5px;
    border-radius: 2px;
	height: 40px;
}

#formpage input:focus {
	background:#ccc;
	border: 1px solid #f7bb74;
	border-radius:2px
}

#formpage option{color:#333;background:#fff;}

/*===PLACEHOLDER TEXT STYLES===*/

#formpage ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #767676;
}
#formpage ::-moz-placeholder { /* Firefox 19+ */
  color: #767676;
}
#formpage :-ms-input-placeholder { /* IE 10+ */
  color: #767676;
}
#formpage :-moz-placeholder { /* Firefox 18- */
  color: #767676;
}
#formpage input.submit-button, #formpage input.submit-button:focus {
	background:#2A2A2A; 
	color:#fff;
	padding:10px;
	text-decoration:none;
	border-radius:2px;
	transition:ease-in .3s;
	width: 150px;
	border:none;
	height:auto;
}



#formpage input.submit-button:hover{
	background:#000; 
	box-shadow:1px 1px 2px #848484;
	transition:ease-out .3s;
}

input[type="button"],
input[type="submit"] {
	-webkit-appearance: none;
}

#formpage textarea {
	padding: 6px 5px;
	border: 1px solid #333;
	font-family: "Source Sans Pro", sans-serif;
	color: #000;
	font-size: 16px;
	background: rgba(255,255,255,0.30);
	margin-top: 5px;
	width: 100%;
	height: 85px;
	border-radius:2px
}

#formpage textarea:focus{
	background:#ccc;
	border: 1px solid #333;
	border-radius:2px
} 

.CaptchaPanel{width:100%;}

.CaptchaImagePanel img{width:200px;}

.CaptchaAnswerPanel{
	width:250px; margin: auto;
}
.CaptchaWhatsThisPanel a{color:#333;}

.submit-button{
	padding:10px 0px 10px 0px;
	position:relative;
	width:100%;
	text-align:center;
}

/*end form styles*/

