/* Style For Suggestions */
    
/*
 For creating side border like this
 | item 1   |
 | item 2   |
 */

.suggestions {
	padding-top: 10px;
	padding-left: 8px;
	width: 290px;
}

.suggestions .suggest_item{
	width: 290px;
	padding-bottom: 5px;
	padding-top: 5px;
	background-color:#ffffff; 
	color: #767676;
	font-size: 18px;
	border-left:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
	z-index:12;
}

/*
 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:#333333;
	color:#767676; 
	cursor:pointer;
}

/*
 Description
 */
.suggestions .suggest_item .description{
	font-style: italic;
	font-size: 11px;
	color: #767676;
}