/* --------------------------------- form -------------------------------*/

.search-form {
	padding-top: 20px;
}


input {
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
}

label {
	display: block;
	margin-bottom: 5px;
	cursor: default;
}




input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #999;
}

input {
	letter-spacing: normal;
	word-spacing: normal;
	line-height: normal;
	text-transform: none;
	text-indent: 0px;
	text-shadow: none;
	text-align: -webkit-auto;
}


input[type="text"]
 {
	height: 18px;
	padding: 6px 6px;
	font-size: 14px;
	line-height: 20px;
	color: #555;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: white;
	border: 1px solid #CCC;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear .2s,box-shadow linear .2s;
	-moz-transition: border linear .2s,box-shadow linear .2s;
	-o-transition: border linear .2s,box-shadow linear .2s;
	transition: border linear .2s,box-shadow linear .2s;
}

input:focus {
border: 1px solid red;

}

