/* Big box with list of options */
#ajax_listOfOptions{
	position:absolute;	/* Never change this one */
	width:135px;	/* Width of box */
	max-height:200px;
	margin-left:1px;
	overflow:auto;	/* Scrolling features */
	border:1px solid #7f9db9;	/* Dark green border */
	background-color:#fff;	/* White background color */
	text-align:left;
	font-size:11px;
	z-index:100;
	
}
#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
	margin:1px;
	padding:1px;
	cursor:pointer;
	color:#000;
	font-size:11px;
}
#ajax_listOfOptions .optionDiv{	/* Div for each item in list */

}
#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
	background-color:#ff9222;
	color:#000;
}
#ajax_listOfOptions_iframe{
	background-color:#f00;
	position:absolute;
	z-index:5;
}

form{
	display:inline;
}
