@CHARSET "UTF-8";

/********************************
A jQuery plugin for search hints

Author: Lorenzo Cioni 
https://github.com/lorecioni
********************************/

.autocomplete-container {
	position: relative;
	width: 100%;
	height: .7rem;
	margin: 0 auto;	background: #f3f6f9;border-radius: 3px;
}
.house_ipt{font-size: .3rem;color: #3e4a59;line-height: .7rem;text-indent: .133rem;letter-spacing: -.22px;border: none;float: left;background: #f3f6f9;}
.search_box1{width: 100%;height: .7rem;line-height: .7rem;}
.search_box1 input::-webkit-input-placeholder{color: #afb6d1}
.search_box1 input::-moz-input-placeholder{color: #afb6d1}
.search_box1 input::-ms-input-placeholder{color: #afb6d1}
.autocomplete-button {
	border: none;
	color: #6c9fea;
	height: .45rem;
	line-height: .45rem;
	font-size: .3rem;
	width: 20%;
	text-align: center;
	float: left;
	cursor: pointer;
	background: #f3f6f9;
	border-radius: 0 5px 5px 0;
	border-left: 1px solid #e3e3e3;
	margin-top:.15rem;


}

.autocomplete-button:before{
	width: 1px ;height: 5px;background: #333;
}
.autocomplete-button{background: url(/html/images/icon_search.png) no-repeat center center;}
.proposal-box {
	position: absolute;
	/*height: 2.2rem;*/
	overflow-y: auto;
	/*border-left: 1px solid rgba(0, 0, 0, 0.11);
	border-right: 1px solid rgba(0, 0, 0, 0.11);*/
	height: auto;
	left: -1px;
	width: 80%;
	z-index: 5;
}

.proposal-list {
	list-style: none;
	/*box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.44);*/
	-webkit-margin-before: 0em;
	-webkit-margin-after: 0em;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: 0px;
	background: #ffff;
}

.proposal-list li {
	text-align: left;
	height: .7rem;
	line-height: .7rem;
	background: #ffff;
	cursor: pointer;
	font-size: .3rem;
}

.proposal-list li em{float: right;color: #ccc;margin-right: 5px;font-size: .27rem}

li.proposal.selected {
	background: #f3f6f9;
	color: #6c9fea;
}