/* Floatbox v2.42 */
/* June 3, 2008 */
/* standard control graphics */
/* modified by Schop on June 6th, 2008, because I didn't need all that fancy color stuff, I just want black */

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


#fbFloatbox {
	position: absolute;
	border-style: solid;
	z-index: 99995;
}
div.fbFloatbox_black {
	border-color: #666;  /* outerBorder color */
	background-color: #000;  /* main floatbox color */
}


#fbFloatbox a {
	outline: none;
	border: 0;
	margin: 0;
	padding: 0;
	background: url(images/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_black { background-image: url(images/loading_black.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_black { border-color: #ccc; }


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


#fbLeftNav, #fbRightNav {
	position: absolute;
	z-index: 99997;
}
#fbLeftNav { left: 0; }
#fbRightNav { right: 0; }

#fbUpperPrev, #fbUpperNext {
	position: absolute;
	width: 49px;  /* = dimensions of the upper prev and next graphics */
	height: 23px;
	background-repeat: no-repeat;
	z-index: 99998;
}
/* on-mouse-over upper nav prev graphic */
#fbFloatbox .fbUpperPrev_black { background-image: url(images/prev_upr_black.gif); }

/* on-mouse-over upper nav next graphic */
#fbFloatbox .fbUpperNext_black { background-image: url(images/next_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: hidden;
}

#fbCaption {
	display: block;
}
/* image title color */
#fbFloatbox .fbCaption_black { color: #eee; }


#fbItemNumber {
	display: block;
	font-size: 10px;  /* 'image x of y' text */
}
/* 'image x of y' color */
#fbFloatbox .fbItemNumber_black { color: #aaa; }


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

/*#fbLowerPrev { float: left; }*/
/*#fbLowerPrevA { position: absolute; }*/
#fbLowerPrev, #fbLowerPrevA {
    float: left;
	position: absolute;
	width: 44px;  /* = dimensions of the lower nav 'prev' graphic */
	height: 14px;
	background-repeat: no-repeat;
}
/* lower nav 'prev' graphic */
#fbFloatbox .fbLowerPrevA_black { background-image: url(images/prev_lwr_black.gif); }

#fbLowerNext { float: right; }
#fbLowerNextA { position: absolute; }
#fbLowerNext, #fbLowerNextA {
	width: 44px;  /* = dimensions of the lower nav 'next' graphic */
	height: 14px;
	background-repeat: no-repeat;
}
/* lower nav 'next' graphic */
#fbFloatbox .fbLowerNextA_black { background-image: url(images/next_lwr_black.gif); }

/* lower nav greyed-out 'next' graphic */
/*#fbFloatbox .fbLowerNext_black { background-image: url(images/next_lwr_off_black.gif); }*/


#fbControls { float: right; }

#fbClose {
	float: right;
	width: 46px;  /* = dimensions of the 'close' graphic */
	height: 14px;
	background-repeat: no-repeat;
}
/* 'close' graphic */
#fbFloatbox .fbClose_black { background-image: url(images/close_black.gif); }


#fbPlayPause {
	float: left;
	padding-right: 6px;  /* spacing between controls */
}
#fbPlay, #fbPause { position: absolute; }
#fbPlayPause, #fbPlay, #fbPause {
	width: 46px;  /* = dimensions of the 'play' and 'pause' graphics (they need to be the same size) */
	height: 14px;
	background-repeat: no-repeat;
}
/* 'play' and 'pause' graphics */
#fbFloatbox .fbPlay_black { background-image: url(images/play_black.gif); }
#fbFloatbox .fbPause_black { background-image: url(images/pause_black.gif); }

