/* Parent container for the entire gallery */


.dg-image-gallery
	{
	
	   position:relative;
	
     	   width:540px;
	/*resize width of projects_gallery*/
	   height:508px;
  /*resize height of projects_gallery*/	
	   border:3px solid #AAA;
	
}



/* Enlarged image */


.dg-image-gallery-enlarged-image 
	{
	
	   position : absolute;
	
	   left: 0px;
	
	   top:0px;
	
	   background-position : center center;
	
	   width : 100%;
	
	   height: 365px;

}
 /*resize the height of the large image*/


/* Caption below large image */


.dg-image-gallery-caption 
	{
	
	   position:absolute;
	
	   bottom:310px;
	/*raise or lower gallery caption - higer number raises up and lower number lowers down*/
	   height:40px;
	width:100%;
	
	   text-align:center;
	
	   color: #CCC;
}



/* Container for all thumbnails */


.dg-image-gallery-thumbnail-container 
	{
	
	   position : absolute;
	
	   bottom : 0px;
	
	   width : 100%;
	
	   left: 10px;
	
	   padding-bottom:10px;
	
	   width:510px; /*resize width of projects_gallery thumbnails*/
	   /* height:???; - is set by the script based on property thumb height */

	}


/* 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;
  /*position image for right and left button image next to thumnails*/
	   bottom:10px;
	
	   position: absolute;
	
	   cursor: pointer;
}


.dg-image-gallery-previous
	{
background-image:url('../images/left.png');
	left : 0px;
}


.dg-image-gallery-previous-over
	{
background-image:url('../images/left-over.png');
}


.dg-image-gallery-next
	{
background-image:url('../images/right.png');
	right : 0px;
}



.dg-image-gallery-next-over
	{
background-image:url('../images/right-over.png');
}




/** Autoplay buttons*/


.dg-image-gallery-next-autoplay-container

	{
	
	   position:absolute;
	
	   right:0px;
	top:368px;
 /*position play and pause images- lower number raises images and higher number lowers images*/	
	   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('../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;

}