

/* Big box with list of options */
#ajax_listOfOptions{
	position:absolute;	/* Never change this one */
	list-style:inside;
	width:250px;	/* Width of box */
	height:275px;/* Height of box */
	overflow: visible;	/* Scrolling features */+
	visibility: collapse;
	border:1px solid #7F9DB9;	/* Dark green border */
	background-color:#FFFFFF;	/* White background color */
	text-align:left;
font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	z-index:100;
 caption-side: right;    
}
#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
	margin:1px;		
	padding:1px;
	cursor:pointer;	
        font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
#ajax_listOfOptions .optionDiv{	/* Div for each item in list */
		
}
#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
	background-color:#316AC5;
	color:#FFFFFF;
}
#ajax_listOfOptions_iframe{
	background-color:#F00;
	position:absolute;
	z-index:5;
}
	
form{
	display:inline;
}