/*
Suggestions Box is the HTML <DIV> which behaves as the parent container of  the Suggestions List container <DIV>
*/
.suggestionsBox {
	margin: 0px 0px 0px 0px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
    background: none repeat scroll 0 0 white;
    border-color: -moz-use-text-color #E7E7E7 #E7E7E7 -moz-use-text-color;
    border-style: none solid solid none;
    border-width: 0 1px 1px 0;
    padding: 0 !important;
    position: absolute;
    float: left;
    z-index: 999;
    width: 512px;
}

/*
Suggestions List is another <DIV> inside Suggestions Box which contains list (<LI> elements) of suggestions returned by AutoComplete Server.
*/
.suggestionList {
 	background: none repeat scroll 0 0 white;
    border-color: #A2BFF0 #558BE3 #558BE3 #A2BFF0;
    border-style: solid;
    border-width: 1px;
    display: block;
    margin: 0;
    z-index: 99;	
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	text-align: left;
	
}

/*
Suggestions List <LI> element properties decorates the suggestion element in the list. 
*/
.suggestionList li {
	margin: 0px 0px 3px 0px;
	padding: 3px;
	list-style-type:none;
	padding-left: 7px;
	white-space: nowrap;
	overflow-x: hidden;
        line-height:14px;
        font-weight:bold;
}
.suggestionList li b {
font-weight:normal;
}

/*
Item Hover can be defined to decorate the suggestion <LI> element to highlight when user moves the mouse pointer over it.   
*/
.itemhover{
	background: none repeat scroll 0 0 #D5E2FF;
}


/*
This property should be ignored. It is used to block crawlers from sending autocomplete requests to the server. 
Its just a trick used. 
*/

#ignoreme{
	visibility: hidden;
	width: 0px;
	height: 0px;
	
	
}


