/****************************************/
/* PAGE SPECIFIC : HOME 				*/
/****************************************/

/* The flower deco */
.box-deco-1 {
	padding-right: 50%;
}
.box-deco-1 > .box-deco-img {
	width: 100%;
	margin-right: -100%;
	float: right;
}
.box-deco-1 > div {
	margin-left: -30px;
	margin-right: 0;
	padding-right: 10px;
}
@media only screen and (min-width : 1200px) {
	.box-deco-1 {
		max-width: none;
		float: right;
	}
}
/***/

/* */
#home-deco-1 {
	display: block;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 0;
	max-width: 80%;
	margin-left: -20%;
	margin-top: -50%;
}
@media only screen and (min-width : 992px) {
	#home-deco-1 {
		max-width: none;
		margin-left: 0px;
		margin-top: -220px;
	}
	
}
/***/


/* Home contact form */
#home-form-positioner {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	padding: 0 30px;
}
#home-form-container {
	padding: 16px;
	background: rgba(128,128,128,.3);
	color: #fff;
}
#home-contact-form {
	margin: 12px 0;
}
#home-contact-form.off {
	opacity: 0;
	-webkit-transition:	all 0.2s ease; 
	-moz-transition:	all 0.2s ease;
	-ms-transition:		all 0.2s ease;
	-o-transition:		all 0.2s ease;
	transition:			all 0.2s ease;
}
#home-contact-form > .form-field {
	position: relative;
}
#home-contact-form input[type=text],
#home-contact-form input[type=email],
#home-contact-form input[type=submit] {
	width: 100%;
	height: 31px;
	margin-top: 4px;
	border: 1px solid #e9e9e9;
	padding: 3px 0.6em 0 0.6em;
	color: #3c3636;
}
#home-contact-form input[type=text],
#home-contact-form input[type=email] {
	background: #fff;
	line-height: 28px;
}
#home-contact-form input[type=submit] {
	background: #e9e9e9;
	cursor: pointer;
}
#home-contact-form .form-field > .callout {
	display: block;
	position: absolute;
	top: 50%;
	left: 0px;
	margin-top: -10px;
	height: 23px;
	border-radius: 3px;
	padding: 0 1em;
	line-height: 23px;
	background: #aaa;
	opacity: 0;
	-webkit-transition:	all 0.2s ease; 
	-moz-transition:	all 0.2s ease;
	-ms-transition:		all 0.2s ease;
	-o-transition:		all 0.2s ease;
	transition:			all 0.2s ease;
}
#home-contact-form .form-field > .callout:after {
	content: "";
	display: block;
	position: absolute;
	left: 100%;
	top: 50%;
	width: 0px;
	height: 0px;
	margin-top: -5px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 5px solid #aaa;
}
#home-contact-form input.invalid-input {
	border: 1px solid #454545;
}
#home-contact-form input.invalid-input + .callout {
	left: 20px;
	opacity: 0.9;
}
#form-return-container {
	position: absolute;
	z-index: -9;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	text-align: center;
	-webkit-transition:	opacity 0.2s ease; 
	-moz-transition:	opacity 0.2s ease;
	-ms-transition:		opacity 0.2s ease;
	-o-transition:		opacity 0.2s ease;
	transition:			opacity 0.2s ease;
}
#form-return-container.on {
	z-index: 9;
	opacity: 1;
}
#form-return-container > p {
	display: inline-block;
	width: 80%;
	height: 80%;
	vertical-align: middle;
	text-align: center;
}
#form-return-container > p:before,
#form-return-container > p:after {
	content: "";
	display: inline-block;
	width: 0px;
	height: 100%;
	vertical-align: middle;
}
#home-form-container .smaller {
	font-size: 0.775em;
}
#v-space-for-contact-form {
	height: 280px;
}
@media only screen and (min-width : 480px) {
	#home-form-positioner {
		padding: 0 60px;
	}
	#home-form-container {
		max-width: 420px;
		margin: 0 auto;
	}
}
@media only screen and (min-width : 1200px) {
	#home-form-positioner {
		position: relative;
		bottom: auto;
		padding: 0;
	}
	#home-form-container {
		max-width: none;
	}
	#v-space-for-contact-form {
		display: none;
	}
}
/***/

/****************************************/