.SlideShow {
	position: fixed;
    z-index: 1050;
    overflow: hidden;
	top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	display: flex;
	display: none;
	width: 100%;
	height: 100%;
	background: black;
    justify-content: center;
    align-items: center;
}
.slides {
	position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.slides, .ssCover {
	position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide {
	position: relative;
    height: 100%;
	width:100%;
}
.slide-content {
	margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
	vertical-align: middle;
}
#ssTitle {
    color: white;
    font-size: 20px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
#ssHeadline {
    color: white;
    font-size: 25px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
.ssLeft {
    position: absolute;
    left: 0;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 100;
    text-align: left;

}
.ssRight {
    position: absolute;
    right: 0;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 100;
    text-align: right;

}
.ssLeft:hover .ssControl, .ssRight:hover .ssControl{
    display: block;
}

.ssControl {
    display: none;
}
.ssLeft >i, .ssRight >i{
    color: rgba(128,128,128,0.5);
    font-size: 100px;
    top: 50%;
    position: relative;
}
.ssTitleCont {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 100;
    display: none;
}
.ssCover:hover .ssTitleCont {
    display: block;
}
#ImageFS {
    transition-timing-function: ease-in-out;
  transition-timing-function: cubic-bezier(0.6, 0, 0.8, 1);
}
.ss-title-toggle {
    position: absolute;
    height: 20%;
    width: 100%;
    bottom: 0;
    z-index: 100;
}
.selected {
    border: 1px solid lightslategray;
}
.gallery-loading {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}