/* TextboxList sample CSS */
ul.holder {
	list-style: none; 
	margin: 0; 
	overflow: hidden; 
	padding: 4px 5px 0; 	
	width: 350px;
	
	border: 1px solid #999;
	height:auto !important;
	position: relative;
}

ul.holder li { 
	float: left; 	
	margin: 0 5px 4px 0;
}
ul.holder li.bit-box { 
	-moz-border-radius: 6px; 
	-webkit-border-radius: 6px; 
	border-radius: 6px; 
	border: 1px solid #CAD8F3; 
	background: #DEE7F8; 
	padding: 1px 5px 2px; 
}

ul.holder li.bit-input input { 
	width: 150px;
	margin: 0;
	position:absolute;
	top:-1px;
	left:0;
	border: 1px solid white; 
	outline: 0;
	
	/*
padding: 3px 0 2px;
*/ 
} /* no left/right padding here please */

ul.holder li.bit-box { 
	padding-right: 20px; 
	position: relative; 
	height: 15px;
	line-height: 15px;
	font-size: 12px;
	margin-top: -1px;
}
ul.holder li.bit-input { 
	margin: 0; width: 5px;

	position: relative;	
}
ul.holder li.bit-hover { 
	background: #BBCEF1; 
	border: 1px solid #6D95E0; 
}
ul.holder li.bit-box a.closebutton { 
	position: absolute; 
	right: 1px; 
	top: 4px; 
	display: block; 
	width: 17px; 
	height: 12px; 
	font-size: 1px; 
	background: url(../img/close.gif) no-repeat; 
}

ul.holder li.blank_li {
	height: 19px;
	line-height: 19px;
}

/* Autocompleter */

#result_list { position: absolute; width: 362px; }
#result_list .default { padding: 5px 7px; border: 1px solid #ccc; border-width: 0 1px 1px; background: #eee;}
#result_list ul {  margin: 0; padding: 0; background: #eee;}
#result_list ul li { padding: 5px 12px; margin: 0; list-style-type: none; border: 0px solid #ccc; border-width: 0 1px 1px; font: 11px "Lucida Grande", "Verdana"; }
#result_list ul li em { font-weight: bold; font-style: normal; background: #ccc; }
#result_list ul li.auto-focus { background: #4173CC; color: #fff; cursor: pointer; }
#result_list ul li.auto-focus em { background: none; }
