/**
 * Stripped-down CSS for Shadowbox. Basically hides all navigation and text elements.
 * 
 * Also, for when we use Shadowbox inside iframes, where the document height is often
 * thousands of pixels, and Shadowbox believes in vertically centering its box, we hide
 * the actual injected content (#sb-wrapper), so that we can do an [onFinish, position
 * content & show it] action to make sure the shadowbox pops up where we want it.
 * 
 * Be aware that this means you won't see ANY content unless you actually have an
 * onFinish handler like that set up!
 * 
 * Example:
 * Shadowbox.init({ onFinish:function(el) {
 *		$('#sb-wrapper').css('top', '100px').show(); }
 * });
 * 
 * Tested with Shadowbox v3.0b
 */
#sb-container,#sb-wrapper {
	text-align: left;
}

#sb-container,#sb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}

#sb-container {
	height: 100%;
	display: none;
	visibility: hidden;
	z-index: 999;
}

body>#sb-container {
	position: fixed;
}

#sb-overlay {
	height: expression(document.documentElement.clientHeight + 'px');
}

#sb-container>#sb-overlay {
	height: 100%;
}

#sb-wrapper {
	display: none;
	top: 100px;
	position: relative;
}

#sb-wrapper img {
	border: none;
}

#sb-body {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#sb-body-inner {
	position: relative;
	height: 100%;
}

#sb-content.html {
	height: 100%;
	overflow: auto;
}

#sb-loading {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 10px;
}

#sb-body,#sb-loading {
}

#sb-title,#sb-info {
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#sb-title-inner,#sb-info-inner,#sb-title,#sb-title-inner,#sb-title-inner,#sb-info,#sb-info-inner,#sb-info-inner,#sb-nav,#sb-nav a,#sb-nav-close,#sb-nav-next,#sb-nav-previous,#sb-nav-play,#sb-nav-pause,#sb-counter,#sb-counter a,#sb-counter a.sb-counter-current,div.sb-message,div.sb-message a:link,div.sb-message a:visited {
	display: none;
}

