/* Big box with list of options */
#ajax_listOfOptions{
  position:absolute;  /* Never change this one */
  width:200px;  /* Width of box */
  height:210px;  /* Height of box */
  overflow:hidden;  /* Scrolling features */
  border:1px solid #2489CE;  /* Dark green border */
  background-color:#FFF;  /* White background color */
  text-align:left;
/*  font-size:0.9em;*/
  font-size:16px;
  font-weight: bold; 
  z-index:100;
  margin: 0; counter-reset: listnumbering;
}

#ajax_listOfOptions div{  /* General rule for both .optionDiv and .optionDivSelected */
  list-style:none; 
  display: block; margin:0; position: relative; overflow: visible; 
  padding: .7em 15px .7em 15px;  
  color:#333333;
  cursor:pointer;
  border-bottom:1px solid 		#ccc
}

#ajax_listOfOptions .optionDiv{  /* Div for each item in list */
  
}

#ajax_listOfOptions .optionDivSelected{ /* Selected item in the list */
/*  background-color:#317082;*/
  background-color:#2489CE;
  color:#FFF;
}

#ajax_listOfOptions_iframe{
  background-color:#F00;
  position:absolute;
  z-index:105;
} 
