/**
 * 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:url(../__layout/slimbox/bg.png) repeat left top;
	left: 0px;
	top: 0px;
	zoom: 1;
}

#sbox-window {
	position: absolute;
	background-color: #dedced;
	text-align: left;
	overflow: visible;
	padding:10px 15px 33px 10px;
	/* CSS level 3 */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}

#sbox-btn-close {
	position: absolute;
	width: 25px;
	height: 25px;
	right: 9px;
	bottom: 4px;
	background: url(../__layout/slimbox/close.png) no-repeat center;
	border: none;
}

.sbox-window-ie6 #sbox-btn-close {
	background-image: url(../__layout/slimbox/close.png);
}

.sbox-loading #sbox-content {
	background-image: url(../__layout/slimbox/loader.gif);
	background-repeat: no-repeat;
	background-position: center;
}

#sbox-content {
	clear: both;
	overflow: auto;
	background-color: #dedced;
	height: 100%;
	width: 100%;
}
#sbox-content .event{
	border:none;
}
.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: 33px;
	height: 40px;
}