	/* Big box with list of options */
#ajax_listOfOptions{
		position:absolute;	/* Never change this one */
		width:174px;	/* Width of box */
		overflow:auto;	/* Scrolling features */
		background-color:#FFF;	/* White background color */
		text-align:left;
		z-index:100;
}
#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
		padding:1px;
		cursor:pointer;
		border: solid 1px #eee;
		border-top: 0;
}
#ajax_listOfOptions .optionDiv{	/* Div for each item in list */
		
}
#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
		background-color:#f5f5f5;
		color:#F64;
}
#ajax_listOfOptions_iframe{
		background-color:#F00;
		position:absolute;
		z-index:5;
}	
	
