/* Parent container for the entire gallery */
.dg-image-gallery{
	position:relative;
	width:880px; margin-top:30px;
	height:600px; float:left;
}
/* Enlarged image */
.dg-image-gallery-enlarged-image {
	position : absolute;
	left: 0px;
	top:0px;
	background-position : center center;
	width : 100%;
	height: 500px;

}
/* Caption below large image */
.dg-image-gallery-caption {
	position:absolute;
	bottom:600px; left:-20px;
	height:35px;
	width:100%;
	text-align:center; font-family:Arial, Helvetica, sans-serif; font-size:24px;  color:#7fa01b; font-weight:700;
	font-family:"proxima-nova","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}
/* Container for all thumbnails */
.dg-image-gallery-thumbnail-container {
	position : absolute;
	bottom : 0px;
	width : 100%;
	left: 30px;
	width:820px;
	/* height:???; - is set by the script based on property thumb height */
}
/* Thumbnails inside thumbnail strip */
.dg-image-gallery-thumbnail{
	width: 90px;
	height :75px; padding:6px;
}
/* Previous and next buttons */
.dg-image-gallery-previous, .dg-image-gallery-next {
	background-position : center center;
	cursor: pointer;
	width:15px;
	height:29px;
	bottom:35px;
	position: absolute;
	cursor: pointer;
}
.dg-image-gallery-previous{
	background-image:url('../images/c_left.jpg');
	left : 0px;
}
.dg-image-gallery-next{
	background-image:url('../images/c_right.jpg');
	right : 0px;
}
/*.dg-image-gallery-next-over{
	background-image:url('../images/c_right.png');
}
.dg-image-gallery-previous-over{
	background-image:url('../images/c_left.png');
*/
.dg-image-gallery-thumbnail-highlight{border:2px solid #6a8c01;}
/* Autoplay buttons */
.dg-image-gallery-next-autoplay-container{
	position:absolute;
	right:0px;
	top:450px;
	z-index:20000;
	width:60px;
}
.dg-image-gallery-next-autoplay-start, .dg-image-gallery-next-autoplay-stop{
	position:absolute;
	top:0px;
	color:#CCC;
	height:18px;
	width:31px;
	text-align:right;
	background-repeat:no-repeat;
	cursor:pointer;
}
.dg-image-gallery-next-autoplay-start{
	left:0px;
	background-image:url('../images/play.png');
}
.dg-image-gallery-next-autoplay-stop{
	left:30px;
	background-image:url('../images/pause.png');
}
.dg-image-gallery-next-autoplay-start-off{
	background-image:url('../images/play-off.png');
	cursor: default;

}
.dg-image-gallery-next-autoplay-stop-off{
	background-image:url('../images/pause-off.png');
	cursor: default;

}