/*   http://www.vulgarisoip.com/2007/06/29/jquerysuggest-an-alternative-jquery-based-autocomplete-library/   */
	
    .ac_results {
		border: 1px solid gray;
		background-color: white;
		padding: 0;
		margin: 0;
		list-style: none;
		position: absolute;
		z-index: 10000;
		display: none;
        width: 252px;
        min-width: 252px;
	}
	
	.ac_results li {
		padding: 2px 0;
		white-space: nowrap;
		color: #101010;
		text-align: left;
        background: none;
        width: 252px;
	}
	
	.ac_results li.ac_over {
		cursor: pointer;
		/*background-color: #F0F0B8;*/
        background-color: #659CD8;
        color: white;
	}
    
    .ac_results li span,
    .ac_results li.ac_over span {
        display: block;
        margin-left: 5px;
        width: 242px;
        overflow: hidden;
    }
    
    .ac_results li.ac_hidden {
        display: none;
    }
    
    .ac_results li.ac_more {
    }
	
	.ac_match {
		text-decoration: underline;
		color: black;
	}
	
