#ajax_listOfOptions{
	position:absolute;	/* Never change this one */
	width:324px;	/* Width of box */
	height:150px;	/* Height of box */
	overflow:auto;	/* Scrolling features */
	border:1px solid #317082;	/* Dark green border */
	background-color:#FFF;	/* White background color */
	text-align:left;
	font-size:0.9em;
	z-index:100;
}
#ajax_listOfOptions div{	/* General rule for both .optionDiv and .optionDivSelected */
	margin:1px;		
	padding:1px;
	cursor:pointer;
	font-size:0.9em;
}
#ajax_listOfOptions .optionDiv{	/* Div for each item in list */
	
}
#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
	background-color:#317082;
	color:#FFF;
}
#ajax_listOfOptions_iframe{
	background-color:#F00;
	position:absolute;
	z-index:5;
}
#ajax_tooltipObj{
	z-index:1000000;
	text-align:left;
}
#ajax_tooltipObj div{
	position:relative;
}

/* If you don't want the arrow - Just set the width of this div to 1 or something like that and drop the background selectors from the CSS below */

#ajax_tooltipObj .ajax_tooltip_arrow{	/* Left div for the small arrow */
	background-image:url('../Images/arrow.gif');
	width:20px;
	position:absolute;
	left:0px;
	top:0px;
	background-repeat:no-repeat;
	background-position:center left;
	z-index:1000005;
	height:60px;
}

#ajax_tooltipObj .ajax_tooltip_content{
	border:2px solid #745046;	/* Border width */
	left:0px;	/* Same as border thickness */
	top:0px;
	position:absolute;
	width:400px;	/* Width of tooltip content */
	height:325px;	/* Height of tooltip content */
	background-color:#FFF;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:1.1em;	/* Font size of content */
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}

#ajax_SecQuestObj .ajax_tooltip_content{
	border:2px solid #000000;	/* Border width */
	left:5px;	/* Same as border thickness */
	top:-20px;
	position:absolute;
	width:200px;	/* Width of tooltip content */
	height:120px;	/* Height of tooltip content */
	background-color:#FFF;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:1.0em;	/* Font size of content */
	font-weight:bold;
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}
#ajax_SecQuestObjCust .ajax_tooltip_content{
	border:2px solid #000000;	/* Border width */
	left:5px;	/* Same as border thickness */
	top:-20px;
	position:absolute;
	width:200px;	/* Width of tooltip content */
	height:120px;	/* Height of tooltip content */
	background-color:#FFF;	/* Background color */
	padding:5px;	/* Space between border and content */
	font-size:13px;	/* Font size of content */
	font-weight:bold;
	overflow:auto;	/* Hide overflow content */
	z-index:1000001;
}