#container {
	width: 250px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 25px;
	margin-bottom: 0px;
	padding: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}


/*  Styling for Suggestion Box Container  */
.suggestionsBox {
	position: absolute;
	width: 350px;
	background-color: #ffffff;
	border: 2px solid #0a7817;
	color: #2a6407;
	padding: 5px;
	margin-top: 5px;
	margin-right: 200px;
	margin-bottom: 0px;
	margin-left: 52px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

#inputString {
width: 240px;
padding: 2px;
font-size: 13px;

}


.suggestionList {
	margin: 0px;
	padding: 0px;
}


/*  Individual Search Results  */
.suggestionList li {
	margin: -12px 0px 5px 12px;
	padding: 6px;
	cursor: pointer;

    -moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	list-style-type:disc;
}

/*  Hover effect  */
.suggestionList li:hover {
    background-color: #0066CC;
    /*border: 1px solid #0a7817;*/
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

