/* 

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

/* default (inactive field) */
.sf_inactive{
	border:2px #98CBDC solid;
	background:#DFDFE1;
	color:#000;
}
/* on focus (when field is clicked on)  */
.sf_active{
	border:2px #004B97 solid;
	background:#fff;
	color:#333;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	border:2px #3c90a5 solid;
	background:#fff;
	color:#888;
}

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

