﻿@CHARSET "UTF-8";

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

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

.autocomplete-container {
	position: relative;
	width: 283px;
	height: 32px;
	margin: 0 auto;
}

.autocomplete-input {
	padding: 9px;
	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: #990101;
	color: white;
	padding: 8px;
	float: left;
	cursor: pointer;
	border-radius: 0px 3px 3px 0px;
	transition: all 0.2s ease-out 0s;
	margin: 0.5px 0px 0px -1px;
}

.autocomplete-button:HOVER {
	background-color: #D11E1E;
}

.proposal-box {
	position: absolute;
	height: auto;
	left: 0px;
}

.proposal-list {
	background-color: #ffffff;
	border-radius: 3px;
	border: 1px solid #e0e0e0;
	border-bottom: 0px;
	border-top: 0px;
}
.proposal-list li:last-child{
	border-bottom: 1px solid #e0e0e0;
}
.proposal-list li:first-child{
	border-top: 1px solid #e0e0e0;
}
	
.proposal-list li {
	text-align: left;
	padding: 5px;
	font-family: inherit;
	height: 25px;
	line-height: 25px;
	background-color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	padding-left: 20px;
	border-radius: 3px;
}

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