.suggestionsBox {
    position: absolute;
    margin: 10px 0px 0px 0px;
    width: 200px;
	max-height: 240px;
	overflow:auto;
    background-color: #ebe6dc;
   font-family:Arial, Helvetica, sans-serif;
   font-size:12px;
    border: 10px solid #f8f9f9;
    color: #7D7D7D;
	z-index:999;
	 height: expression( this.scrollHeight > 399 ? "400px" : "auto" ); /* sets max-height for IE */
    /* sets max-height value for all standards-compliant browsers */

}

.suggestionList {
    margin: 0px;
    padding: 0px;
	text-align:left;
}

.suggestionList li {
    margin: 0px 0px 3px 0px;
    padding: 3px;
    cursor: pointer;
}

.suggestionList li:hover {
    background-color: #e2d8c9;
}



