/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* default (inactive field) */
.sf_inactive{
	/* border:2px #333333 solid; */
	background: #EEEEEE;
	color:#333333;
	/* font-size:1px; */
}
/* on focus (when field is clicked on)  */
.sf_active{
	/* border:2px #EEEEEE solid; */
	background:#EEEEEE;
	color:#333;
	/* font-size:1px; */
}
/* with text (when field is inactive but contains user's input)  */


/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background: #999999;
	top:0;
	left:0;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#fff;
}
.sf_suggestion li.selected a{
	background: #666666;
}