﻿@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; 
	vertical-align:top;	
	display: inline-block;
	float: left;
	border-bottom:1px solid #eee;
	position:relative;
} 

.contact_form ul.singIn li{border:0; padding-bottom:10px;}


.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:100px;
	margin-top: 3px;
	display:inline-block;
	/*float:left;*/
	padding:3px;
	text-align: right;
	/*vertical-align: middle;*/
	
}
.contact_form input {
	height:20px; 
	width:200px; 
	padding:5px 8px;
}



.contact_form .first{
	float: none; width:100%;
}

.contact_form .first input {
	width: 575px;
}


.contact_form textarea {padding:8px; width:575px;}
.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, .contact_form select  { 
	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, .contact_form select:focus {
	background: #fff; 
	border:1px solid #e6e6e6; 
	box-shadow: 0 0 3px #aaa; 
	padding-right:70px;
}

.contact_form select {
    height:30px; 
	padding:5px 8px;
}

.contact_form input.register_input_1{
    width:110px; padding-right:0;
}

.contact_form ul.singIn input {
    /*box-shadow:none;*/
}

.contact_form ul.singIn li textarea {
    width: 565px;
    box-shadow:none;
    padding: 25px 25px 30px 25px;
}



/* === 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;
	
	
	padding: 5px 15px;
	/*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;
	
}*/

