

/* Big box with list of options */
#ajax_listOfOptions{
	position:absolute;	/* Never change this one */
	width:210px;	/* Width of box */
	height:250px;	/* Height of box */
	overflow:auto;	/* Scrolling features */
	border:1px solid #2797AF;
	color:#333333;	/* Dark green border */
	background-color:#FFF;	/* White background color */
	text-align:left;
	font-size:1em;
	z-index:100;
}
#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
	margin:1px;		
	padding:1px;
	cursor:pointer;
	font-size:1em;
}
#ajax_listOfOptions .optionDiv, #ajax_listOfOptions .optionDivSelected{	/* Div for each item in list */
	min-height:37px;
	padding-left:3px;
	_height:auto;
	_clear:left;
	border-bottom:1px solid #ddd;
	_border:none;
	font-family:Arial, Helvetica, sans-serif;

}
#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
	/*ackground-color:#3E3E3D;*/
	background:#00495b;
	color:#FFF;
}
#ajax_listOfOptions_iframe{
	background-color:#F00;
	position:absolute;
	z-index:5;
}
#ajax_listOfOptions img {
	float:left;
	margin:1px 5px 1px 0px;
}