
/* CSS AUTOCOMPLETE */

	ul {
		list-style: none;
		margin: 0;
		padding: 0;}
		
	/* Autocompletion */
	.update{
		position:absolute;
		width:250px;
		background-color:white;
		border:1px solid #888;
		margin:0px;
		padding:0px;}
	
	ul.contacts  {
		list-style-type: none;
		margin:0px;
		padding:0px;
		text-align: left;}
		
	ul.contacts li.selected { 
		background-color: #C4D7E8; 
		cursor: pointer;}
		
	li.contact {
		list-style-type: none;
		display:block;
		margin:0;
		padding:2px;
		height:18px;}
		
	li.contact div.nom {
		font-weight:normal;
		font-style: normal;
		font-size:12px;
		line-height:1.2em;}
