@charset "utf-8";

body, div, h1, form, fieldset, input, textarea {
	margin: 0; padding: 0; border: 0; outline: none;
}

html {
	height: 100%;

}

body {
	background: transparent; 


}

#contact {
	width: 250px;

}

input {
	font-family: "PT Sans", sans-serif;
	width: 250px; height: 30px; padding: 0px 10px 0px 10px; margin: 0 0 10px 0;
	background: #FFF;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	font-family: "PT Sans", sans-serif; font-size: 14px; text-transform: none; color: #5b8089;
	border: solid 1px #e2e3e4;
	
}

input::-webkit-input-placeholder  {
	font-family: "PT Sans", sans-serif; font-size: 14px; text-transform:uppercase;color: #9c9c9c; 

}
input:-moz-placeholder {
	font-family: "PT Sans", sans-serif; font-size: 14px; text-transform:uppercase;  color: #9c9c9c;
}

textarea {
	font-family: "PT Sans", sans-serif;
	width: 250px; height: 120px; padding: 6px 10px 0px 10px; margin: 0 0 10px 0;
	background: #FFF;
	border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
	overflow:auto;
	font-family: "PT Sans", sans-serif; font-size: 14px; text-transform:none; color: #5b8089;
	border: solid 1px #e2e3e4;
}

textarea::-webkit-input-placeholder  { 
	font-family: "PT Sans", sans-serif; font-size: 14px; color: #9c9c9c;
}

textarea:-moz-placeholder {
	font-family: "PT Sans", sans-serif; font-size: 14px; color: #9c9c9c;
}
	
input:focus {
	background: #e2e3e4;
	background: -moz-linear-gradient(top, #e2e3e4 0%, #FFF 20%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e3e4), color-stop(20%,#FFF));
    color: #4d4d4f;
	
}

textarea:focus {
	background: #e2e3e4;
	background: -moz-linear-gradient(top, #e2e3e4 0%, #FFF 5%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e2e3e4), color-stop(5%,#FFF));
	color: #4d4d4f;
	
}



input[type=submit] {
	width:150px;
	height:38px;
	float:right;
	border:none;
    background: #5B8089; /*jeans blue*/
   	-webkit-border-radius: 8px;
   	-moz-border-radius: 8px;
   	border-radius: 8px;
   	text-shadow: rgba(0,0,0,.2) 1px 1px 0;
   	color: #FFF;
	font-family: 'PT Sans', sans-serif;
	font-weight:700;
	font-size:17px;
	text-decoration:none;
   vertical-align: middle;
}


input[type=submit]:hover {
    width:150px;
	float:right;
	color: #ffffff;
	border:none;
   	background: #446e7a;
	background-image:url(images/btn-bg.gif);
	background-repeat:repeat-x;
	background-position:bottom;
   	background: -webkit-gradient(linear, left top, left bottom, from(#213149), to(#446e7a));
   	background: -webkit-linear-gradient(top, #213149, #446e7a);
   	background: -moz-linear-gradient(top, #213149, #446e7a);
   	background: -ms-linear-gradient(top, #213149, #446e7a);
   	background: -o-linear-gradient(top, #213149, #446e7a);
	-webkit-border-radius: 8px;
   	-moz-border-radius: 8px;
   	border-radius: 8px;
}
   
input[type=submit]:active {
   position:relative;
	top:1px;

   }