/* Style For The Layer That will appear while auto complete textbox*/
	#ajax_listOfOptions{
		position:absolute;	/* Never change this one */
		width:250px ;	/* Width of box */ 
	/* Height of box */
		overflow:auto;	/* Scrolling features */
		border:1px solid #999999;	/* Dark green border */
		background-color:#FFF;	/* White background color */
		text-align:left;
		font-size:12px;
		font-family:"Lucida Sans";
		z-index:100;
	}
	#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
		margin:1px;		
		padding:3px;
		cursor:pointer;
		font-size:11px;
		font-family:"Lucida Sans";
	}
	#ajax_listOfOptions .optionDiv{	/* Div for each item in list */
		
	}
	#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
		background-color:#ECEFF2;
		color:#000000;
	}
	#ajax_listOfOptions_iframe{
		background-color:#0A50A1;
		position:absolute;
		z-index:5;
	}
	
	
