<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*=============================================
	FORM STYLING 
=============================================*/
#contactForm
{
    width: 340px;
    height: auto;
    background-color: #f1b851;
    color: #ffffff;
    font-size: 17px;
    font-family: 'Droid Serif',Serif;
    padding: 30px;
    padding-top: 22px;
    border: 1px solid #664E22;
    -webkit-border-radius: 10px;
    border-radius: 20px;
    -webkit-box-shadow:  2px 4px 8px 2px rgba(0, 0, 0, .5);
    box-shadow:  2px 4px 8px 2px rgba(0, 0, 0, .5);
}
#contactForm label:not([class="error"])
{
    display: block;
    padding-bottom: 5px;
}

#contactForm input[type="text"],
#contactForm textarea {
    width: 100%;
    display: block;
    color: #333333;
    -webkit-box-shadow: inset 2px 2px 8px 0px rgba(0, 0, 0, .5);
    box-shadow: inset 2px 2px 8px 0px rgba(0, 0, 0, .5);
    padding: 2px 5px;
    border: none;
}

#contactForm input[type="text"]
{
    height: 2em;
}

#contactForm textarea
{
    resize: none;
}

#contactForm .recaptchatable input[type="text"],
#contactForm .recaptchatable textarea {    
    display: inline;        
    height:auto;
    border: none;
    padding: 0;    
    box-shadow: none;
}

#contactForm input[type="submit"],
#contactForm input[type="reset"]
{
    text-align: center;
    padding: 5px !important;
	width: 155px;
	border: 0;
	border-radius: 5px;
	margin: 10px 5px;
	-webkit-box-shadow: 0px 0px 10px #9E9E9E;
	box-shadow: 0px 0px 10px #9E9E9E;
}

#contactForm input[type="submit"]:hover,
#contactForm input[type="reset"]:hover
{
	cursor: pointer;
	-webkit-box-shadow: inset2px 2px 10px #9E9E9E;
	box-shadow: inset 2px 2px 10px #9E9E9E;
}

/*=============================================
	FORM CONTAINER STYLES
=============================================*/
#formWrapper
{
	min-height: 400px;
}

#formWrapper #googlemap
{
	position: absolute;
	margin-left: 35px;
	bottom: 80px;
}

#formWrapper #googlemap img
{
	position: relative;
	z-index: -99
}

#formWrapper p 
{
	width: 460px;
    margin-left: 440px;
    color: #6d8d0c;
	line-height: 1em !important;
}
#formWrapper p span
{
	padding: 5px;
	display: inline-block;
}
    #formWrapper p span + span 
	{
		vertical-align: top;
    }




/*=============================================
	ERROR &amp; VALIDATION
=============================================*/
label.error
{
	display: none;
	margin-top: -20px;
	color: red;
	font-size: 10px !important;
	position: absolute;
}</pre></body></html>