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

.sbox-window-form {
	position: absolute;
	background: url(dhtml-overlay-form.png) no-repeat center;
	text-align: left;
	overflow: visible;
	padding: 10px;
}
.sbox-window-stuur {
	position: absolute;
	background: url(dhtml-overlay-stuur.png) no-repeat center;
	text-align: left;
	overflow: visible;
	padding: 10px;
}
.sbox-window-afg {
	position: absolute;
	background: url(dhtml-overlay-afg.png) no-repeat center;
	text-align: left;
	overflow: visible;
	padding: 10px;
}
.sbox-window-dhl {
	position: absolute;
	background: url(dhtml-overlay-dhl.png) no-repeat center;
	text-align: left;
	overflow: visible;
	padding: 10px;
}


#sbox-btn-close {
	position: absolute;
	width: 56px;
	height: 55px;
	right: 10px;
	top: 10px;
	border: none;
}



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

#sbox-content {
	clear: both;
	overflow: auto;
	height: 100%;
	width: 100%;
	padding: 40px;
}

.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;
}


