/* 
    Document   : suggest
    Created on : Jul 19, 2010, 1:48:53 AM
    Author     : Thanu
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/* Big box with list of options */
	#ajax_listOfOptions{
		position:absolute;	/* Never change this one */
		width:143px;	/* Width of box */
		overflow:auto;	/* Scrolling features */
                border:1px solid #317082;	/* Dark green border */
		background-color:#FFFFFF;	/* White background color */
		text-align:left;
		font-size:0.9em;
		z-index:100;
                font: 11px arial;
	}
	#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:#3366CC;
		color: #FFFFFF;
	}
	#ajax_listOfOptions_iframe{
		background-color: #FFFFFF;
		position:absolute;
		z-index:5;
	}

	form{
		display:inline;
	}