/* Parent container for the entire gallery */
.dg-image-gallery {
	background-color: #D8D9D3;
	position: relative;
	width: 730px;
	height: 730px;
	border: 1px solid #AAA;
}

/* Enlarged image */
.dg-image-gallery-enlarged-image {
	position: absolute;
	left: 0px;
	top: 10px;
	background-position: center center;
  width: 100%;
  height: 525px;
}

/* Caption below large image */
.dg-image-gallery-caption {
	position: absolute;
	bottom: 150px;
  width: 100%;
	height: 40px;
	text-align: center;
	color: #333333;
}

/* Container for all thumbnails */
.dg-image-gallery-thumbnail-container {
	position: absolute;
	bottom: 0px;
	width: 100%;
	left: 20px;
	padding-bottom: 8px;
	width: 630px;
}

/* Thumbnails inside thumbnail strip */
.dg-image-gallery-thumbnail {
	width: 120px;
	height: 120px;
	padding-right: 2px;
	padding-left: 2px;
}

/* Highlight element */
.dg-image-gallery-thumbnail-highlight {
	border: 3px solid #CCC;
	padding: 2px;
}

/* Previous and next buttons */
.dg-image-gallery-previous, .dg-image-gallery-next {
	background-position: center center;
	cursor: pointer;
	width: 20px;
	height: 120px;
	bottom: 10px;
	position: absolute;
	cursor: pointer;
}
.dg-image-gallery-previous {
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/left-white.png');
	left: 1px;
}
.dg-image-gallery-previous-over {
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/left-white-over.png');
}
.dg-image-gallery-next {
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/right-white.png');
	right: 1px;
}
.dg-image-gallery-next-over {
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/right-white-over.png');
}

/* Autoplay buttons */
.dg-image-gallery-next-autoplay-container {
	position: absolute;
	right: 0px;
	top: 10px;
	z-index: 20000;
	width: 60px;
}
.dg-image-gallery-next-autoplay-start, .dg-image-gallery-next-autoplay-stop {
	position: absolute;
	top: 0px;
	color: #CCC;
	padding: 5px;
	height: 20px;
	width: 30px;
	text-align: right;
	background-repeat: no-repeat;
	cursor: pointer;
}
.dg-image-gallery-next-autoplay-start {
	left: 0px;
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/play-white.png');
}
.dg-image-gallery-next-autoplay-stop {
	left: 30px;
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/pause-white.png');
}
.dg-image-gallery-next-autoplay-start-off {
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/play-white-off.png');
	cursor: default;
}
.dg-image-gallery-next-autoplay-stop-off {
	background-image: url('http://babel.gwi.uni-muenchen.de/media/gallery/images/pause-white-off.png');
	cursor: default;
}