/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* 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 */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
	z-index:1000000;
	width:280px;
	font-family:Arial, Helvetica, sans-serif
}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background:#336699;
	top:0;
	left:0;
	width:280px
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
	width:280px
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#fff;
	width:280px;
	font-weight:600;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif
}
.sf_suggestion li.selected a{
	background:#ffcc33;
	color:#333333;
	text-decoration:none;
}
