/*  Styling for Suggestion Box Container  */
.suggestionsBox {
	position: relative;
	width: 240px;
	background-color: #333399;
	border: 2px solid #000;
	color: #fff;
	padding: 5px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

.suggestionList {
	margin: 0px;
	padding: 0px;
	font-size:12px;
}


/*  Individual Search Results  */
.suggestionList li {
	margin: 0px 0px 3px 0px;
	padding: 2px;
	cursor: pointer;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	list-style-type: none;
}

/*  Hover effect  */
.suggestionList li:hover {
background-color: #eeeeee;
font-weight: bold;
color:black;
}

