@CHARSET "UTF-8";

/********************************
A jQuery plugin for search hints

Author: Lorenzo Cioni 
https://github.com/lorecioni
********************************/

.autocomplete-container {
	position: relative;
	width: 600px;
	height: 32px;
	margin-left: 78px;
	/* margin: 0 auto; */
}

.autocomplete-input {
	padding: 0 10px;
	/* border-radius: 3px; */
	font-family: inherit;
	float: left;
	font-size: 1em;
	border: 1px solid rgba(0, 0, 0, 0.19);
	margin: 0;
}

.autocomplete-button {
	font-family: inherit;
	border: none;
	background-color: #3192E5;
	color: white;
	width: 100px;
	text-align: center;
	/* padding: 0 30px; */
	float: left;
	cursor: pointer;
	/* border-radius: 0px 3px 3px 0px; */
	/* transition: all 0.2s ease-out 0s; */
	margin: 0px 0px 0px -1px;
}

.autocomplete-button:HOVER {
	background-color: rgb(96, 171, 228);
}

.proposal-box {
	position: absolute;
	max-height: 510px !important;
	overflow-y: scroll;
	height: auto;
	border-left: 1px solid rgba(0, 0, 0, 0.11);
	border-right: 1px solid rgba(0, 0, 0, 0.11);
	left: 1px;
}

.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;
}

.proposal-list li {
	text-align: left;
	padding: 5px;
	font-family: inherit;
	border-bottom: 1px solid rgba(0, 0, 0, 0.16);
	height: 25px;
	line-height: 25px;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
}

li.proposal.selected {
	color: #333333;
	background-color: #E6F1FA;
}