 
/*  the overlayed element for Gallery
-----------------------------------------------*/ 
.overlay {
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* growing background image */ 
     
    /*  
        width after the growing animation finishes 
        height is automatically calculated 
    */ 
    width:640px;         
     
    /* some padding to layout nested elements nicely  */ 
    padding:35px; 
 
    /* a little styling */     
    font-size:11px; 
  /* background-image:url(/assets/images/website/overlay/transparent.png); */        
    color:#fff;
}
 
/* default close button positioned on upper right corner */ 
.overlay div.close {
background-image: url(/assets/templates/martinu/images/close.png);
position: absolute;
right: 0;
top: 0;
cursor: pointer;
height: 35px;
width: 35px;
}




/* "next image" and "prev image" links */
.next, 
.prev {
	
/* absolute positioning relative to the overlay */
position:absolute;
top: 80%;
cursor: pointer;
display: block;
font-family: Verdana, "Lucida Grande", Lucida, sans-serif;
font-size: 10px;
}

.prev {
background-image: url(/assets/templates/martinu/images/right.png);
position: absolute;
left: 0;
cursor: pointer;
height: 35px;
width: 35px;
}

.next {
background-image: url(/assets/templates/martinu/images/left.png);
position: absolute;
right: 0;
cursor: pointer;
height: 35px;
width: 35px;
}


.next span, 
.prev span {
display: none;
}



/* when there is no next or previous link available this class is added */
.disabled {
visibility: hidden;
}


/* progress indicator animation should be initially hidden */
.progress {
position: absolute;
top: 45%;
left: 50%;
display: none;
}


