.SliderContainer {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-color: #1f1f1f;
        overflow: hidden;
}
.SliderContainer .Slide {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: none;
        z-index: 1;
}
.SliderContainer .Current {
        display: block;
        z-index: 2;
}
