@charset "utf-8";
/* CSS Document */

.pageContainer {
	text-align:center;
	width:100%;
	overflow:auto;
}

.emailSymbol {
	background:url(../img/contact/email_symbol.png) no-repeat;
	background-size:contain;
}
@media only screen and (max-width:480px) {
	.emailSymbol {
		background-position:top center;
	}
}
@media only screen and (min-width:481px) {
	.emailSymbol {
		background-position:top right;
	}
}

.sectionContentForm {
	width:85%;
	margin:0px auto;
	text-align:center;
}

/*Contact Form */

.formContainer {
	margin:0px auto;
	max-width: 800px;
	text-align:left;
	display:inline-block;
}

.formRow {
	min-height:40px;
	padding:5px;
	display:block;
}

.inputContainer {
	margin: 5px 10px 5px 0px;
	display:inline-block;
}

.inputContainer h4 {
	margin-right:10px;
	display:inline;
}

.inputHeaderContainer {
	width:150px;
	display:inline-block;
}

.inputMessageHeader {
	vertical-align:top;
}

input {
	background:#fff;
	height:40px;
	border:1px solid #666;
	border-radius:5px;
	-moz-border-radius:5px;
	box-sizing:border-box;
}

textarea:hover, input:hover {
	background:#eefaf1;
}

textarea:focus, input:focus {
	background:#eefaf1;
}

.inputStandard {
	width:250px;
}

.inputTitle {
	width:50px;
}

textarea {
	min-height: 120px;
	margin: 0px;
	padding: 5px;
	border: 1px solid #666;
	border-radius: 5px;
	-moz-border-radius: 5px;
	box-sizing: border-box;
}

@media only screen and (max-width:799px) {
	textarea {
		width:250px;
	}
	.inputSubmit {
		width:400px;
	}
}
@media only screen and (min-width:800px) {
	textarea {
		min-width:675px;
	}
	.inputSubmit {
		min-width:675px;
	}
}