@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 
{
    margin:0;
    width:100%;
}


form fieldset {
  float: left;
  width: 38%;
  margin-left:8%
  

}


/* Styles the text boxes */
input, textarea, file, select {
	width:100%;
	height:2em;
	 font-family: 'Oxygen', sans-serif;
	font-weight: 300;
	font-size: 12pt;
	color: #56c1bb;
	letter-spacing: 2pt;
	background-color:#efefef;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	outline:none;
	
}

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

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


/* Styles the submit button */
#send {
	background-color: #e5c200;
	font-family: 'Zilla Slab', cursive;
	font-weight:600;
	font-size: 14pt;
	color: #fff;
	letter-spacing: 1pt;
	line-height: 15pt;
	width:110px;
	height:40px;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:20px;
	cursor:pointer;
}

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


@media (max-width: 600px) {
	form fieldset {
  float: left;
  width: 80%;

  

}
	

}
