/* Floatbox v2.39 */
/* May 22, 2008 */
/* standard control graphics */

#fbOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99994;
}
/* overlay color */
div.fbOverlay_white {background-color: #000; }

#fbFloatbox {
	position: absolute;
	border-style: solid;
	z-index: 99995;
}
div.fbFloatbox_white {
	border-color: #888;
	background-color: #fff;
}

#fbFloatbox a {
	outline: none;
	background: url(../gfx/floatbox/blank.gif);
}
/* ie6 bug fix */
#fbFloatbox a { outline:expression(hideFocus='true'); }

#fbLoader {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
}
/* ie6 bug fix */
#fbLoader { height:expression(document.getElementById('fbFloatbox').style.height); }
/* animated 'loading' graphic */
#fbFloatbox .fbLoader_white { background-image: url(../gfx/floatbox/loading.gif); }

#fbContentPanel {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

#fbItem {
	position: absolute;
	left: 0;
	top: 0;
	border-style: solid;
	visibility: visible;
	z-index: 99996;
}
/* innerBorder color */
#fbFloatbox .fbItem_white { border-color: #000; }

#fbResize {
	position: absolute;
	width: 19px;  /* = dimensions of the resize button */
	height: 19px;
	z-index: 99999;
}
/* resize button graphic */
/*#fbFloatbox .fbResize_white { background-image: url(../gfx/floatbox/resize.gif); }*/

#fbLeftNav, #fbRightNav {
	position: absolute;
	background-image: url(../gfx/floatbox/blank.gif);
	z-index: 99997;
}
#fbLeftNav { left: 0; }
#fbRightNav { right: 0; }

#fbUpperPrev, #fbUpperNext {
	position: absolute;
	width: 63px;  /* = dimensions of the upper prev and next graphics */
	height: 32px;
	background-repeat: no-repeat;
	z-index: 99998;
}
/* on-mouse-over nav graphics */
#fbFloatbox .fbUpperPrev_white { background-image: url(../gfx/floatbox/prev.gif); }
#fbFloatbox .fbUpperNext_white { background-image: url(../gfx/floatbox/next.gif); }

#fbInfoPanel {
	position: absolute;
	text-align: left;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 10px;  /* image title text */
	line-height: 1.25em;
	overflow: hidden;
}

#fbCaption {
	/*display: none;*/
	font-weight: bold;
	font-size: 14px;
}
/* image title color */
#fbFloatbox .fbCaption_white { color: #222; }

#fbItemNumber {
	display: block;
	font-size: 10px;  /* 'image x of y' text */
	padding-top: 3px;
}
/* 'image x of y' color */
#fbFloatbox .fbItemNumber_white { color: #222; }


#fbControlPanel {
	position: absolute;
	font-size: 1px;
}
#fbLowerNav {
	float: left;
	width: 126px;  /* sum of lowerprev and lowernext widths */
	height: 32px;  /* height of 1 sprite panel in lowerprev and lowernext graphics */
	padding-right: 6px;  /* spacing between controls */
}

#fbLowerPrev {
	float: left;
	width: 44px;  /* = dimensions of the lower nav 'prev' graphic */
	height: 14px;
	background-repeat: no-repeat;
}
/* lower nav 'prev' graphic */
#fbFloatbox .fbLowerPrev_white { background-image: url(../gfx/floatbox/prev.gif); }

#fbLowerNext {
	float: right;
	width: 63px;  /* = dimensions of the lower nav 'next' graphic */
	height: 32px;
	background-repeat: no-repeat;
}
/* lower nav 'next' graphic */
#fbFloatbox .fbLowerNext_white { background-image: url(../gfx/floatbox/next.gif); }
#fbControls { float: right; }

#fbClose {
	float: right;
	width: 26px;  /* = dimensions of the 'close' graphic */
	height: 26px;
	background-repeat: no-repeat;
}
/* 'close' graphic */
#fbFloatbox .fbClose_white { background-image: url(../gfx/floatbox/close.gif); }


