div.autocomplete {

     background: #ffffff;      
     border: 1px solid #7f9db9;  
     white-space: nowrap;        
     overflow: hidden;                
     z-index: 1;                   
     height: 100px; 
     overflow:auto; 
	 width:300px;

    }

div.autocomplete ul {
      list-style-type:none;
      margin:0px;
      padding:0px;
    }

div.autocomplete ul li {
      list-style-type:none;
      display:block;
      margin:0;
      padding:2px;
      height:16px;
      cursor:pointer;
	  padding-bottom:5px;
	color:#3e4297; /******couleur normale des propositions******/	
    }
div.autocomplete ul li.selected { 
	background-color: #ecf1f8; 
	color:#ff6600; /******couleur de survol des propositions******/
	}

