/**
 * 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: #333;
	left: 0px;
	top: 0px;
}

#sbox-window {
	position: absolute;
	background-color: #f4f4f4;
	text-align: left;
	overflow: visible;
	padding: 10px;
	/* invalid values, but looks smoother! */
}

#sbox-btn-close {
	position: absolute;
	width: 19px;
	height: 18px;
	right: 12px;
	top: 12px;
	background-image: url(../images/mootools/close.gif);
	background-position: 0px -21px;
	border: none;
}

#sbox-btn-close:hover {
	background-position: 0px 0px;
}

.sbox-window-ie6 #sbox-btn-close {
	background-image: url(../images/mootools/close.gif);
}

.sbox-loading #sbox-content {
	background-image: url(../images/mootools/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 scrollbars */
.body-overlayed {
	overflow: hidden;
}
/* 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;
}

/* Shadows */
.sbox-bg {
	position: absolute;
	width: 8px;
	height: 8px;
}

.sbox-bg-n {
	left: 0;
	top: -8px;
	width: 100%;
	background: url(media/images/mootools/bg_horiz.png) repeat-x;
}
.sbox-bg-ne {
	right: -8px;
	top: -8px;
	background: url(media/images/mootools/bg_corner.png) no-repeat;
}
.sbox-bg-e {
	right: -8px;
	top: 0;
	height: 100%;
	background: url(media/images/mootools/bg_vert.png) repeat-y;
}
.sbox-bg-se {
	right: -8px;
	bottom: -8px;
	background: url(media/images/mootools/bg_corner.png) no-repeat;
}
.sbox-bg-s {
	left: 0;
	bottom: -8px;
	width: 100%;
	background: url(media/images/mootools/bg_horiz.png) repeat-x;
}
.sbox-bg-sw {
	left: -8px;
	bottom: -8px;
	background: url(media/images/mootools/bg_corner.png) no-repeat;
}
.sbox-bg-w {
	left: -8px;
	top: 0;
	height: 100%;
	background: url(media/images/mootools/bg_vert.png) repeat-y;
}
.sbox-bg-nw {
	left: -8px;
	top: -8px;
	background: url(media/images/mootools/bg_corner.png) no-repeat;
}