/* Style For Suggestions */
    
/*
 For creating side border like this
 | item 1   |
 | item 2   |
 */
 .suggestions{
    z-index: 10;
    border:1px solid rgba(66,133,244,0.3);
 }
.suggestions .suggest_item{
    padding:0 20px;
    line-height: 34px;
    background-color:#fff;
    /*border-left:1px solid rgba(66,133,244,0.3);
    border-right:1px solid rgba(66,133,244,0.3);*/
}

/*
 For creating top border like this
 ------------
   item 1
   ...
 */
.suggestions .suggest_item.first{
    /*border-top:1px solid rgba(66,133,244,0.3);*/
}

/*
 For creating bottom border like this
   ...
   item 2
  ------------
 */
.suggestions .suggest_item.last{
    /*border-bottom:1px solid rgba(66,133,244,0.3);*/
}

/*
 For coloring the selected item
 */
.suggestions .suggest_item.selected, .suggestions .suggest_item.selected .description{
    /*background-color:#999999;*/
    /*color:#FFFFFF;*/
    cursor:pointer;
}

.suggestions .suggest_item .suggestion_title{
    font-size:14px;
    color:rgb(51,51,51);
    font-weight: bold;
}
.suggestions .suggest_item .suggestion_title b{
    font-weight: normal;
}

/*
 Image thumbnail
 */
.suggestions .suggest_item .thumbnail{
    background-color: transparent;
    background-position: top center;
    background-repeat: no-repeat;
    margin: 1px 2px 1px 2px;
    float: left;
    width: 50px;
    height: 50px;
}

/*
 Description
 */
.suggestions .suggest_item .description{
    font-style: italic;
    font-size: 11px;
    color: #777;
}