* {
	padding: 0;
	margin: 0;
}

body {
	font-family: Arial, sans-serif;
}

.form-item .inline,
.inline {
	display: inline-block;
}

#wrapper {
	max-width: 980px;
	margin: 50px auto;	
}

form * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

form .inner-wrapper {
	background-color: rgba(195, 211, 218, 0.6);
	padding: 10px;
	margin-bottom: 5px;
}

form h2 {
	background-color: #C3D3DA;
	color: #000;
	padding: 10px;
	font-size: 15px;
}

.form-item {
	position: relative;
	margin-bottom: 5px;
}

.form-item label {
	padding-top: 5px;
	line-height: 1.5em;
	display: block;
}

.form-item textarea,
.form-item input {
	width: 100%;
	padding: 7px;
	border: none;
	font-family: Arial, sans-serif;
	border-radius: 2px;
}

.form-item textarea:focus,
.form-item input:focus {
	box-shadow: 0 0  4px rgba(0,0,0,0.4) inset;
}

.form-item textarea {
	min-width: 100%;
	max-width: 100%;
	min-height: 70px;
	height: 70px;
}

.form-item input[type="radio"],
.form-item input[type="checkbox"] {
	width: auto;
}

fieldset {
	border: none;
	width: 100%;
}

.field-group {
	display: table;
	width: 100%;
	margin-bottom: 5px;
	table-layout: fixed;
}

.field-group .form-item {
	display: table-cell;
	padding: 0 10px;
}

.field-group .form-item:first-child {
	padding-left: 0;
}

.field-group .form-item:last-child {
	padding-right: 0;
} 

.wpcf7-radio .wpcf7-checkbox {
	display: table;
}

.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
	display: table-cell;
	padding-right: 15px;
}

#submit {
	overflow: hidden;
	padding-top: 10px;
}

#submit input {
	background-color: #EC7108;
	color: #fff;
	font-size: 16px;
	border: none;
	padding: 10px 15px;
	float: right;
}

#submit input:hover {
	cursor: pointer;
}

.wpcf7 .wpcf7-list-item {
	margin: 0;
}

select {
	width: 100%;
	padding: 7px 0px;
	border: none;
	height: 32px;
	border-radius: 2px;
}