.flexbox {
	display: inline-block;
}

/* Input textbox - do not specify a width here, it will be overwritten */
.ffb-input 
{
	float:left;
	height:16px; /* required for webkit browsers (Safari, Chrome) */
}
/* 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:20px;
	height:20px;
	background-image:url(flexbox/sel_search.png);
}
.ffb-arrow .blank
{
	display: block;
	margin:2px;
	height: auto;
	width: auto;
	background-color: white;
}
.ffb-arrow .blank img {
	width: 16px;
	height: 16px;
}
.ffb-arrow.out { /* css sprite technique */
	background-position:0;
}
.ffb-arrow.over { /* css sprite technique */
	background-position:-20px 0;
}
.ffb-arrow.active { /* css sprite technique */
	background-position:-20px 0;
}
.ffb-no-results 
{
	padding:2px;
	color:#888;
	font-style:italic;
	border-bottom:1px solid #828790;
}
/* Container for dropdown contents */
.ffb {
	position:absolute; /* this guy's parent div is hard-coded to position:relative */
	overflow:hidden;
	border-left:1px solid #828790; /* #7B9EBD for Vista */
	border-right:1px solid #828790;
	border-top: 1px solid #828790;
	background-color:#fff; /* Give it a background-color, so it's not transparent */
}
/* Inner div for dropdown */
.ffb .content {
	border-bottom:1px solid #828790;
	overflow:auto;
}
.ffb .content .row {
	color:#000;
	clear:both;
}
.ffb-sel {
	cursor:pointer;
	cursor:hand;
	color:#fff !important;
	background-color:#3a3;
}
.ffb-match {
	font-weight:bold;
	color:#000;
}

/* Paging */
.ffb .paging {
	vertical-align:middle;
	border-bottom:1px solid #828790;
	background-color: #e4e6e7;
}
.ffb .page, .ffb a.page {
	font-size:85%;
	/* 
	border:solid 1px #339;
	background-color:#eef;
	*/
	padding:4px; 
	margin:4px;
	text-decoration: none;
}

.ffb .page img, .ffb a.page img
{
	margin-top: 6px;
}

.ffb span.page {
	display: inline;
}

.ffb .box {
	width:22px;
	margin:2px;
}
.ffb .summary {
	font-size:85%;
}