/* Big box with list of options */
#ajax_listOfOptions{
	position:absolute;	/* Never change this one */
	width:292px;	/* Width of box */
	height:112px;	/* Height of box */
	overflow:auto;	/* Scrolling features */
	/*border-bottom: 1px solid #000;	 Dark green border */
	/*border-left: 1px solid #000;	 Dark green border */
	/*border-right: 1px solid #000;	 Dark green border */
	text-align:left;
	font-size:12px;
	z-index:100;
	background-image: url(../../images/qs/bg_qs.png);
	background-repeat: repeat-x;
}
#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
	margin:0px;		
	padding:3px;
	cursor:pointer;
	font-size:11px;
	border-bottom: 1px dotted #000;
	height: 29px;
	/*line-height: 21px;*/
}
#ajax_listOfOptions .optionDiv,
#ajax_listOfOptions .optionDiv a,
#ajax_listOfOptions .optionDiv a:visited
{	/* Div for each item in list */
	color: #FFF;
}
#ajax_listOfOptions .optionDivSelected,
#ajax_listOfOptions .optionDivSelected a:hover,
#ajax_listOfOptions .optionDivSelected a:active
{ /* Selected item in the list */
	background-color:#000;
	color:#FFF;
}
#ajax_listOfOptions_iframe{
	background-color:#F00;
	position:absolute;
	z-index:5;
}
