.glidecontentwrapper{
position: relative; /* Do not change this value */
overflow: hidden;
}

.glidecontent{ /*style for each glide content DIV within wrapper.*/
position: absolute; /* Do not change this value */
background: transparent;
padding: 0px;
visibility: hidden;
width: 603px;
}
/*
 Total glidecontent width: 330px+10px+10px=350px
	Or width of wrapper div itself (not counting wrapper border/padding)
*/

.glidecontenttoggler{ /*style for DIV used to contain toggler links. */
width: 612px;
margin-top: 6px;
text-align: center; /*How to align pagination links: "left", "center", or "right"
background: white; /*always declare an explicit background color for fade effect to properly render in IE*/
}
/*
 Total contenttoggler width: 350px+5px+5px=360px
	Or total width of wrapper div (counting wrapper border/padding)
*/

.glidecontenttoggler a{ /*style for every navigational link within toggler */
display: inline-block;
border: 1px inset #7c6240;
border-radius: 5px;
color: #7c6240;
padding: 1px 3px;
margin-right: 3px;
font-weight: bold;
text-decoration: none;
font: normal 13px Arial;

}

.glidecontenttoggler a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
background: #e4effa;
}

.glidecontenttoggler a:hover{
background: #eda;
}

.glidecontenttoggler a.toc{ /*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
text-decoration: none;
}

.glidecontenttoggler a.prev, .glidecontenttoggler a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
text-decoration: none;

}

.glidecontenttoggler a.prev:hover, .glidecontenttoggler a.next:hover{
background: #eda;
text-decoration: none;
}
/* 
Additional layout items added July 2023, as part of the page streamlining work 
*/
.glidecontainer {
	position				: absolute; 
	overflow				: hidden;
	width					: 790px; 
	height					: 440px;
}
.image_view {
	width					: 790px; 
	height					: 440px;
	position				: absolute;
	top						: 66px;
	left					: 54px;
	z-index					: 0;
}
.image_view.thumb {
	display					: flex;
	flex-direction			: row|column;
	flex-wrap				: wrap;
	justify-content			: space-between;
	z-index					: 0;
	overflow				: hidden;  
}
.sprite_mgr {
	--x 					: 2400px;	/* Sprite file width  */
	--y 					: 1350px;	/* Sprite file height */
	
	--w						: 800px;	/* Single frame width */
	--h 					: 450px;	/* Single frame height */

    --n						: 1; 		/* Frame scaling factor */
    --i						: 3; 		/* Frame offset horiz */
    --j						: 1; 		/* Frame offset vert */

    display					: inline-block;
    height					: calc( var(--h)/var(--n) );
    width					: calc( var(--w)/var(--n) );
    background-position		: calc( var(--i)/var(--n) * var(--w)) calc(var(--j)/var(--n) * var(--h));
    background-size			: calc( var(--x)/var(--n) ) calc( var(--y)/var(--n));
}	  
.sprite_mgr.thumb {
	border 					: 1px solid white;
}	
	  
