html {
	-webkit-text-size-adjust: 100%;
}

body, button {
	font-family: avenir, helvetica, arial, sans-serif;
}

body {
	margin: 0px;
}

div.main {
	max-width: 800px;
	margin: 0 auto;
}

h1 {
	text-align: center;
	margin: 0.5em 0 0.2em 0;
	font-size: 1.8em;
}

h2 {
	text-align: left;
	margin: 0.2em 0;
	font-size: 1.1em;
}

a {
	text-decoration: none;
	color: #344d93;
}

hr {
	height: 1px;
	border: 0;
	background: #d8d8d8;
}

th {
	text-align: left;
}

td, th {
	vertical-align: top;
}

td.currency, th.currency {
	text-align: right;
}

/* ========== form ========== */

form hr {
	height: 1px;
	border: 0;
	background: #c0c0c0;
	margin: 1.5em 0 0.8em 0;
}

form input[type="submit"], a.button {
	padding: .35em 0.8em;
	border: 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;

	font-size: 0.9em;
	text-decoration: none;
	text-align: center;

	color: #ffffff;
	background: #de741b;
	background: linear-gradient(#e8791b, #de741b);
	box-shadow: 0 0 0.5px 0 rgba(0,0,0,0.5),
		inset 0 1px 1px rgba(255,255,255,0.5),
		inset 0 -1px 1px rgba(0,0,0,0.5);
	-webkit-appearance: none;
	cursor: pointer;
}

form input[type="submit"], a.button.large {
	font-size: 1.1em;
	padding: .6em 1.3em;
}

a.button {
	display: inline-block;
}

form fieldset {
	border: 0;
	padding: 0;
	margin: 0.5em 0 0.5em 0;
	color: #ffffff;
	background: #4362A8;
	color: #5a5a5a;
	background: #ffffff;
	text-align: center;
}

form fieldset th, form fieldset td {
	text-align: left;
}

form fieldset p {
	margin: 1.5em 0 0.5em 0;
}

form textarea,
form input[type="text"],
form input[type="tel"],
form input[type="email"],
form input[type="number"],
form input[type="password"] {
	font-size: 18px;
	border: 1px solid #cccccc;
	border-radius: 0;
	background: #ffffff;
	padding: 5px 7px;
	margin: 0;
	-webkit-appearance: none;
}

form select {
	margin: 0 0 0.4em 0;
	padding: 5px;
/*
*/
	-webkit-appearance: none;
	background: #f6f6f6;
	background: linear-gradient(#fafafa, #e8e8e8);
	border-radius: 0;
	font-size: 18px;
	padding: 5px 7px;
	border: 1px solid #cccccc;
}

form input[type="checkbox"] {
	float: left;
	clear: left;
	margin-left: 10px;
}

form label.checkbox_label {
	display: block;
	margin: 0 0 1em 35px;
}

form input[type="radio"] {
	float: left;
	margin-left: 10px;
}

form label.radio_label {
	display: block;
	margin: 0 0 0.4em 30px;
}

form .form_label {
	margin: 0.4em 0 0.1em 0;
	display: block;
	text-align: left;
}

form .form_value {
	margin: 0 0 0.7em 0;
}

input.full_width, textarea
{
	box-sizing: border-box;
	width: 100%;
}

@media screen and (min-width: 600px) {
	fieldset {
		margin-bottom: 0.1em;
	}

	form .form_label
	{
		float: left;
		clear: left;
		width: 170px;
		margin: .4em 10px 0 0;
		text-align: right;
	}

	.form_value {
		display: block;
		padding: 0 0 0 180px;
	}
}

div.g-recaptcha {
	padding: .5em;
}


@media screen and (max-width: 420px) {
	form fieldset.recaptcha {
		border-radius: 0;
		padding: 0;
		background: transparent;
	}

	div.g-recaptcha {
		padding: 0;
	}
}

.required_fields_instructions {
	text-align: right;
	font-size: 0.85em;
}

.allFields {
	display: none;
}

.allFields.highlight {
	display: block;
	color: #be5c1f;
}

span.highlight,
label.highlight {
	color: #be5c1f;
	color: #f78d34;
}

input[type="text"].highlight,
input[type="email"].highlight,
input[type="tel"].highlight,
input[type="number"].highlight,
input[type="password"].highlight,
textarea.highlight,
div.highlight {
	background: #f6e3d6;
}

input[type="checkbox"].highlight {
	border: 2px solid #be5c1f;
}


