form.mx_form .mx_form_row {
	display: table;
	width: 100%;
	clear: both;
	padding-bottom: 3px;
	padding-top:3px;
}

form.mx_form .mx_form_spacer {
	display: table;
	width: 100%;
	clear: both;
	height: 1em;
}

form.mx_form .mx_form_label {
	display: table;
	width: 100%;
	clear: both;
	height: 1em;
	font-weight: bold;
}

form.mx_form .mx_form_input_name {
	width: 40%;
	float: left;
}

form.mx_form .mx_form_input {
	float: left;
	width:60%;
}

form.mx_form input.mx_captcha {
	width: 50px;
}

form.mx_form input {
	border:solid 1px #999999;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
line-height:30px;
width:100%;
padding-left:5px;
}

form.mx_form input[type=radio] {
	width:auto;
}

form.mx_form textarea {
	width:100%;
	border:solid 1px #999999;
	-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
}

form.mx_form input[type=submit] {
	display:inline-block;
background-color:#EE3533;
color:#FFFFFF;
padding:3px 10px;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
-khtml-border-radius: 7px;
border-radius: 7px;
font-family: 'Museo 500';
font-size:20px;
width:auto;
min-width:250px;
border:none;
margin-left:40%;
}

@media (max-width: 600px) {
	
form.mx_form .mx_form_input_name, form.mx_form .mx_form_input {
	width:100%;
}

form.mx_form input[type=submit] {
	margin-left:0;
}
	
}