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

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