input, textarea, button {
	-moz-appearance: none;
	-moz-border-radius: 0;
	-webkit-appearance: none;
	-webkit-border-radius: 0; 
}
.form {

}
.form form em {
	color: red;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
}
.form form label {
	font: 200 20px "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}
.form form input[type=text],
.form form input[type=password],
.form form textarea,
.form form select,
.form form input[type=button],
.form form input[type=submit] {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
.form form input[type=text],
.form form input[type=password],
.form form textarea,
.form form select {
	background: #fcfcfc;
	border: 1px solid #e6e6e6;
	box-shadow: inset 0 0 5px #f6f6f6, inset 0 2px 5px #eee;
	color: #444;
	font: 16px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding: 15px;
	width: 100%;
	resize: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.form form input[type=password] {
	text-align: center;
}
.form form select {width: 100%;}
.form form option {color:#666;}
.form form option#empty {color:#aaa;}

.form form #answer {
	background: #f6f6f6;
	color: #777;
	cursor: default;
	float: left;
	font: 16px/18px "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 1px;
	margin-right: 2%;
	padding: 16px 0;
	text-align: center;
	text-shadow: 0 1px 0 #fff;
	width: 28%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none; /* Chrome/Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+ */
	/* Rules below not implemented in browsers yet */
	-o-user-select: none;
	user-select: none;
}
.form form #maths {
	float: right;
	width: 70%;
}
.form form input[type=text]:hover, .form form input[type=password]:hover, .form form textarea:hover, select:hover {
	border: 1px solid #ccc;
	outline: none;
}
.form form input[type=text]:active, .form form input[type=password]:active, .form form textarea:active, select:active,.form form input[type=text]:focus, .form form input[type=password]:focus, .form form textarea:focus, select:focus {
	border: 1px solid #BFDBEB;
	outline: none;
}

.form form #send {
	margin-bottom: 5px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}
.form form #send:hover,
.form form #send:focus {
	background: #006EAF;
	color: #fff;
	outline:none;
}

.error {
	display: none;
	background: #FF9E00;
	color: #fff;
	font-size: .75em;
	line-height: 1em;
	margin: -1px 0 0;
	padding: 4px 7px;
	position: absolute;
	right: 0;
	text-align: center;
	text-transform: uppercase;
	z-index: 3;
	-moz-border-radius: 0 0 3px 3px;
	-webkit-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}
#contact-form-success {
	display: none;
	background: #f6f6f6;
	border-radius: 5px;
	padding: 20px;
	text-align: center;
}
#contact-form-success h3 {
	color: #222;
	font-style: normal;
	margin-bottom: 10px;
}

.field {
	margin-top: 20px;
	position: relative;
}
.label {
	margin-bottom: 5px;
}
#name-field {
	margin-top: 0;
}
#submit-field {
	margin-top: 25px;
	position:static;
}
.form form input.problem,.form form input.problem:hover,.form form input.problem:focus,.form form textarea.problem,.form form textarea.problem:hover,.form form textarea.problem:focus {
	border-color: #FFC680;
}