.mainForm {
	display: table;
	width: 100%;
	margin: 0px;
	margin-bottom: 30px;	
	/*border: 1px solid black;*/
}

.contactForm {
	display: table;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	/*border: 1px solid black;*/
}
.textArea {
	float: left;
	width: 100%;
	/*max-width: 680px;*/
	height: 220px;
	margin-right: 30px;
	margin-bottom: 20px;
	border: 1px solid #C9D3DF;
	border-radius: 3px;
	padding-left: 15px;
	padding-right: 15px;
	font-family: OpenSansL;
	font-size: 18px;
	color: #666666;
}
.inputMainfield {
	/*float: left;*/
	display: table;
	width: 100%;
	/*max-width: 325px;*/
	height: 48px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 1px solid #C9D3DF;
	border-radius: 3px;
	padding-left: 15px;
	padding-right: 15px;
	font-family: OpenSansL;
	font-size: 18px;
	color: #666666;
}
.inputField {
	float: left;
	width: 100%;
	/*max-width: 325px;*/
	height: 48px;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 1px solid #C9D3DF;
	border-radius: 3px;
	padding-left: 15px;
	padding-right: 15px;
	font-family: OpenSansL;
	font-size: 18px;
	color: #666666;
}
.inputTime {
	float: left;
	width: 26%;
	/*max-width: 325px;*/
	height: 48px;
	margin-right: 2%;
	margin-top: 5px;
	margin-bottom: 5px;
	border: 1px solid #C9D3DF;
	border-radius: 3px;
	padding-left: 15px;
	/*padding-right: 15px;*/
	font-family: OpenSansL;
	font-size: 18px;
	color: #666666;
}
.inputTitle {
	margin-top: 1em;
	font-family: OpenSansS;
	font-size: 19px;
    letter-spacing: -.04em;
    color: #727272;
}
.inputTitle2 {
	float: left;
	/*max-width: 325px;*/
	height: 48px;
	/*margin-right: 4%;*/
	/*margin-bottom: 20px;*/
	/*border: 1px solid #C9D3DF;*/
	/*padding-left: 15px;*/
	padding-top: 11px;
	font-family: OpenSansL;
	font-size: 17px;
	/*color: #666666;*/
}
.inputDescription {
	float: left;
	margin-bottom: 10px;
	/*border: 1px solid #C9D3DF;*/
	padding-left: 5px;
	padding-right: 5px;
	font-size: 13px;
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
}
.description {
	float: left;
	margin-bottom: 10px;
	line-height: 1.5em;
	/*border: 1px solid #C9D3DF;*/
	padding-left: 5px;
	padding-right: 5px;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	color: #666666;
}
.checkField  {
	display: table;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	/*height: 48px;*/
	margin-bottom: 10px;
	/*border: 1px solid #C9D3DF;*/
	position: relative;
}

.submitButton {
	float: right;
	width: 232px;
	height: 48px;
	border: 1px solid #006699;
	border-radius: 3px;
	font-family: OpenSansS;
	font-size: 15px;
	color: #fff;
	background-color: #4E95DD;
}

.fileButton::-webkit-file-upload-button {
	cursor: pointer;
	width: 40%;
	height: 46px;
	font-family: OpenSansS;
	font-size: 15px;
	color: #fff;
	border: none;
	background-color: #4E95DD;
}

.fileButton {
	float: left;
	width: 48%;
	height: 48px;
	/*padding-top: 10px;*/
	margin-bottom: 5px;
	/*border: 1px solid #006699;*/
	border: 1px solid #006699;
	border-radius: 3px;
	font-family: OpenSansL;
	font-size: 15px;
	/*color: #fff;*/
	color: #666666;
	cursor: pointer;
	/*background-color: #4E95DD;*/
}

/*.fileButton::-webkit-file-upload-button {
  visibility: hidden;
}*/

.inputNumber {
	float: left;
	width: 48%;
	height: 48px;
	margin-bottom: 5px;
	border: 1px solid #C9D3DF;
	border-radius: 3px;
	padding-left: 15px;
	padding-right: 15px;
	font-family: OpenSansL;
	font-size: 19px;
	color: #666666;
}

@media only screen and (max-width: 640px) {
.inputField {
	width: 100%;
}

.submitButton {
	width: 100%;
}
}
/* THE FOLLOWING STYLES CONCERNS THE CHECKBOXES */
/* The container of the checkbox and text */
.chechboxContainer {
	/*display: table-cell;*/
	/*width: 48%;*/
	vertical-align: middle;
	cursor: pointer;
	padding-left: 5px;
	font-family: Calibri, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: lighter;
    line-height: 1.4em;
	/*border: 1px solid #000000;*/
}

/* Hide the browser's default checkbox */
.chechboxContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.checkmark {
	position: absolute;
	height: 25px;
	width: 25px;
	background-color: #eee;
}
/* The text after the checkbox */
.labelText {
	margin-left: 40px;
}

/* On mouse-over, add a grey background color */
.chechboxContainer:hover input ~ .checkmark {
	background-color: #ccc;

}
/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	background-color: #2196F3;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}
/* Show the checkmark when checked */
.chechboxContainer input:checked ~ .checkmark:after {
	display: block;
}
/* Style the checkmark/indicator */
.chechboxContainer .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}