/*
autocomplete.css : styles for all tag autocomplete pages throughout Jive SBS.
*/
div#jive-tag-choices-container {
	clear: both;
	display: block;
	float: left;
	left: 0;
	overflow: hidden;
	padding: 0;
	width: 100%; /* removing this puts the dropdown to the far right in IE6, just like IE7. */
	}
div.autocomplete {
	display: block;
	float: left;
	height: auto;
	margin: 1px 0 0 3px;
	padding: 0;
	position: absolute;
	}
div.autocomplete ul {
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	list-style-type: none;
	margin: 0;
	padding: 2px;
	}
div.autocomplete ul li {
	color: blue;
	cursor: pointer;
	display: block;
	list-style-type: none;
	margin: 0;
	padding: 2px;
	white-space: nowrap;
	}
div.autocomplete ul li.selected {
	background-color: darkblue;
	color: white;
	}
div.autocomplete ul li.selected span {
	background-color: transparent;
	color: white;
	}
/*
END autocomplete.css
*/