/* autocomplete css */
#ajax_listOfOptions{
  position:absolute;  /* Never change this one */
  width:150px;  /* Width of box */
  height:120px;  /* Height of box */
  overflow:auto;  /* Scrolling features */
  border:0px solid #317082;  /* Dark green border */
  background-color:#000000;  /* White background color */
  text-align:left;
  font-family : Arial;
  font-size:10px;
  z-index:100;
  color : #000000;
  filter:alpha(opacity=90);   /* Internet Explorer       */
   -moz-opacity:0.90;           /* Mozilla 1.6 and below   */
   opacity: 0.90;  
    
}
#ajax_listOfOptions div{  /* General rule for both .optionDiv and .optionDivSelected */
  margin:0px;    
  padding:1px;
  cursor:pointer;
  
}


#ajax_listOfOptions .optionDiv{  /* Div for each item in list */
  color:#e9e9e9;
}

#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
  background-color:#333333;
  color:#ffbf7f;
}
#ajax_listOfOptions_iframe{
  background-color:#F00;
  position:absolute;
  z-index:5;
}