/* Input textbox - do not specify a width here, it will be overwritten */
/*.ffb-input {
	float:left;
	color:#000; 
	margin-left:4px;
	height:12px;
	margin-top:2px;	
	font-size:10px
}*/
/* Color of watermark, if present */
.ffb-input.watermark { /* added and removed dynamically */
	color:#888; /* must specify along with input color */
}
/* Drop-down arrow, with sprited image */
.ffb-arrow {
	float:left;
	width:18px;
	/*height:22px; */
	background-image:url(../img/sel.gif);
}
.ffb-arrow.out { /* css sprite technique */
	background-position:0;
}
.ffb-arrow.over { /* css sprite technique */
	background-position:-18px 0;
}
.ffb-arrow.active { /* css sprite technique */
	background-position:-36px 0;
}
.ffb-no-results 
{
	padding: 2px;
	color:#888;
	font-style:italic;
	border:#FF0000 solid;
}
/* Container for dropdown contents */
.ffb {

	position:absolute; /* this guy's parent div is hard-coded to position:relative */
	float:left;
	width:320px;
	max-height:205px;
	overflow:hidden;
	border-left:1px solid #7B9EBD;
	border-right:1px solid #7B9EBD;
	border-bottom:1px solid #7B9EBD;
	background-color:#fff; /* Give it a background-color, so it's not transparent */
	margin-left:0px; /* se si tolgono in explorer si sposta */
	right: -130px;
	

}
/* Inner div for dropdown */
.ffb .content {
	z-index:1000;
	float:left;
	overflow:hidden;
	width:320px;
	max-height:205px;
	text-align:left;
	font-size:11px;
	
}
.ffb .content .row {
	border-bottom:1px solid #7B9EBD;
	color:#555;
	height:auto;
	clear:both;
}
.ffb-sel {
	cursor:pointer;
	cursor:hand;
	background-color:#ddd;
}
.ffb-match {
	background-color:#97b1e4;
	/*text-decoration:underline;*/
	color:#000;
}

/* Paging */
.ffb .paging {
	margin:2px;
	vertical-align:middle;
			
}
.ffb .page, .ffb a.page {
	font-size:70%;
	padding:2px;
	border:solid 1px #339;
	background-color:#97b1e4;
	margin:2px;
	float:left;
	color:#333333;
}
.ffb .box {
	width:18px;
	margin:2px;
	float:left;
	}
.ffb .summary {
	font-size:100%;
	float:right;
	font-weight:bold;
	color:#000099;
	
}

/* Unique IDs */
#ffb8 .row .col1 {
	float:left;
	width:132px; 
}
#ffb8 .row .col2 {
	float:left;
	width:232px; 
}
