/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* default (inactive field) */
.sf_inactive{
	border:1px #000000  solid;
	background:#ffffff;
	color:#555555;
	
}
/* on focus (when field is clicked on)  */
.sf_active{
	border:1px #000000 solid;
	background:#fff;

	
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	border:1px #000000 solid;
	background:#fff;
	color:#888;
	
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
}
.sf_suggestion ul{
    border:1px #000066 dotted;
	position:absolute;
	margin:0;
	padding:0;
	background:#F6FBFF;
	color:#270108;
	top:0;
	left:188px;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
	
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#000000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	text-decoration:none;
	 
}
.sf_suggestion li.selected a{
	background:#eeeeee;
}