/***********************************************/
/* Basic styles for the "Lookahead" Search 	   */
/* Suggestions, and the output method of	     */
/* DimValSuggestionListRenderer				         */
/***********************************************/

/* Set the width, background, size, etc. for
   the type-ahead box */
#SuggestionListDiv {
	width: 350px;
	font-size:8pt;
	background-color: white;
	font-family: Arial;
	font-size: 11px;
	text-align: left;
}

/* Remove bullets/numbering from the
   ordered list that outputs the 
   type-ahead suggestions */
#SuggestionListDiv ol {
	border:1px solid #888;
	margin: 0;
	padding: 0;
	width: 100%;
	list-style-type: none;
}

/* Add padding to the values in the
   ordered list that outputs the 
   type-ahead suggestions */
#SuggestionListDiv ol li {
	margin: 0;
	padding:1px;
}

/* Change background of the selected
   type-ahead suggestion when user rolls over it */
#SuggestionListDiv ol li.selected {
	/* background: brown; */
	background: #666666;	
}

/* Change link color of the selected
   type-ahead suggestion when user rolls over it */
#SuggestionListDiv ol li.selected a {
	color: #FFF;
}

/* Display "strong" as bold */
#SuggestionListDiv ol strong {
	font-weight: bold;
}
