@charset "utf-8";
/**
 * @see https://github.com/dyve/jquery-autocomplete
 */
.acResults {
	padding: 0px;
	border: 1px solid WindowFrame;
	background-color: Window;
	overflow: hidden;
        z-index:3;
}

.acResults ul {
	margin: 0px;
	padding: 0px;
	list-style-position: outside;
	list-style: none;	
}

.acResults ul li {
	margin: 0px;
	padding: 2px 5px;
	cursor: pointer;
	display: block;
	font: menu;
	font-size: 16px;
	overflow: hidden;
}
.acResults ul li div{
    display: inline-block;
}
.acResults ul li div:first-child{
    width: 70%;
}
.acResults ul li div:last-child{
    width: 28%;
    color: #316ac5;
    text-align: right;
}
.acLoading {
	background : url('indicator.gif') right center no-repeat;
        background-color: whitesmoke;
}

.acSelect {
	background-color: Highlight;
	color: HighlightText;
}
