#autocompleteField,
#autocompleteFieldMask{
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	min-height: 41px;
}
#autocompleteField[contenteditable=true]:empty:before {
	content: attr(placeholder);
	display: block; /* For Firefox */
	overflow: hidden;
	text-overflow: ellipsis;
   font-size: 0.9em;
   pointer-events: none;/* XGOU : A tester pour pb focus moteur chrome */
}
#autocompleteField[contenteditable=true]:focus:before {
	display: none;
}
#autocompleteField,.typeahead.tt-hint{
	z-index: 4;
	font: 16px/30px Arial, Helvetica, sans-serif;
	color: #666;
	padding: 6px 13px 6px;
	white-space: nowrap;
	cursor: text;
	width: 100%;
	box-sizing: border-box;
	min-height: 41px;
}
.twitter-typeahead .tt-menu {
	right: 0;
	height: auto;
	overflow-x: hidden;
	overflow-y: auto;
}
.twitter-typeahead .autocompleteSuggests {
	width: 100%;
	display: block;
	position: relative;

}
#autocompleteDownload,
#autocompleteReset{
	display: none;
}
.displayInfo #autocompleteDownload{
	display: block;
	position: absolute;
	top: 0;
	right:40px;
	width: 30px;
	height: 40px;
	background: url(../images/autocomplete_sprite.png) 0 top;
	z-index: 4;
}
.displayInfo #autocompleteDownload:hover{
	background-position: 0 bottom;
}
.displayInfo #autocompleteReset{
	display: block;
	position: absolute;
	top: 0;
	right: 15px;
	width: 30px;
	height: 40px;
	background: url(../images/autocomplete_sprite.png) -30px top;
	z-index: 4;
}
.displayInfo #autocompleteReset:hover{
	
	background-position: -30px bottom;
}
#autocompleteSubmit{
	display: block;
	position: absolute;
	top: 1px;
	right:-65px;
	width: 65px;
	height: 40px;
	background: url(../images/autocomplete_sprite.png) right top;
	border-radius: 0 1px 1px 0;
	z-index: 4;
	border-bottom: 1px solid #666;
	border-right: 1px solid #666;
}
#autocompleteSubmit:hover{
	background-position: right bottom;
}

#autoccomplete-wrapper {
	position: relative;
}
#autocompleteFieldMask{
	height: 41px;
	background: #fff;
	z-index: 3;
	border-radius: 1px;
}
#autocompleteField img{
	margin: 0 8px -4px;
}

.autocompleteSuggests,
#autocompleteSuggestsMask{
	position: absolute;
	left: 0;
	width: 100%;
	overflow: hidden;
	background-color: #fff;
}
.autocompleteSuggests{
	z-index: 4;
	font-size: 0;
	line-height: 0;
	color: #666;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #666;
	border-right: 1px solid #666;
}
.autocompleteSuggests .tt-suggestion{
	cursor:pointer;
	list-style: none;
	font: 16px/30px Arial, Helvetica, sans-serif;
	border-bottom: 1px solid #e1e1e1;
}
.autocompleteSuggests .tt-suggestion:last-child{
	border-bottom: 0;
}
.autocompleteSuggests > div{
	display: block;
	color: #666;
	text-decoration: none;
	padding: 4px 13px 3px;
}
.autocompleteSuggests .tt-suggestion.highlighted {
	background: #f7f7f7;
}
.autocompleteSuggests .tt-suggestion em{
	display: inline-block;
	width: 17px;
	height: 18px;
	margin: 0 8px -3px;
	background: url(../images/poste_autocomplete_icon.png);
}
.autocompleteSuggests .tt-suggestion:hover em{
	background-position: left bottom;
}
#autocompleteSuggestsMask{
	background: #fff;
	z-index: 3;
	border-radius: 1px;
	height: 0;
	transition-property: height;
	transition-duration: .2s;
	width: 563px;
}
@media screen and (max-width: 740px) {
	#autocompleteSubmit {
		display: none;
	}
}