/* contactForm.css
 * (C) 2012 Enplase Research
 */
 
/* *{ margin:0; padding:0;}
body{ font:100% normal Arial, Helvetica, sans-serif; background:#161712;}*/
form,input,select,textarea{margin:0; padding:0px 0px 50px 0px ; color:#0;}
.contactForm {
	margin:0 auto;
	margin-bottom: 40px;
	margin-top: 20px;
	padding:5px 20px 7px 20px;
	position:relative;
	top:5px;
	width:500px;
	border:1px solid #cacaca;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	background-color: rgb(244, 250, 255);
	font-family: "Open Sans","lucida grande","Segoe UI",arial,verdana,"lucida sans unicode",tahoma,sans-serif;
	font-size: 13px;
}

.contactForm h1{ 
	font-size:16px;
	font-weight:bold;
	margin: 8px 0px 8px 0px;
}

.contactForm label{
	display:block;
	font-weight:bold;
	text-align:left;
	width:97.5%;
    padding:20px 0px 5px;
}

.contactForm input[type="text"]{
	padding:6px 6px;
	background:#ffffff;
	
	font-size: 100%;

	font-family: "Lucida Grande", "Lucida Sans Unicode", verdana, geneva, sans-serif;
	
	border:solid 1px #aacfe4;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	width:97.5%;
}

.contactForm  textarea{
	padding:7px 7px;
	width:97%;
	background:#ffffff;
	border:solid 1px #aacfe4;
	overflow:hidden;
	height:200px;
	font-size: 100%;
	font-family: "Lucida Grande", "Lucida Sans Unicode", verdana, geneva, sans-serif;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.contactForm textarea:focus, .contactForm input:focus{	
	-webkit-box-shadow:0 0 2px #007eff;
	-moz-box-shadow:0 0 2px #007eff;
	box-shadow:0 0 2px #007eff;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

a.Button {
	display: block;
	position: relative;
	margin: 10px 0;
	padding: 5px 15px;
	background: #70c9e3;

	color: #ffffff;
	font-family: "Open Sans","lucida grande","Segoe UI",arial,verdana,"lucida sans unicode",tahoma,sans-serif;
	font-size: 14px;
	text-shadow: 1px 1px 1px rgba(255,255,255, .22);
	text-align: center;
	text-decoration: none;

 /* shadow and border */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.1), inset 0px 0px 1px rgba(0,0,0, .5);
	-moz-box-shadow: 1px 1px 1px rgba(0,0,0,.1), inset 0px 0px 1px rgba(0,0,0, .5);
	box-shadow: 1px 1px 1px rgba(0,0,0,.1), inset 0px 0px 1px rgba(0,0,0, .5);
 
 /* transition */
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	-ms-transition: all 0.15s ease;
	transition: all 0.15s ease;
	
/* CSS3 background gradients */
	background: -moz-linear-gradient(top,  #70c9e3 0%, #39a0be 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#70c9e3), color-stop(100%,#39a0be)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* IE10+ */
	background: linear-gradient(top,  #70c9e3 0%,#39a0be 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70c9e3', endColorstr='#39a0be'); /* IE7-10 */

	/*float:right;*/
}


a.Button :active {
	-webkit-box-shadow: inset 0px 0px 3px rgba(0,0,0, .4);
	-moz-box-shadow: inset 0px 0px 3px rgba(0,0,0, .4);
	box-shadow: inset 0px 0px 3px rgba(0,0,0, .4);
}
