	/* Big box with list of options */
	#ajax_listOfOptions{
		position:absolute;	/* Never change this one */
		width:300px;	/* Width of box */
		height:auto;	/* Height of box */
		/*overflow:auto;	*//* Scrolling features */
		border:1px solid #838e7d;	/* Dark green border */
		border-top:none;
		background-color:#FFF;	/* White background color */
		text-align:left;
		font-size:0.5em;
		z-index:100;
		
		background:#fff;
		border:2px solid #838e7d;
		border-top:none;
		width:300px;
		color:#000000;
		height:200px;
		overflow-x:hidden;
		overflow-y:hidden;
	}
	#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
		margin:1px;		
		padding:1px;
		cursor:pointer;
		font-size:0.5em;
		
	background:#fff;
	width:300px;
	color:#000000;
	height:auto;
	float:left;
	cursor:pointer;
	font:12px Arial,Helvetica,Sans-serif;
	font-weight:500;
	padding:2px 5px 2px 5px;
	}
	#ajax_listOfOptions .optionDiv{	/* Div for each item in list */
		
	}
	#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
		background-color: #d6d6d6;
		color:#FFF;
	}
	#ajax_listOfOptions_iframe{
		background-color:#F00;
		position:absolute;
		z-index:5;
	}
	
	form{
		display:inline;
	}
	
