/**
 * ReMooz - Zoomer
 * Inspired by so many boxes and zooms
 *
 * @version		1.0
 * @modified	Mar 7, 2008
 *
 * @license		MIT-style license
 * @author		Harald Kirschner <mail [at] digitarald.de>, Alvis Tang <alvis.sty [at] gmail.com>
 * @copyright	Author
 */

img.remooz-box-zoom-in {
	cursor: -moz-zoom-in;
}

img.remooz-box-zoom-out {
	cursor: -moz-zoom-out;
}

.remooz-box {
	background: #fff no-repeat center;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 996;
}

.remooz-loading {
	background-image: url(/static/img/remooz/spinner.gif);
}

.remooz-body {
	height: 100%;
	width: 100%;
}

.remooz-bg-border {
	width: 100%;
	height: 100%;
	border: 10px solid #000;
	left: -10px;
	top: -10px;
	position: absolute;
}

.remooz-box-dragging {
	cursor: move;
}

.remooz-btn-close {
	background: url(/static/img/remooz/closebox.png) no-repeat center;
	cursor: pointer;
	position: absolute;
	right: -15px;
	top: -15px;
	height: 30px;
	width: 30px;
	visibility: hidden;
	z-index: 9999;
}

.remooz-btn-full {
	background: url(/static/img/remooz/full.png) no-repeat center;
	cursor: pointer;
	position: absolute;
	right: -15px;
	top: 15px;
	height: 30px;
	width: 30px;
	visibility: hidden;
	z-index: 9999;
}

.remooz-engine-ie6 .remooz-btn-close {
	background-image: url(/static/img/remooz/closebox.gif);
}

.remooz-caption {
	position: absolute;
	left: 0;
	bottom: 1.5em;
	text-align: left;
}

.remooz-caption-bg {
	background-color: #000;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 998;
}

.remooz-caption-content {
	color: #fff;
	font: 11px / 1.5 Verdana, Geneva, Arial, Helvetica, sans-serif;
	padding: 5px 15px;
	position: relative;
	z-index: 999;
}

.remooz-caption-content h6 {
	font-size: 1.2em;
	font-weight: bold;
}

.remooz-caption-content p {
	color: #eee;
}

.remooz-type-image img {
	display: block;
	border: 0;
	height: 100%;
	width: 100%;
}

.remooz-bg {
	position: absolute;
	height: 40px;
	width: 33px;
}

.remooz-bg-n {
	background: url(/static/img/remooz/remo_bg_n.png) repeat-x;
	left: 0;
	top: -40px;
	width: 100%;
}

.remooz-bg-ne {
	background: url(/static/img/remooz/remo_bg_ne.png) no-repeat;
	right: -33px;
	top: -40px;
}

.remooz-bg-e {
	background: url(/static/img/remooz/remo_bg_e.png) repeat-y;
	right: -33px;
	top: 0;
	height: 100%;
}

.remooz-bg-se {
	background: url(/static/img/remooz/remo_bg_se.png) no-repeat;
	right: -33px;
	bottom: -40px;
}

.remooz-bg-s {
	background: url(/static/img/remooz/remo_bg_s.png) repeat-x;
	left: 0;
	bottom: -40px;
	width: 100%;
}

.remooz-bg-sw {
	background: url(/static/img/remooz/remo_bg_sw.png) no-repeat;
	left: -33px;
	bottom: -40px;
}

.remooz-bg-w {
	background: url(/static/img/remooz/remo_bg_w.png) repeat-y;
	left: -33px;
	top: 0;
	height: 100%;
}

.remooz-bg-nw {
	background: url(/static/img/remooz/remo_bg_nw.png) no-repeat;
	left: -33px;
	top: -40px;
}