/* Dynamic Search Box */

#ajax_listOfOptions {
	position: absolute;			/* Never change this one */
	width: 365px;				/* Width of box */
	height: auto;				/* Height of box */
	overflow: auto;				/* Scrolling features */
	border: 2px solid #0183c7;	/* Border */
	background-color: #fff;		/* Background */
	text-align: left;
	font-size: 1.0em;
	z-index: 9999;
}

#ajax_listOfOptions div {	/* General rule for both .optionDiv and .optionDivSelected */
	margin: 1px;		
	padding: 5px;
	cursor: pointer;
	font-size: 1.0em;
	border-bottom: 1px solid #ccccce;
}

#ajax_listOfOptions .optionDiv {	/* Div for each item in list */
}

#ajax_listOfOptions .optionDivSelected {	/* Selected item in the list */
	background-color: #fff3c2;
	color: #404040;
}

#ajax_listOfOptions_iframe {
	background-color: #f00;
	position: absolute;
	z-index: 5;
}


