
/* default (inactive field) */
.sf_inactive{}
/* on focus (when field is clicked on)  */
.sf_active{}
/* with text (when field is inactive but contains user's input)  */
.sf_text{}

/* suggestions box */
.sf_suggestion{
	position:relative;
	top:-1px;
	left:0px;
}
.sf_suggestion ul{
	position:absolute;
	margin:0px;
	padding:0px;
	top:0px;
	left:0px;
	border:1px solid #000000;
	background-color:#FFFFFF;
}
.sf_suggestion li{
	margin:0px;
	padding:0px;
	list-style:none;
	white-space: nowrap;
}
.sf_suggestion li a{
	padding-right:5px;
	display:block;
	text-indent:5px;	
	color:#000000;
	text-decoration:none;
}
.sf_suggestion li.selected a{
	background-color:#CCCCCC;
}
