/* CSS Document */
/*pour l'autocompletion*/
body {
	font-family: Helvetica;
	font-size: 11px;
	color: #000;
}

h3 {
	margin: 0px;
	padding: 0px;	
}

.suggestionsBox {
	position:absolute;
	margin-left:-35px;

	background-color: #212427;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border: 2px solid #000;	
	color: #fff;
}

.suggestionList {
	margin: 0px;
	padding: 0px;
}

.suggestionList li {
	
	margin: 0px 0px 3px 0px;
	padding: 3px;
	cursor: pointer;
}

.suggestionList li:hover {
	background-color: #659CD8;
}


        	
        	
