/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* default (inactive field) */
.sf_inactive{
   width: 20em;
	border:2px #7F4E30 solid;
	background:#fff;
	color:#666;
	font-size: 11px;
	padding: 0 0 0 5px;
	height: 16px;
}
/* on focus (when field is clicked on)  */
.sf_active{
width: 20em;
	border:2px #7F4E30 solid;
	background:#fff;
	color:#666;
	font-size: 11px;
	padding: 0 0 0 5px;
	height: 16px;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
width: 20em;
	border:2px #7F4E30 solid;
 background-color:#F9F1E4;
	color:#543019;
	font-size: 11px;
	padding: 0 0 0 5px;
	height: 16px;
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
	text-align: left;
	margin:0 0 0 60px;
	z-index: 4000;
}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background:#F9F1E4;
	top:0;
	left:0;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
}

.sf_suggestion li a{
	display:block;
	text-indent:5px;
	font-size: 90%;
	background:#F9F1E4;
	color: #543019;
}
.sf_suggestion li.selected a{
	background:#7F4E30;
	color: white;

}

.sf_suggestion li a:hover {
	background: #7F4E30;
	color: white;
}