/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

.easy-autocomplete {
  position: relative;
}
.easy-autocomplete a {
  display: block;
}
.easy-autocomplete-container {
  left: 0;
  margin-top: -20px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.easy-autocomplete-container ul:not(:empty) {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 1px solid #a38d6c;
  display: none;
  margin-bottom: 50px;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -2px;
}
.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #a38d6c;
  border-image: none;
  border-style: solid;
  border-width: 0 2px;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: normal;
	margin: 0;
  /*padding: 4px 12px;*/
}
.easy-autocomplete-container ul li:last-child {
  border-radius: 0 0 3px 3px;
  border-width: 0 2px 2px;
}
.easy-autocomplete-container ul li.selected {
  background: none repeat scroll 0 0 #eee;
  cursor: pointer;
}
.easy-autocomplete-container ul li.selected div {
  font-weight: normal;
}
.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  padding: 4px 12px;
  word-break: break-all;
}
.easy-autocomplete-container ul li b {
  font-weight: bold;
}
.easy-autocomplete-container ul .eac-category {
  color: #aaa;
  font-style: italic;
}
.eac-description .eac-item span {
  color: #aaa;
  font-style: italic;
  font-size: 0.9em;
}
.eac-icon-left .eac-item img {
  margin-right: 4px;
  max-height: 30px;
}
.eac-icon-right .eac-item {
  margin-top: 8px;
  min-height: 24px;
  position: relative;
}
.eac-icon-right .eac-item img {
  margin-left: 4px;
  max-height: 30px;
  position: absolute;
  right: -4px;
  top: -8px;
}