/* Styles for Mootools version */
ul.autocompleter-choices {
	position: absolute;
	left:-10px;
	
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid #7c7c7c;
	border-left-color: #c3c3c3;
	border-right-color: #c3c3c3;
	border-bottom-color: #ddd;
	background-color: #fff;
	border-top-color:#cccccc;
	text-align: left;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	z-index: 50;

	width:180px !important;
}

ul.autocompleter-choices li {
	position: relative;
	margin: -2px 0 0 -4px;
	padding: 2px;
	padding-left:8px;
	display: block;
	float: none !important;
	cursor: pointer;
	font-weight: normal;
	white-space: nowrap;
	font-size: 11px !important;
	line-height: 14px;
	width:170px !important;
}

ul.autocompleter-choices li span {
	font-size: 11px !important;
}

ul.autocompleter-choices li.autocompleter-selected {
	background-color: #444;
	color: #fff;
}

ul.autocompleter-choices span.autocompleter-queried {
	display: inline;
	float: none;
	font-weight: bold;
	margin: 0;
	padding: 0;
}

ul.autocompleter-choices li.autocompleter-selected span.autocompleter-queried {
	color: #9FCFFF;
}

/* Shared style for all 3 frameworks */
input.autocompleter-loading {
	background-image: url(images/spinner.gif);
	background-repeat: no-repeat;
	background-position: right 50%;
}


/* Styles for JQuery/Prototype versions */
.autocomplete-w1 {
	
	/*background: url(images/shadow.png) no-repeat bottom right;
	*/
	position: absolute;
	top: -3px;
	left: 0px;
	/*width:180px;*/
	margin: 0 0 0 6px; /* IE6 fix: */
	/*_background: none;
	_margin: 0;*/
}

.autocomplete {
	border: 1px solid #ddd;
	background: #FFF;
	cursor: default;
	text-align: left;
	max-height: 350px;
	
	overflow: hidden;
	margin: 0px 6px 6px -6px; /* IE6 specific: */
	padding-top:1px;
	padding-bottom:1px;
	/*_height: 350px;
	_margin: 0;
	_overflow-x: hidden;*/
}

.autocomplete .selected {
	/*
	background: #F0F0F0;
	*/
   background: #DDDDDD;
}

.autocomplete div {
	padding: 2px 5px;
	white-space: nowrap;
	border:0px solid red;
}

.autocomplete strong {
	font-weight: normal;
	color: #3399FF;
}


