/* === Remove input autofocus webkit === */
*:focus {outline: none;}

/* === Form Typography === */

.login h2, .login label {font-family: Century Gothic,Tahoma, Verdana, Arial; font-size:13px;}
.form_hint, .required_notification {font-size: 12px;}

/* === List Styles === */
.login ul {
    width:100%;
    list-style-type:none;
	list-style-position:outside;
	margin:0px;
	padding:0px;
}
.login li{
	padding:1px; 
/*	border-bottom:1px solid #eee;*/
	position:relative;
} 
.login li:first-child, .login li:last-child {
	/*border-bottom:1px solid #777;*/
}

/* === Form Header === */
.login h2 {
	margin:0;
	display: inline;
}
.required_notification {
	color:#d45252; 
	margin:5px 0 0 0; 
	display:inline;
	float:right;
}

/* === Form Elements === */
.login label {
	width:100px;
	margin-top: 3px;
	display:inline-block;
	float:left;
	padding:3px;
}
.login input{
	height:30px; 
	width:100%; 
	padding:5px 8px;
}

.SetFntColor {
  color:#666;
  line-height:60px;
}
	
.login textarea { width:100%;}
.login button {margin-left:156px;}

	/* form element visual styles */
.login input, .login select { 
		border:1px solid #aaa;
		
		border-radius:2px;
		padding-right:30px;
		-moz-transition: padding .25s; 
		-webkit-transition: padding .25s; 
		-o-transition: padding .25s;
		transition: padding .25s;
	}
.login textarea{
		border:1px solid #aaa;
		border-radius:2px;
		padding-right:30px;
		height:40px;
		-moz-transition: padding .25s; 
		-webkit-transition: padding .25s; 
		-o-transition: padding .25s;
		transition: padding .25s;
	}
.login select{
	height:32px; 
	width:260px; 
	padding:5px;
	padding-right:-10px;
}
.login input:focus, .login textarea:focus {
		background: #fff; 
		border:1px solid #555; 
		box-shadow: 0 0 3px #aaa; 
		
	}
.login .contact_checkbox {
	height:auto; 
	width:auto; 
	padding:5px 8px;
	margin:10px 50px;
	line-height:30px;
	text-align:center;
	vertical-align:middle;
	box-shadow: 0 0 3px #aaa; 

}

/* === HTML5 validation styles === */	
.login input:required, .login textarea:required {
	background: #fff url(images/red_asterisk.png) no-repeat 98% center;
}
.login input:required:valid, .login textarea:required:valid {
	background: #fff url(images/valid.png) no-repeat 98% center;
	box-shadow: 0 0 5px #5cd053;
	border-color: #28921f;
}
.login input:focus:invalid, .login textarea:focus:invalid {
	background: #fff url(images/invalid.png) no-repeat 98% center;
	box-shadow: 0 0 5px #d45252;
	border-color: #b03535;
}

/* === Form hints === */
.form_hint {
	background: #FFCC99;
	border-radius: 3px 3px 3px 3px;
	color: white;
	margin-left:8px;
	padding: 1px 6px;
	z-index: 999; /* hints stay above all other elements */
	position: absolute; /* allows proper formatting if hint is two lines */
	display: none;
}
.form_hint::before {
	content: "\25C0";
	color:#d45252;
	position: absolute;
	top:1px;
	left:-6px;
}
.login input:focus + .form_hint {display: inline;}
.login input:required:valid + .form_hint {background: #28921f;}
.login input:required:valid + .form_hint::before {color:#28921f;}
	
/* === Button Style === */
button.submit {

/*	background-color: #737b6c;
	background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#333333));
	background: -webkit-linear-gradient(top, #333333, #999999);
	background: -moz-linear-gradient(top, #ccc, #333333);
	background: -ms-linear-gradient(top, #ccc, #333333);
	background: -o-linear-gradient(top, #ccc, #333333);
	background: linear-gradient(top, #ccc, #333333);
	border: 1px solid #87907f;
	border-bottom: 1px solid #8b9782;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	box-shadow: inset 0 1px 0 0 #cdd7c4;
	-webkit-box-shadow: 0 1px 0 0 #cdd7c4 inset ;
	-moz-box-shadow: 0 1px 0 0 #cdd7c4 inset;
	-ms-box-shadow: 0 1px 0 0 #cdd7c4 inset;
	-o-box-shadow: 0 1px 0 0 #cdd7c4 inset;*/
	background-color:#d3422a;
	color:#FFF;
	font-weight: bold;
	padding: 6px 15px;
	text-align: center;
	font-size:12px;
	margin-left:100px;
	
}
button.submit:hover {
	opacity:.85;
	cursor: pointer; 
}
button.submit:active {
	/*border: 1px solid #20911e;*/
	box-shadow: 0 0 10px 5px #356b0b inset; 
	-webkit-box-shadow:0 0 10px 5px #356b0b inset;
	-moz-box-shadow: 0 0 10px 5px #356b0b inset;
	-ms-box-shadow: 0 0 10px 5px #356b0b inset;
	-o-box-shadow: 0 0 10px 5px #356b0b inset;
}
.contactUsT{
	font-size:16px;
	color:#000;
	font-weight:bolder;
}



