/*
* jQuery.autocomplete.css (v1.1.0)
* authored by nswish (nswish@gmail.com)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@CHARSET "UTF-8";

/********************************
A jQuery plugin for search hints

Author: Lorenzo Cioni 
https://github.com/lorecioni
********************************/

.ac_conteiner{
	position: relative;
	width: 204px;
	height: 24px;
	margin: 0 auto;
}
.ac_input  {
	padding: 3px;
	border-radius: 3px;
	font-family: inherit;
	float: left;
	font-size: 1em;
	border: 1px solid rgba(0, 0, 0, 0.19);
	margin: 0;
}

.ac-button {
	width:42px;
	height:24px;
	font-family: inherit;
	border: none;
	background-color: #F00;
	color: white;
	padding: 3px;
	float: left;
	font-weight:bold;
	cursor: pointer;
	border-radius: 0px 3px 3px 0px;
	transition: all 0.2s ease-out 0s;
	margin: 0.5px 0px 0px -1px;
}
.ac-button:HOVER {
	background-color: #D11E1E;
}
div.ac { 
	border:1px solid #d0d0d0;
	position: absolute;
	display: none;
	overflow: auto;
}

div.ac > ul {
	margin: 0px;
	padding: 0px;
}

div.ac > ul > li {
	margin: 0px;
	list-style-type: none;
	background-color: white;
	word-break: break-all;
	font-family: helvetica, arial, "Courier New", sans-serif;
}

div.ac > ul > li > div {
	display: table-row;
	width: 100%;
}

div.ac > ul > li > div em {
	background-color: #B0E2FF;
	font-style: normal;
}

div.ac > ul > li.normal {
	padding: 2px 0px 2px 2px;
}

div.ac > ul > li.normal > div > span{
	display: table-cell;
	vertical-align: middle;
}

div.ac > ul > li.iconList {
	padding: 0px 0px 0px 2px;
}

div.ac > ul > li.iconList > div > div {
	display: table-cell;
	vertical-align: middle;
	padding-right: 5px;
}

div.ac > ul > li.iconList > div > div > img {
	display: table;
	display: table-cell\9;
}   

div.ac > ul > li.iconList > div > span {
	display: table-cell;
	vertical-align: middle;
}

div.ac > ul > li.selected {
	background-color:#ccc;
}