﻿/* AUTOCOMPLETE
------------------------------------- */

.autocomplete {
	position:relative;
	background-color:#FFF;
	border:1px solid #888;
	margin:0px;
	padding:3px;
	z-index:30;
	font:normal 11px  verdana,sans-serif;
	line-height:1.5em;
}

div.autocomplete ul {
	list-style-type:none;
}

div.autocomplete ul li.selected { 
	background-color: #f2e6c8;
}

div.autocomplete ul li {
	list-style-type:none;
	cursor:pointer;
}

/*  *******************************************************************  
    autocomplete suggestlist
*/ 
/* allgemeine Listen-Formatierung */
.autocomplete_completionListElement {  
    z-index: 200;
	visibility: hidden;
	margin: -2px 0 0 0;
	padding: 0;
	background: #ffffff;
	border: solid 1px #666666;
    border-top: solid 1px #CCCCCC;
    border-left: solid 1px #999999;
    text-align: left;
    list-style-type: none;
    width: 234px !important;
}
.autocomplete_completionListElement ul, 
.autocomplete_completionListElement li {
    padding: 0;
    margin: 0;
}
.autocomplete_completionListElement li {
    border-bottom: solid 1px #ecedf4;
}
.autocomplete_completionListItem,
.autocomplete_completionListHighlightedItem {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    margin: 0 !important;
	padding: 0 0 0 5px !important;
	line-height: 18px;
	color: #666666;
	font-size: 10px;
}
/* das einzelne Listen-Element */
.autocomplete_completionListItem 
{
	white-space: nowrap;
}
/* Aktive ausgewählter Listen-Punkt */
.autocomplete_completionListHighlightedItem {
	cursor: pointer;
	background: #E5EAF0;
	white-space: nowrap;
}
.autocomplete_highlight
{
	float:left;
	font-weight:bold;
}
.autocomplete_image {
	border-top:2px #808080 solid;
	border-right:1px #d4d0c8 solid;
	border-bottom:1px #d4d0c8 solid;
	border-left:2px #808080 solid;
	color:#315CA8;	
	font-size:13px;
	font-weight:normal;
	height:18px;
	padding:2px 4px 0 6px;	
	width:166px;
	background: #ffffff url(images/icon/laden.gif) no-repeat center right;
}
.autocomplete_resultCounter
{
	float: right;
	color: #008000;
}
.autocomplete_item
{
	float:left;
}

