/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* default (inactive field) */
.sf_inactive{
	
	/*background:#3d91a5;*/
	color:#666;
	list-style:none;
	
}
/* on focus (when field is clicked on)  */
.sf_active{
	
	/*background:#fff;*/
	color:#666;
	list-style:none;
	
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	
	/*background:#fff;*/
	color:#666;
	list-style:none;
	
	
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
	font-size:12px;
	list-style:none;
	text-align:left;
	
}

.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background:#333;
	color:666;
	list-style:none;
	top:0;
	left:0;
	line-height:20px;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
	color:666;
	line-height:20px;
	
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#777;
	list-style:none;
	line-height:20px;
}
.sf_suggestion li.selected a{
	background:#000;
	list-style:none;
	color:#CCC;
	list-style:none;
	
}
