/* Input textbox - do not specify a width here, it will be overwritten */
.ffb-input 
{
	float:left;
	color:#c5c5c5; /* must specify along with watermark color */
	height:24px; /* required for webkit browsers (Safari, Chrome) */
	border: 1px solid #c5c5c5;
}
/* 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 
{
	width:22px;
	height:24px;
	background-image:url(../../img/sel_bern.gif);
	background-repeat: no-repeat;
	border: none;
	border-left: none;
	position: absolute; right: 2px; top: 1px;
}
.ffb-arrow.out { /* css sprite technique */
	background-position: 6px 50%;
}
.ffb-arrow.over { /* css sprite technique */
	background-position: -17px 50%;
}
.ffb-arrow.active { /* css sprite technique */
	background-position:-40px 50%;
}
.ffb-ajaxloading /* edit */
{
    position: absolute;
    top: 5px;
    left: 5px !important;
    display: none;
}
.ffb-no-results
{
	padding:2px;
	color:#888;
	font-style:italic;
	border-bottom:1px solid #c5c5c5;
	background-color: #FFF;
}
/* Container for dropdown contents */
.ffb {
	position:absolute; /* this guy's parent div is hard-coded to position:relative */
	overflow:hidden;
	background-color:#fff; /* Give it a background-color, so it's not transparent */
	width: 208px !important;
}
/* Inner div for dropdown */
.ffb .content 
{
    overflow:auto;
	border-left:1px solid #c5c5c5; /* #7B9EBD for Vista */
	border-right:1px solid #c5c5c5;
	border-bottom:1px solid #c5c5c5;
}
.ffb .content .row {
	border-bottom:0px solid #c5c5c5;
	color:#000;
	height:20px;
	clear:both;
	padding: 0 0 0 3px;
	overflow: hidden;
}
.ffb-sel {
	cursor:pointer;
	cursor:hand;
	color:#000 !important;
	background-color:#c8d9e9;
}
.ffb-match {
	font-weight:bold;
	color:#000;
}

/* Paging */
.ffb .paging {
	vertical-align:middle;
	border-bottom:1px solid #c5c5c5;
	display: none;
}
.ffb .page, .ffb a.page {
	font-size:85%;
	padding:2px;
	border:solid 1px #339;
	background-color:#eef;
	margin:2px;
}
.ffb .box {
	width:22px;
	margin:2px;
}
.ffb .summary {
	font-size:85%;
}

#ff_degub 
{
    top: 140px;
    height: 100px;
    width: 300px;
    overflow: auto;
    border: 1px solid red;
    z-index: 10000;
    background-color: #FFF;
    font-size: 9pt;
}

