/* 

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


#searchform

		{
		margin: 0 0 0 0;
		padding: 0 0 0 0;
		width: 357px;
		height: 24px;
		}


#searchfield

		{
		background-color: #FFFFFF;
		padding: 5px 0 0 10px;
		margin: 0 0 0 0;
		width: 270px;
		height: 19px; 
		font-family: Verdana, Arial, Helvetica, sans-serif;
		color: #000000;
		font-size: 1.1em;
		border: none;
		}


*+html #searchfield 

		{
		margin: 0 3px 0 0;
		width: 269px;
		} 

/* nur für den IE7 */

*html #searchfield 

		{
		margin: 0 3px 0 0;
		width: 269px;
		} 

/* nur für den IE6 */


form button	

		{
		width: 24px;
		height: 24px;
		margin: 0 0 0 0;
		background: url(../picts/button_search.gif);
		background-repeat: no-repeat;
		cursor: pointer;
		border: none;
		}



/* default (inactive field) */
.sf_inactive{
	background:#FFFFFF;
	color:#000000;
	
}
/* on focus (when field is clicked on)  */
.sf_active{
	background:#FFFFFF;
	color:#000000;
	
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	background:#FFFFFF;
	color:#000000;
	
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position: relative;
	z-index: 1000000001;
	
	
}
.sf_suggestion ul{
	position: absolute;
	margin:0;
	padding:0;
	background:#FFFFFF;
	top:0;
	left:0;
	
}
.sf_suggestion li{
	margin:0;
	padding:0 0 4px 6px;
	font-size: 1.1em;
	list-style:none;
	
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color: #000000;
	
	
}
.sf_suggestion li.selected a{
	background:#FFFFFF;
	color: #00518E;
	text-decoration: none;
}