@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:0px;
	letter-spacing:0px;
	font-family: 'Kanit', sans-serif;
	font-weight: 200;
	font-size: 14pt;
	color: #94c11f;
}

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

form fieldset {
  float: left;
  width: 100%;
  margin-left:0%
  }

/* Styles the text boxes */
input {
	width:95%;
	height:2.6vw;
	font-family: 'Kanit', sans-serif;
	font-weight: 200;
	font-size: 12pt;
	line-height: 15pT;
	color: #000;
	background-color:#fff;
	border: 0;
	padding: 12px 2.5%;
	margin-top:2%;
	outline: none;
	border-radius: 20px;
}
textarea { 
	width:95%;
	height:8vw;
	font-family: 'Kanit', sans-serif;
	font-weight: 200;
	font-size: 12pt;
	line-height: 15pt;
	margin-top: 2%;
	color: #000;
	background-color:#efefef;
	border: 0;
	padding: 10px 2.5%;
	outline: none;
	border-radius: 20px;
}
select { 
	width:100%;
	font-family: 'Kanit', sans-serif;
	font-weight: 200;
	font-size: 12pt;
	line-height: 15pt;
	color: #000;
	background-color:#fff;
	border: 0;
	padding: 1.4% 2.2%;
	margin-top:1.5%;
	outline: none;
	border-radius: 20px;}

/* Styles the submit button */
#send {
	background-color: #94c11f;
	font-family: 'Kanit', serif;
	font-weight:800;
	font-size: 14pt;
	color: #fff;
	letter-spacing: 2pt;
	line-height: 15pt;
	width:100%;
	height:50px;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:10px;
	border-radius: 10px;
	cursor:pointer;
	background-color: #adc074;
}

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

@media only screen and (max-width: 481px) {
input, file {
	height:5vw;
	line-height: 15pt;
	padding: 2.5%;
	border-radius: 16px;
}
textarea { 
	height:20vw;
	padding: 2.2% 2.5%;
	border-radius: 16px;
}
select { 
	border-radius: 16px;
	height:9vw;
}
}