/**
 * SqueezeBox - Expandable Lightbox
 *
 * Allows to open various content as modal,
 * centered and animated box.
 *
 * @version		1.1 rc4
 *
 * @license		MIT-style license
 * @author		Harald Kirschner <mail [at] digitarald.de>
 * @copyright	Author
 */

#sbox-overlay {
	position: absolute;
	background-color: #ffffff;
	left: 0px;
	top: 0px;
	z-index: 90;
}

#sbox-window {
	position: absolute;
	background-color: #c6c6b0;
	text-align: left;
	overflow: visible;
	padding: 5px;
	/* invalid values, but looks smoother! */
	z-index: 90;
}

#sbox-btn-close {
	position: absolute;
	width: 21px;
	height: 21px;
	right: -8px;
	top: -8px;
	background: url('http://www.poszukiwaczeprzygod.pl/pp_work/pic/close.png') no-repeat center;
	border: none;
	opacity: 0.7;
}

#sbox-btn-close:hover {
	opacity: 1;
}

.sbox-window-ie6 #sbox-btn-close {
	background-image: url('../pic/close.png');
}

.sbox-loading #sbox-content {
	background-image: url(spinner.gif);
	background-repeat: no-repeat;
	background-position: center;
}

#sbox-content {
	clear: both;
	overflow: auto;
	background-color: #fff;
	height: 100%;
	width: 100%;
}

.sbox-content-image#sbox-content {
	overflow: visible;
}

#sbox-image {
	display: block;
}

.sbox-content-image img {
	display: block;
	width: 100%;
	height: 100%;
}

.sbox-content-iframe#sbox-content {
	overflow: visible;
}

/* Hides flash (Firefox problem) and selects (IE) */
.body-overlayed embed, .body-overlayed object, .body-overlayed select {
	visibility: hidden;
}
#sbox-window embed, #sbox-window object, #sbox-window select {
	visibility: visible;
}

