#ajax_listOfOptions							/* Big box with list of options */
{
    position: absolute;						/* Never change this one */
    width: 250px;							/* Width of box */
    height: 200px;							/* Height of box */
    overflow: auto;							/* Scrolling features */
    border: 1px solid #E6E7ED;				/* Black border */
    background-color: #FFFFFF;				/* White background color */
    text-align: left;
    font-size: 11px;
    z-index: 100;
	opacity: 0.65; filter: alpha(opacity=65); -moz-opacity: 0.65; 
}

#ajax_listOfOptions div						/* General rule for both .optionDiv and .optionDivSelected */
{
    margin: 0px;
    padding: 4px;
    cursor: pointer;
    font-size: 11px;
    height: 16px;
    white-space: nowrap;
    overflow: hidden;
}

#ajax_listOfOptions .optionDiv				/* Div for each item in list */
{

}

#ajax_listOfOptions .optionDivSelected		/* Selected item in the list */
{
    background-color: #08124C;
    color: #E6E7ED;
}

#ajax_listOfOptions_iframe
{
    background-color: #FFFFFF;
    position: absolute;
    z-index: 5;
	opacity: 0.65; filter: alpha(opacity=65); -moz-opacity: 0.65; 
}

form
{
    display: inline;
}
