/*
       autosuggestion.css: css file for autosuggestion for airport search

	   July-15-2010: initial code by David in Tianbao travel Inc.
 */
	.suggestion_list
	{
	background: #f7fcfe; /*white; */
	border: 1px solid #add2e5;
	padding: 4px;
	}
	
	.suggestion_list ul
	{
	padding: 0;
	margin: 0;
	list-style-type: none;
	}
	
	.suggestion_list a
	{
	text-decoration: none;
	color: navy;
	white-space: nowrap;
	}
	
	.suggestion_list .selected
	{
	background: #add2e5;/*navy*/;
	color: white;
	}
	
	.suggestion_list .selected a
	{
	color: white;
	}

	#autosuggest
	{
	display: none;
	z-index:2;
	}
	/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-autosuggest-cover {
    display: none; /*sorry for IE5*/
    display/**/: block; /*sorry for IE5*/
    position: absolute; /*must have*/
    z-index: -1; /*must have*/
    filter: mask(); /*must have*/
    top: -4px; /*must have*/
    left: -4px; /*must have*/
    width: 300px; /*must have*/
    height: 200px; /*must have*/
}
