* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 62.5%;
	font-family: Helvetica, sans-serif;
	background: white; /* COLOR OF PAGE BACKGROUND */
}

p {
	font-size: 1.3em;
	margin-bottom: 15px;
}

#page-wrap {
    border-radius: 25px; /* AMOUNT OF ROUNDING TO FORM BACKGROUND */
	width: 660px;
	background: #DCDCDC; /* COLOR OF WEBFORM */
	padding: 20px 50px 20px 50px;
	margin: 20px auto;
	min-height: auto; /* 500px; */
	height: auto !important;
	height: 500px;
}

#contact-area {
	width: 600px;
	margin-top: 25px;
}

#contact-area input, #contact-area textarea, #contact-area select {
    border-radius: 25px; /* AMOUNT OF ROUNDING TO TEXT BOXES */
	padding: 5px;
	width: 471px;
	font-family: Helvetica, sans-serif;
	font-size: 1.4em;
	margin: 0px 0px 10px 0px;
	border: 2px solid #ccc;
	box-sizing: border-box;
}

#contact-area textarea {
	height: 90px;
}

#contact-area textarea:focus, #contact-area input:focus, #contact-area select:focus {
	border: 2px solid #900;
}

#contact-area input.submit-button {
    border-radius: 25px; /* AMOUNT OF ROUNDING TO SUBMIT BUTTON */
	width: 100px;
	float: right;
}

label {
	float: left;
	clear: left;
	text-align: right;
	margin-right: 15px;
	width: 100px;
	padding-top: 5px;
	font-size: 1.4em;
}

.hp-field {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.form-error {
	color: #900;
	font-size: 1.3em;
	margin-bottom: 15px;
}

.field-wrap {
	position: relative;
}

.suggest-box {
	position: absolute;
	top: 42px;
	left: 0;
	width: 471px;
	background: #fff;
	border: 2px solid #ccc;
	border-top: none;
	border-radius: 0 0 14px 14px;
	max-height: 220px;
	overflow-y: auto;
	z-index: 10;
	display: none;
}

.suggest-box.open {
	display: block;
}

.suggest-item {
	padding: 8px 16px;
	font-size: 1.3em;
	cursor: pointer;
	border-top: 1px solid #eee;
}

.suggest-item:first-child {
	border-top: none;
}

.suggest-item:hover {
	background: #f1ddd2;
}

.suggest-item .sname {
	color: #23262b;
}

.suggest-item .sloc {
	color: #8a8a8a;
	font-size: 0.85em;
	margin-left: 6px;
}

.suggest-empty {
	padding: 8px 16px;
	font-size: 1.2em;
	color: #999;
}
