
/* suggestions box */
/* js code generates unordered list */

.suggestionsBox{
	width: 161px;
	height: 1px;
	position:relative;
	margin-top: -4px;
	clear: both;

}
.suggestionsBox ul{
	position:absolute;
	top:0;
	left:0;
	display: none;

	
}
.suggestionsBox li{
	list-style:none;
	
	width: 157px;
	display:block;
	color:#555;
	padding: 5px;
	text-decoration: none; font-weight: normal;
	font-size: 12px;
	

	border-top: 1px solid #fff;
	border-bottom: 1px solid #eee;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
	background-color:#fbfbfb;
	cursor: pointer;

}
.suggestionsBox li:hover {
	background-color: #eee;
}
