/*
 * easy-autocomplete
 * jQuery plugin for autocompletion
 * 
 * @author Łukasz Pawełczak (http://github.com/pawelczak)
 * @version 1.3.5
 * Copyright  License: 
 */

.easy-autocomplete {
    position: relative;
    text-align: left;
}

.easy-autocomplete ul li:before {
    background-color: #ff6a00;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width:0;
    height: 0;
}

.easy-autocomplete-container {
  left: 0px;
  position: absolute;
  width: 100%;
  z-index: 2;
  border: 0px solid #CCCCCC;
}
.easy-autocomplete-container ul {
  background: none repeat scroll 0 0 #ffffff;
  border-top: 0px dotted #ccc;
  display: none;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  position: relative;
  top: -1px;
}
.easy-autocomplete-container ul li, .easy-autocomplete-container ul .eac-category {
  background: inherit;
  border-color: #ccc;
  border-image: none;
  border-style: solid;
  border-width: 0 0px;
  border-bottom: 0px solid #CCCCCC;
  display: block;
  font-size: 18px;
  font-weight: normal;
  padding: 8px 12px;
}
.easy-autocomplete-container ul li:last-child {
  border-radius: 0px;
  border-width: 0px;
}
    .easy-autocomplete-container ul li.selected {
        background: none repeat scroll 0 0 #002664;
        cursor: pointer;
        color: #FFFFFF;
    }
.easy-autocomplete-container ul li.selected div {
  font-weight: normal;
}
.easy-autocomplete-container ul li div {
  display: block;
  font-weight: normal;
  word-break: break-all;
}
.easy-autocomplete-container ul li b {
  font-weight: bold;
}
.easy-autocomplete-container ul .eac-category {
  font-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;
}

/*# sourceMappingURL=easy-autocomplete.css.map */

.easy-autocomplete {
    width: 100% !important;
}

    .easy-autocomplete input {
        width: 100%;
    }

/*
.form-wrapper {
    width: 500px;
}*/