/* Floatbox v2.30 */
/* Apr. 15, 2008 */
/* standard control graphics */

#fbOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99996;
}
/* overlay color */
.fbOverlay_black { background-color: #000000; }

#fbFloatbox {
	position: absolute;
	border-style: solid;
	z-index: 99997;
}
.fbFloatbox_black {
	border-color: #000000;  /* outerBorder color */
	background-color: #000000;  /* main floatbox color */
}

#fbFloatbox a { outline: none; }
/* 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' image */
.fbLoader_black { background-image: url(/assets/gallery/loading_white_small.gif); }

#fbContentPanel {
	position: relative;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

#fbItem {
	position: absolute;
	left: 0;
	top: 0;
	border-style: solid;
	z-index: 99998;
}
/* innerBorder color */
.fbItem_black { border-color: #FFFFFF; background-color:#E4E4E4}

#fbLeftNav, #fbRightNav {
	position: relative;
	background-image: url(/assets/gallery/blank.gif);
}
#fbLeftNav {
	left: 0;
	float: left;
	z-index: 99999;
}
#fbRightNav {
	right: 0;
	float: right;
	z-index: 99999;
}

#fbUpperPrev, #fbUpperNext {
	position: relative;
	top: 20%;  /* vertical position of the upper prev and next images */
	width: 54px;  /* = dimensions of the upper prev and next images */
	height: 26px;
	float: left;
	background-repeat: no-repeat;
}
#fbUpperPrev { float: left; }
#fbUpperNext { float: right; }
/* on-mouse-over nav images */
.fbUpperPrev_black { background-image: url(/assets/gallery/prev_upr_black.gif); }

#fbInfoPanel {
	position: absolute;
	text-align: left;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 12px;  /* image title text */
	line-height: 1.25em;
	overflow: auto;
}

#fbCaption {
	display: block;
	font-size: 11px;
}
/* image title color */
.fbCaption_black { color: #FFFFFF; }

#fbItemNumber {
	display: block;
	font-size: 10px;  /* 'image x of y' text */
}
/* 'image x of y' color */
.fbItemNumber_black { color: #FFFFFF; }

#fbControlPanel {
	position: absolute;
	font-size: 1px;
}
#fbLowerNav {
	float: left;
	width: 60px;  /* sum of lowerprev and lowernext widths */
	height: 14px;  /* height of 1 sprite panel in lowerprev and lowernext images */
	padding-right: 6px;  /* spacing between controls */
}

#fbLowerPrev {
	float: left;
	width: 24px;  /* = dimensions of the lower nav 'prev' image */
	height: 24px;
	background-repeat: no-repeat;
}
/* lower nav 'prev' image */
.fbLowerPrev_black { background-image: url(/assets/gallery/prev_lwr_black.png); }

#fbLowerNext {
	float: right;
	width: 24px;  /* = dimensions of the lower nav 'next' image */
	height: 24px;
	background-repeat: no-repeat;
}
/* lower nav 'next' image */
.fbLowerNext_black { background-image: url(/assets/gallery/next_lwr_black.png); }


#fbControls { float: right; }

#fbClose {
	float: right;
	width: 24px;  /* = dimensions of the 'close' image */
	height: 24px;
	background-repeat: no-repeat;
}
/* 'close' image */
.fbClose_black { background-image: url(/assets/gallery/close_black.png); }


#fbPlayPause {
	padding-right: 6px;  /* spacing between controls */
}
#fbPlayPause, #fbPlay, #fbPause {
	float: left;
	width: 46px;  /* = dimensions of the 'play' and 'pause' images (they need to be the same size) */
	height: 14px;
	background-repeat: no-repeat;
}
/* 'play' and 'pause' images */
.fbPlay_black { background-image: url(/assets/gallery/play_black.gif); }

