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

/* default (inactive field) */
.sf_inactive{
	/*border:2px #3d91a5 solid;*/
	/*background:#3d91a5;
	color:#EFBE4A;*/
}
/* on focus (when field is clicked on)  */
.sf_active{
	/*border:2px #8BB544 solid;
	background:#ffffff;
	color:#EFBE4A;*/
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	/*border:2px #3c90a5 solid;
	background:#fff;
	color:#EFBE4A;*/
}
/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
	width:350px;
}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	/*background:#52084A;*/
	background:#CFCFCF;
	top:0;
	left:0;
	width:350px;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
	width:350px;
	font-family:  arial, "arial ce" ,verdana,  helvetica;
	font-size: 11px;
	
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:black;
	text-decoration:none;
	font-weight:500;
}
.sf_suggestion li.selected a{
	background:#E8B25A;
	text-decoration:none;
}
