

/* default (inactive field) */
.sf_inactive{
	border:1px #be7105 solid;
	background:#f7eed9;
	color:#be7105;
}
/* on focus (when field is clicked on)  */
.sf_active{
	border:1px #be7105 solid;
	background:#fff;
	color:#be7105;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	border:1px #be7105 solid;
	background:#fff;
	color:#be7105;
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
	width:auto;
}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background:#ffffff;
	top:0;
	left:0;
	text-align:left;
	font-family:Tahoma;
	font-size:10pt;
	text-decoration:none;
	list-style:none;
	width:200px;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#be7105;
}
.sf_suggestion li.selected a{
	background:#f7eed9;
}
