@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */


label 
{
    display:block;
    margin-top:10px;
	letter-spacing:2px;
}

/* Centres the form within the page */
form  {    width:100%; }


form fieldset {
  float: left;
  width: 47%;

  

}
.lefti { margin-left:6%;}
.g-recaptcha { clear:both; float:left; width:90%; text-align:center; margin-top:3%; margin-bottom:3%; display:block}

/* Styles the text boxes */
input, textarea, file, select {
	width:100%;
	height: 3.5 em;
	font-family: 'Zilla Slab', serif;
	font-weight: 300;
	font-size: 1.2em;
	color: #1f6c33;
	letter-spacing: 1pt;
	background-color:#fff;
	border:1px solid #fff;
	padding:10px;
	margin-top:3px;
	
	
}

	input:focus, textarea:focus {
		border:0.5px solid #fff;
	}

/* Styles the text area boxes (message field) */	
textarea 
{
	height:5em;
	background-color: #fff;
}


/* Styles the submit button */
#send {
	width:110px;
	height:45px;
	text-align: center;
	border:none;
	margin-top:20px;
	cursor:pointer;
	background-color: #000;
	font-family: 'Zilla Slab', serif;
	font-weight:700;
	font-size: 14pt;
	color: #fff;
	letter-spacing: 1pt;
	clear:both;
	display:block;
		
}

/* Styles the submit hover */	
#send:hover {
	color:#fff;
	background-color: #1f6c33;
	opacity:0.9;
}


@media (max-width: 600px) {
	form fieldset { float: left; width: 90%;}
	.lefti { margin-left:0;}
	

}
