/* Style For Suggestions */

#suggestions_holder{z-index: 999; top: 43px;}
/*
 For creating side border like this
 | item 1   |
 | item 2   |
*/
.suggestions .suggest_item{
    background-color: #fff;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    padding: 4px 12px;
    border-bottom: 1px dotted #ddd;
}

/*
 For creating top border like this
 ------------
   item 1
   ...
*/
.suggestions .suggest_item.first{
    border-top:1px solid #CCCCCC;
}

/*
 For creating bottom border like this
   ...
   item 2
  ------------
*/
.suggestions .suggest_item.last{
    border-bottom:1px solid #CCCCCC;
}

/*
 For coloring the selected item
*/
.suggestions .suggest_item.selected, .suggestions .suggest_item.selected .description{
    background-color:#ddd;
    cursor:pointer;
}

/*
 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;
}
/*
 Title
*/
.suggestions .suggest_item .suggestion_title{
    float: left;  
    width:85%;
}
/*
 Description
*/
.suggestions .suggest_item .description{
    font-style: italic;
    font-size: 11px;
    color: #777;
    float: right;  
    width: 10%;
    text-align: right;
}