div#tiny-lightbox {
	position: absolute;
	z-index: 100000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
div#tiny-lightbox a {
	outline: none;
}
div#tiny-lightbox-overlay {
	position: absolute;
	z-index: 0;
    	left: 0;
    	top: 0;
	width: 100%;
	height: 100%;
	background: #000000;
	display: none;
	padding-bottom: 40px;
}
div#tiny-lightbox-box {
	position: absolute;
	z-index: 1;
	width: 200px;
	height: 200px;
         top:40px;
	background-color: #DAC699;
	border: 10px solid #DAC699;
	visibility: hidden;
}
div#tiny-lightbox.tiny-lightbox-loading div#tiny-lightbox-box {
	background: url(../images/loading.gif) no-repeat center #DAC699;
}

div#tiny-lightbox.tiny-lightbox-animating div#tiny-lightbox-box a,
div#tiny-lightbox.tiny-lightbox-loading div#tiny-lightbox-box a {
	display: none;
}
div#tiny-lightbox-image {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #DAC699;
	display: none;
}
div#tiny-lightbox-bar {
	position: absolute;
	display: none;
	background: #DAC699;
	padding: 0 10px 10px 10px;
	font-family: Arial, Verdana;
	font-size: 11px;
    	text-align: left;
	color: #000000;
}

a#tiny-lightbox-close,
a#tiny-lightbox-slideshow {
    	float: right;
	width: 16px;
	height: 16px;
}
a#tiny-lightbox-close {
	background: url(../images/close.gif) no-repeat;
}
a#tiny-lightbox-slideshow {
	background: url(../images/play-pause.gif) no-repeat;
}
div.tiny-lightbox-slideshow-running a#tiny-lightbox-slideshow {
	background-position: -16px 0;
}

/* prev and next buttons */

a#tiny-lightbox-prev, a#tiny-lightbox-next {
	position: absolute;
	z-index: 1000;
	width: 30%;
	height: 100%;
	top: 0;
}
a#tiny-lightbox-prev {
	left: 0;
}
a#tiny-lightbox-next {
	right: 0;
}

a#tiny-lightbox-prev span,
a#tiny-lightbox-next span {
	position: absolute;
	width: 80px;
	height: 100%;
	top: 0;
	visibility: hidden;
}

a#tiny-lightbox-prev span {
	left: 0;
	background-image: url(../images/prev.gif);
         background-repeat: no-repeat;
         background-position: left top;
	/* Nur bei Einsatz von PNGs
         filter:progid:DXImageTransform.Microsoft#AlphaImageLoader(src='../images/prev.png', sizingMethod='crop');
	_background: none;
         */
}
a#tiny-lightbox-next span {
	right: 0;
	background-image: url(../images/next.gif);
         background-repeat: no-repeat;
         background-position: right top;
         /* Nur bei Einsatz von PNGs
         filter:progid:DXImageTransform.Microsoft#AlphaImageLoader(src='../images/next.png', sizingMethod='crop');
	_background: none;
         */
}

a#tiny-lightbox-prev span.tiny-lightbox-hover,
a#tiny-lightbox-next span.tiny-lightbox-hover {
	visibility: visible;
}

/*
	IE6 background image flicker fix
*/
html {
  	filter: expression(document.execCommand("BackgroundImageCache", false, true));
}