/**
 * 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:fixed; background-color:#000; left:0px; top:0px; width:100%; height:100%; zoom:1; }
#sbox-window {
	position: fixed;
	left:50%;
	top:85px; 
	margin-left:-200px;
	background-color: #fff;
	text-align: left;
	overflow: visible;
	padding: 10px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

#sbox-btn-close {
	position: absolute;
	width: 30px;
	height: 30px;
	right: -15px;
	top: -15px;
	background: url(../images/squeezebox/closebox.png) no-repeat center;
	border: none;
}

.sbox-loading #sbox-content { /* background:url('spinner.gif') center center no-repeat; */ }

#sbox-content { clear:both; overflow:auto; background-color:#fff; height:100%; width:100%; }

#sbox-image { display:block; }
.sbox-content-image#sbox-content { overflow:visible; }
.sbox-content-image img { display:block; width:100%; height:100%; }
.sbox-content-iframe#sbox-content { overflow:visible; }

#sbox-window embed, #sbox-window object, #sbox-window select { /*visibility: visible;*/ }


