@charset "utf-8";
/* 

	SearchField	
	by www.865171.cn
	
*/

/* default (inactive field) */
.sf_inactive{
	border:1px solid #ADADAD;
	background:#F5F5F5;
	color:#B0B0B0;
	z-index: 55;
	height: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	width: 160px;
}
/* on focus (when field is clicked on)  */
.sf_active{
	border:1px solid #8E8E8E;
	background:#fff;
	color:#333;
	z-index: 55;
	height: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	line-height: 12px;
	vertical-align: middle;
	width: 160px;
}
/* with text (when field is inactive but contains user's input)  */
.sf_text{
	border:1px solid #707070;
	background:#fff;
	color:#B7B7B7;
	z-index: 55;
	height: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	text-align: left;
	line-height: 12px;
	vertical-align: middle;
	width: 160px;
}

/* suggestions box */
/* js code generates unordered list */
.sf_suggestion{
	position:relative;
	z-index: 55;
	font-weight: normal;
	top: 0px;
	height: 0
.px;
	margin: 0px;
	padding: 0px;
	height: 0px;
}
.sf_suggestion ul{
	position:absolute;
	background:#FFFFFF;
	top:0px;
	left:0px;
	z-index: 55;
	font-weight: normal;
	vertical-align: top;
	border-right: 0px solid #8E8E8E;
	border-bottom: 0px solid #8E8E8E;
	border-left: 0px solid #8E8E8E;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-right: 0px;
	margin: 0px;
}
.sf_suggestion li{
	list-style:none;
	z-index: 55;
	top: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-right: 0px;
	padding-right: 0px;
}
.sf_suggestion li a{
	display:block;
	text-indent:5px;
	color:#00A2E5;
	z-index: 55;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 20px;
	background-color: #FFFFFF;
	text-decoration: none;
}
.sf_suggestion li.selected a{
	background:#FAFAFA;
	z-index: 55;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #FF9900;
	text-decoration: none;
	line-height: 20px;
}
form button{
	width:52px;
	height:24px;
	border:none;
	text-indent:-8000px;
	overflow:hidden;
	background:url(../button.gif) no-repeat 0 0;
	cursor:pointer;
	vertical-align:middle;
	position: relative;
}
form input{
	width:160px;
	padding:3px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	vertical-align: middle;
}
