@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2015-11-27 17:28:51
 * @version $Id$
 */


/* === Remove input autofocus webkit === */
*:focus {outline: none;}

/* === Form Typography === */



.form_hint, .required_notification {}

/* === List Styles === */
.contact_form ul {
    list-style-type:none;
	list-style-position:outside;
	margin:0px;
	padding:0px;
}
.contact_form li{
	/*padding:12px 12px 30px 12px; */
	padding:10px 0;
	width: 100%;
	display: inline-block;
	/*float: left;*/
	border-bottom:1px solid #eee;
	position:relative;
} 
.contact_form li:first-child, .contact_form li:last-child {
	/*border-bottom:1px solid #777;*/
}



/* === Form Header === */
.contact_form h2 {
	margin:0;
	display: inline;
}
.required_notification {
	color:#d45252; 
	margin:5px 0 0 0; 
	display:inline;
	float:right;
}

/* === Form Elements === */
.contact_form label {
	width:20%;
	margin-top: 3px;
	display:inline-block;
	float:left;
	padding:3px;
	text-align: right;
	/*vertical-align: middle;*/
	
}
.contact_form input {
	height:30px; 
	width:200px; 
	padding:5px 8px;
}

.contact_form .first{
	float: none; width:100%;
}

.contact_form .first input {
	width: 100%;
}


.contact_form textarea {padding:8px; width:100%; display: block;}
.main .content .content-L .text.contact_form button { color: #fff; font-family: "\5fae\8f6f\96c5\9ed1", sans-serif; font-size: 14px;}

/* form element visual styles */
.contact_form input, .contact_form textarea { 
	border:1px solid #ccc;
	box-shadow: 0px 0px 3px #ccc, 0 10px 15px #eee inset;
	border-radius:2px;
	padding-right:30px;
	-moz-transition: padding .25s; 
	-webkit-transition: padding .25s; 
	-o-transition: padding .25s;
	transition: padding .25s;
}
.contact_form input:focus, .contact_form textarea:focus {
	background: #fff; 
	border:1px solid #e6e6e6; 
	box-shadow: 0 0 3px #aaa; 
	padding-right:70px;
}

/* === HTML5 validation styles === */	
.contact_form input:required, .contact_form textarea:required {
	/*background: #fff url(images/red_asterisk.png) no-repeat 98% center;*/
}
.contact_form input:required:valid, .contact_form textarea:required:valid {
	/*background: #fff url(images/valid.png) no-repeat 98% center;*/
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
	border-color: #66afe9;
}
.contact_form input:focus:invalid, .contact_form textarea:focus:invalid {
	/*background: #fff url(images/invalid.png) no-repeat 98% center;*/
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
	border-color: #66afe9
}

/* === Form hints === */
.form_hint {
	background: #d45252;
	display: block;
	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; */
	position: relative;
	display: none;
}
.form_hint::before {
	content: "\25C0";
	color:#d45252;
	
	position: absolute;
	bottom:1px;
	left:-6px;
}
.contact_form input:focus + .form_hint  {display: inline;}
.contact_form input:required:valid + .form_hint {background: #28921f;}
.contact_form input:required:valid + .form_hint::before {color:#28921f;}
	
/* === Button Style === */
button.submit {
	/*background-color: #d9534f;*/
	background: none;
	/*background: -webkit-gradient(linear, left top, left bottom, from(#68b12f), to(#50911e));
	background: -webkit-linear-gradient(top, #68b12f, #50911e);
	background: -moz-linear-gradient(top, #68b12f, #50911e);
	background: -ms-linear-gradient(top, #68b12f, #50911e);
	background: -o-linear-gradient(top, #68b12f, #50911e);
	background: linear-gradient(top, #68b12f, #50911e);*/
	border: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	/*box-shadow: inset 0 1px 0 0 #9fd574;
	-webkit-box-shadow: 0 1px 0 0 #9fd574 inset ;
	-moz-box-shadow: 0 1px 0 0 #9fd574 inset;
	-ms-box-shadow: 0 1px 0 0 #9fd574 inset;
	-o-box-shadow: 0 1px 0 0 #9fd574 inset;*/
	color: white;
	
	
	
	/*margin:0 auto;*/

	
	/*text-shadow: 0 -1px 0 #396715;*/
	font-family: "\5fae\8f6f\96c5\9ed1", sans-serif; font-size: 14px;
	text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}
button.submit:hover {
	/*opacity:.85;*/
	background-color: #E41913; 
	cursor: pointer; 
}
/*button.submit:active {
	border: 1px solid #831D1A;
	box-shadow: 0 0 10px 5px #A7130F inset; 
	-webkit-box-shadow:0 0 10px 5px #A7130F inset ;
	-moz-box-shadow: 0 0 10px 5px #A7130F inset;
	-ms-box-shadow: 0 0 10px 5px #A7130F inset;
	-o-box-shadow: 0 0 10px 5px #A7130F inset;
	
}*/



.but{
	color: #fff;
  background-color: #2a93b5;
  border-color: #d43f3a;
  display: block;
  padding: 3px 12px;
  margin: 10px 0 20px 0 ;
  font-size: 14px;
  font-weight: 400;
  width: 100px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}


.select {
  display: block;
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #ccc;
  border-bottom-color: #c5d4d9;
  border-radius: 2px;

  background-image: -webkit-linear-gradient(top, #fcfdff, #f2f7f7);
  background-image: -moz-linear-gradient(top, #fcfdff, #f2f7f7);
  background-image: -o-linear-gradient(top, #fcfdff, #f2f7f7);
  background-image: linear-gradient(to bottom, #fcfdff, #f2f7f7);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.select:before, .select:after {
  content: '';
  position: absolute;
  right: 11px;
  width: 0;
  height: 0;
  border-left: 3px outset transparent;
  border-right: 3px outset transparent;
}
.select:before {
  top: 10px;
  border-bottom: 3px solid #7f9298;
}
.select:after {
  top: 16px;
  border-top: 3px solid #7f9298;
}
.select > select {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 30px;
  line-height: 20px;
  padding: 5px 7px;
  padding-right: 0;
  color: rgba(3, 3, 3, 0.34);
  background: transparent;
  background: rgba(0, 0, 0, 0);
  border: 0;
  -webkit-appearance: none;
}
.select > select:focus {
  color: #4d5a5e;
  outline: 0;
}


.contact_form label.select{ 
	width: 100%; padding: 0px 0;

}