.autocomplete-suggestions
{
   text-align: left; 
   cursor: default; 
   border: 1px solid #7F9CF5;
   border-top: 0; 
   border-radius: 3px;
   background: #EBF4FF;
   box-shadow: 3px 3px 8px rgba(0,0,0,.3);

   /* core styles should not be changed */
   position: absolute;
   display: none; 
   z-index: 9999; 
   max-height: 254px; 
   overflow: hidden; 
   overflow-y: auto; 
   box-sizing: border-box;
}
.autocomplete-suggestion
{
   position: relative; 
   padding: 0 .6em;
   line-height: 23px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   font-size: 1.02em;
   color: #333;
}
.autocomplete-suggestion b
{
   font-weight: bold;
   color: #1f8dd6;
}
.autocomplete-suggestion.selected
{
   background: #A3BFFA;
   -moz-box-shadow: inset 2px 2px 2px rgba(255, 255, 255, .4), inset -2px -2px 2px rgba(0, 0, 0, .4);
   -webkit-box-shadow: inset 2px 2px 2px rgba(255, 255, 255, .4), inset -2px -2px 2px rgba(0, 0, 0, .4);
   box-shadow: inset 2px 2px 2px rgba(255, 255, 255, .4), inset -2px -2px 2px rgba(0, 0, 0, .4);
}
