/* form style */
.form-style{
	max-width: 1000px;
	margin: 10px auto;
}
.form-style span.required{
    color:red;
}
.form-style .tel-number-field{
    width: 100%;
	margin-bottom:20px;
}
.form-style input.input-field,
.form-style .tel-number-field,
.form-style .textarea-field,
.form-style  .long,
 .form-style .select-field{
	width: 100%;
	margin-bottom:20px;
	padding:20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	background-color:#EEE;
	color:#666;
	border: 3px solid #EEE;
	font-family:'Open Sans', sans-serif;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.form-style .input-field:focus,
.form-style .tel-number-field:focus,
.form-style .textarea-field:focus,  
.form-style .select-field:focus{
    background-color:#EEE;
}
.form-style .textarea-field{
    height:100px;
}
.form-style input[type="button"],
.form-style input[type="submit"] {
    background-color: #EEE;
    border: 3px solid #EEE;
	font-family:'Open Sans', sans-serif;
    display: inline-block;
    cursor: pointer;
    color: #333;
	font-weight:bold;
	text-transform:uppercase;
    padding: 13px 23px;
    text-decoration: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.form-style input[type="button"]:hover,
.form-style input[type="submit"]:hover {
    background-color: #EEE;
}
.form-style .success{
	background: #EEE;
	padding: 20px;
	margin: 0px 0px 20px 0px;
	border: none;
	font-weight: bold;
	color: #000;
}
.form-style .error {
	background: #FF0000;
	padding: 20px;
	margin: 0px 0px 20px 0px;
	border: none;
	font-weight: bold;
	color: #FFF;
}