/* 

	SearchField	
	by Alen Grakalic, brought to you by cssglobe.com
	
*/

/* default (inactive field) */
.sf_inactive{
	FONT-SIZE: 1em;
 	COLOR: black;
 	FONT-FAMILY: Arial, Helvetica, sans-serif;
 	BACKGROUND-COLOR: #f4f4f4;
 	BORDER-RIGHT: #000000 1px solid;
 	BORDER-TOP: #000000 1px solid;
 	BORDER-LEFT: #000000 1px solid;
 	BORDER-BOTTOM: #000000 1px solid;
	HEIGHT: 19px;
	WIDTH: 110PX;
}
/* on focus (when field is clicked on)  */
.sf_active{
	FONT-SIZE: 1em;
 	COLOR: black;
 	FONT-FAMILY: Arial, Helvetica, sans-serif;
 	BACKGROUND-COLOR: #f4f4f4;
 	BORDER-RIGHT: #000000 1px solid;
 	BORDER-TOP: #000000 1px solid;
 	BORDER-LEFT: #000000 1px solid;
 	BORDER-BOTTOM: #000000 1px solid;
	HEIGHT: 19px;
	WIDTH: 110PX;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	FONT-SIZE: 1em;
 	COLOR: black;
 	FONT-FAMILY: Arial, Helvetica, sans-serif;
 	BACKGROUND-COLOR: #f4f4f4;
 	BORDER-RIGHT: #000000 1px solid;
 	BORDER-TOP: #000000 1px solid;
 	BORDER-LEFT: #000000 1px solid;
 	BORDER-BOTTOM: #000000 1px solid;
	HEIGHT: 19px;
	WIDTH: 110PX;
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position: relative;
	margin-left: -135px;
}
.sf_suggestion ul{
	position:absolute;
	margin:0;
	padding:0;
	background: darkgreen;
	top:0;
	left:0;
	text-align: left;
	font-size: 1em;
	font0-weight; bold;
	color: #fff;
}
.sf_suggestion li{
	margin:0;
	padding:0;
	list-style:none;
	text-align: left;
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#fff;
	text-align: left;
	font-size: 1em;
}
.sf_suggestion li.selected a{
	background:#F2F2EE;
	color: #000;
}
