/* Input textbox - do not specify a width here, it will be overwritten */
.ffb-input {
	float:left;
    	width:470px !important;
	color:#000; /* must specify along with watermark color */
	border-right: 0;
    
}
/* Color of watermark, if present */
.ffb-input.watermark { /* added and removed dynamically */
	color:#888; /* must specify along with input color */
}

.article_link_add div { zoom:1 !important; }

/* 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 
{
	font-size: 12px;	
	padding: 2px;
	color:#888;
}
/* Container for dropdown contents */
.ffb {
    zoom:1;
    height:126px !important;
    float:none !important;
	font-family: arial;
    left:0 !important;
	position:absolute; /* this guy's parent div is hard-coded to position:relative */
	overflow:hidden;
	border-left:1px solid #000;
	border-right:1px solid #000;
	border-bottom:1px solid #000;
	background-color:#fff; /* Give it a background-color, so it's not transparent */
}
/* Inner div for dropdown */
.ffb .content {
    float:none !important;
    height:126px !important;
	overflow:auto;
}
.ffb .content .row {
	color:#000;
	padding: 3px 5px;
	clear:both;
	font-size: 12px;
}
.ffb-sel {
	cursor:pointer;
	cursor:hand;
	background-color:#0a246a;
	color: #fff !important;
}
.ffb-match {
	background-color:#ff9; /* light yellow */
	text-decoration:underline;
	color:#000;
}

/* Paging */
.ffb .paging {
	margin:2px;
	vertical-align:middle;
}
.ffb .page, .ffb a.page {
	font-size:85%;
	padding:2px;
	border:solid 1px #339;
	background-color:#eef;
	margin:2px;
	float:left;
}
.ffb .box {
	width:18px;
	margin:2px;
	float:left;
}
.ffb .summary {
	font-size:85%;
	float:right;
}


}