/* 

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


/* default (inactive field) */
.sf_inactive{
  border:1px #000 solid;
	/*border:2px #3d91a5 solid;*/
	/*background:#3d91a5;*/
	/*color:#b4d3db;*/
}
/* on focus (when field is clicked on)  */
.sf_active{
	border:1px #ffff00 solid;
	background:#fff;
	color:#333;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	border:1px #ccc solid;
	background:#fff;
	color:#888;
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
}
.sf_suggestion ul{
	z-index:2;
	position:absolute;
	margin:0;
	padding:0;
	background:#fff;
	top:0;
	left:0;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
	font-size:12px;
	height:15px;
	border-bottom:solid 1px;
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#000;
	height:15px;
}
.sf_suggestion li.selected a{
	background:#fc0;
	height:15px;
}
