.galleryImageThumbViewClass
{
	width: 64px;
	height: 64px;
	margin: 3px;
	border: 1px solid black;
}

/* reverse margin and border values */
.galleryImageThumbViewClass:hover 
{
	margin: 1px;
	border: 3px solid black;
}

#galleryPopupId 
{
	position: absolute;
	z-index: 200;
	background-color: black;
}  

#galleryPopupInnerId
{
	display: block;
    width: 100%;
    height: 100%;
}

#galleryPopupTitleId
{
    width: 100%;
    height: 30px;
	color: white;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	margin: 5px;
	font-size: 20px;
	font-weight: bold;
}

#galleryPopupImgageId
{ 
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    height: -webkit-calc(100% - 100px);
    height: calc(100% - 100px);
    object-fit: contain;
	margin-left: 50px;
}

#galleryPopupFooterId
{
	float: bottom;
	width: 100%;
	height: 40px;
}

.galleryPopupTextClass
{
	color: white;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 5px;
	text-align: center;
}

.galleryPopupColumnClass 
{
    float:left;
}


/* 
 * Image buttons (previous & next arrows and close)
 */
.galleryButtonClass
{ 
	position: absolute;
	opacity: 0.8;
	filter: alpha(opacity=80); /* For IE8 and earlier */
	z-index: 201;
}

.nonClickable
{
	pointer-events: none;
}
