

 input {
	outline: none;

}
input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 80%;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
	display: none; 
}


input[type=search] {
	
	/*border: solid 1px #ccc;*/
	border : none;
	padding: 9px 10px 9px 32px;
	width: 55px;
	background-color:transparent;
	-webkit-border-radius: 10em;
	-moz-border-radius: 10em;
	border-radius: 0em;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
input[type=search]:focus {
	width: 130px;
	background-color: #fff;
	border-color: #66CC79;
	
	-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
	-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
	box-shadow: 0 0 5px rgba(109,207,246,.5);
}


input:-moz-placeholder {
	color: #999;
}
input::-webkit-input-placeholder {
	color: #999;
}

/*Demo 3*/ 
#demo-3 input[type=search] {
	background: url(search2.png) transparent no-repeat 9px center;
	width: 15px;
	padding-left: 10px;
	color: transparent;
	cursor: pointer;
}
#demo-3 input[type=search]:hover {
	background-color: transparent;
}
#demo-3 input[type=search]:focus {
	width: 120px;
	padding-left: 32px;
	color: #fff;
	background-color: transparent;
	cursor: auto;
}
#demo-3 input:-moz-placeholder {
	padding-left: 2cm;
	color: transparent;
}
#demo-3 input::-webkit-input-placeholder {
	padding-left: 2cm;
	color: transparent;
} */


