/* 

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

/* default (inactive field) */
.sf_inactive{
	border:2px #111 solid;
	background:#111;
	color:#666;
        font-weight:100;
        font-family:tahoma;
        font-size:8pt;
}
/* on focus (when field is clicked on)  */
.sf_active{
	border:2px #665555 solid;
	background:#111;
	color:#666;
        font-weight:100;
        font-family:tahoma;
        font-size:8pt;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	border:2px #111 solid;
	background:#111;
	color:#666;
        font-weight:100;
        font-family:tahoma;
        font-size:8pt;
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
        z-index:500;
}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background:#111;
	top:0;
	left:0;
        z-index:500;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
        z-index:500;
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#666;
        z-index:500;
}
.sf_suggestion li.selected a{
	background:#333;
        z-index:500;
}