/*
* 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: gray;
	position: fixed;
	display: none;
	overflow: auto;
	z-index: 1001;
}

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:5px;
}

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