/* Form styling */

#contactForm label {
    display: block;
    padding: 1px 7px 0;
    position: absolute;
    top: 0;
    z-index: 1;
}

#contactForm input[type="text"], #contactForm textarea {
    display: block;
    background: none;
    font: inherit;
    padding: 0 7px;
    position: relative;
    z-index: 10;
	overflow: auto; /* removes scrollbar from textarea in IE - trick from HTML5 boilerplate*/
}

/*#contactForm label, #contactForm input[type="text"], #singleParagraphInputs div{
	 these two values must be the same 
	line-height: 1.5em;
	height: 1.5em;
}*/

/*#singleParagraphInputs div, #commentTxt, #recaptcha_widget_div{
	margin-bottom: 1.5em;
}*/

#contactForm input, #contactForm textarea, #recaptcha_table{
	border: 1px solid #ccc;
}

#custom .formError {
    border: 1px solid red;
}

/*#contactForm, #recaptcha_table{
	width: 300px;
	margin-top: 5px;
}*/

#singleParagraphInputs div, #commentTxt {
    position: relative;
}

/*#singleParagraphInputs input {
    width: 284px; 
}*/

#commentTxt textarea {
    min-height: 9em;
	min-width: 284px; /* 16px less than form width */
	/* if you aim ie7 users specify font to use in textarea since it won't inherit it*/
	/*
	font: 14px/1.5em sans-seif;
	*/
}

#screenReader, #checking {
    float: left;
	display: none;
}

#recaptcha_response_field {
    width: 286px !important; /* just a stylistic detail to make the input field equal width as the box with words to copy */
}

#contactForm input[type="submit"]{
	/* some styles for the button */
}

#custom .recaptcha_input_area {
height: auto !important; }