/*
* 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.
*/
div.ac { 
	border-style: solid;
	border-width: 1px;
	border-color: #ccc;
	position: absolute;
	display: none;
	overflow: auto;
	z-index:19999
}

div.ac > ul {
	margin: 0px;
	padding: 0px;
	float: none;
}

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 > div em {
	display: inline-block;
	/* background-color: #B0E2FF; */
	color : #888888;
	font-style: normal;
}

div.ac > ul > li.normal {
	/*padding: 2px 0px 2px 2px;*/
	padding-left: 22px;
	height: 25px;
	line-height: 25px;
	/* font-weight: bold; */
	/* color:#000000; */
	overflow:hidden;
	
}

div.ac li.normal div span{
	color:#000000;
	color:#000000 !important;
}

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: #CBCBCB;
}