/* Big box with list of options */
#ajax_listOfOptions{
	position:absolute;	/* Never change this one */
	left:12px;
	border:1px outset #062d63;
	background-color:#ffffff;
	text-align:left;
	font-size:11px;
	width:294px;
	height:146px;
	overflow:hidden;
	z-index:99999;	
	display:none;
	overflow-y:auto;
}

#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
	/*margin:2px 0px 1px 0px;*/
	min-height:18px;
	color:#000000;
	background-color:#ffffff;
	overflow:hidden;
	cursor:pointer;
	font-size:8pt;
	white-space:nowrap;
}

#ajax_listOfOptions div table.content td{
	vertical-align:middle;
	height:18px;
	/*white-space:nowrap;*/
}

#ajax_listOfOptions table.content{
	width:100%;
	padding:0px;
	margin:0px;
	border-collapse:collapse;	
	border:0px;
}


#ajax_listOfOptions .optionDivSelected, #ajax_listOfOptions .optionDivSelected table.content td { /* Selected item in the list */
	color:#ffffff;
	background-color:#083c84;
}


#ajax_listOfOptions_iframe{
	position:absolute;
	background-color:#d2e8ff;
	border:0px;
	display:none;
	z-index:9999;	
}


