/* Definitionen für das Popup der Bilder-Vollansicht */

#js-popup-background {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: white;
	z-index: 9;
	opacity: 0.7;
	filter:alpha(opacity=70);
}

#js-popup-box {
	display: none;
	position: absolute;
	padding: 3px;
	background: #ffffff;
	border: 2px ridge #8080ff;
	z-index: 10;
	text-align: center;
	font-size: 80%;
}

#js-popup-image {
	display: block;
	margin: 0 auto;
	padding: 0;
}
#js-popup-image.change {
	cursor: pointer;
}

#js-popup-wait {
	display: none;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: url(./images/throbber.gif) center center no-repeat;
}

#js-popup-resize {
	position: absolute;
	top: 2px;
	left: 2px;
	display: none;
	height: 48px;
	width: 53px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

#js-popup-resize.small {
	background: url(./images/fullsize.gif);
}

#js-popup-resize.full {
	background: url(./images/resize.gif);
}

#js-popup-close {
	position: absolute;
	top: 2px;
	right: 2px;
	display: block;
	width: 24px;
	height: 24px;
	margin: 0;
	padding: 0;
	background: url(./images/close.png);
	cursor: pointer;
}

#js-popup-next,
#js-popup-prev {
	position: absolute;
	cursor: pointer;
	display: none;
	height: 100px;
	width: 73px;
	padding: 0;
	margin: 0;
}

#js-popup-next {
	right: 0;
	background: url(./images/next.png) right top no-repeat;
}

#js-popup-prev {
	left: 0;
	background: url(./images/prev.png) left top no-repeat;
}
