#or input[type="text"]:hover{
	-webkit-animation: pulse 1.5s infinite ease-in-out;
}

#resto_paris:hover{
	border: 1px solid #fff;
	-webkit-animation: pulse 1.5s infinite ease-in-out;
}

@-webkit-keyframes pulse{
	0%{
		-webkit-box-shadow: 0 0 12px rgba(51, 204, 255, 0.2);
	}
	50%{
		-webkit-box-shadow: 0 0 12px rgba(51, 204, 255, 0.9);
	}
	100%{
		-webkit-box-shadow: 0 0 12px rgba(51, 204, 255, 0.2);
	}
}

