<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">










































































.image-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: rgba(0,0,0,0.9);
}
.image-overlay__img{
    max-height: 100%;
    max-width: 100%;
}
.image-overlay__imgcont{
    margin: 0 auto;
    height: 80vh;

    display: flex;
    justify-content: center;
    align-items: center;
}
.image-overlay__file-list{
    margin: 0 auto;
    width:100%;
    height: 20vh;
}


.image-gallery__tile-list {
    display: flex;
    flex-wrap: wrap;
}
.image-gallery__tile{
    margin: 15px 5px;
	box-shadow: rgb(103, 103, 103) 0px 0px 3px;
    background-color: rgb(242, 242, 242);
    cursor: pointer;
}

.image-list__cont{
    display:flex;
    flex-direction:row;
    flex-wrap: nowrap;
    padding-top: 3vh;
    margin-bottom: 1vh;
    
    overflow-x: auto;
}
.image-list__thumb{
    object-fit: cover;
    min-width: 15vh;
    height:15vh;
    margin-right: 1vh;
    cursor: pointer;
}
.image-list__thumb:hover{
    position:relative;
    bottom: 1.5vh;
    transform: scale(1.1);
    box-shadow: 0 0 3vh black;
}


.gallery-tile__file{
    width: 100%;
    height: 100%;
}

.image-file-tile__thumb{
    height:100%;
    width:100%;
}
.image-file-tile{
    overflow: hidden;
}

.gallery-file-tile__thumb-cont{
    display:flex;
    flex-wrap: wrap;
    height: 100%;
    width:100%;
    position:relative;
}
.gallery-file-tile__thumb{
    height: calc(50% - 2px);
    width: calc(50% - 2px);
    object-fit: cover;
    border: 1px solid white;
}
.gallery-file-tile{
    overflow: hidden;
}
.gallery-file-tile__title{
	position: absolute;
	bottom: 0px;
    padding: 0 .5em;
    width: calc(100% - 1em);
    
	background-color: rgba(0,0,0,0.5);
	color: white;
	font-style: italic;
    line-height: 1.5em;
    font-size: 1.2em;
}

</pre></body></html>