.UIImageListAndDetail {
        display: flex;
        flex-direction: row;
        gap: 15px;
        width: 100%;
        padding: 10px;
        margin: 25px 0;
}
.UIImageListAndDetail  .left {
        width: 65%;
}
.UIImageListAndDetail .right {
        width: 35%;
        overflow: auto;
        max-height: 400px;
}
.UIImageListAndDetail .item:first-child {
        padding-top: 0;
}
.UIImageListAndDetail .list {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
}
.UIImageListAndDetail .mySlides {
        display: none;
}
.UIImageListAndDetail .left img {
        vertical-align: middle;
        width: 100%;
        height: 400px;
}
.UIImageListAndDetail .item:hover {
        background-color: #F5F5F5;
        transition: ease 0.3s;
}
.UIImageListAndDetail .item {
        width: 100%;
        padding: 12px 10px;
        border-bottom: 1px solid #EEE;
}
.UIImageListAndDetail .item-image {
        width: 110px;
        height: 70px;
        border-radius: 3px;
        border: 1px solid #EEE;
}
.UIImageListAndDetail .item > a {
        display: flex;
        width: 100%;
        flex-direction: row;
        gap: 15px;
        margin: 0;
        padding: 0;
}
.UIImageListAndDetail .item > a:hover{
        text-decoration: none;
}
.UIImageListAndDetail .item-title {
        font-size: 14px;
        margin: 0;
        padding: 0;
        text-align: left;
}
.UIImageListAndDetail .item-description {
        display: block;
        color: #333;
        font-size: 13px;
        margin: 10px 0 5px;
        width: 100%;
}
.UIImageListAndDetail .slideshow-container {
        position: relative;
        margin: auto;
        width: 100%;
}
.UIImageListAndDetail .prev, .UIImageListAndDetail .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0, 0, 0 , 0.3);
}
.UIImageListAndDetail .prev {
        left: 0;
        border-radius: 3px 0 0 3px;
}
.UIImageListAndDetail .next {
        right: 0;
        border-radius: 3px 0 0 3px;
}
.UIImageListAndDetail .prev:hover, .UIImageListAndDetail .next:hover {
        background-color: rgba(0,0,0,0.8);
        text-decoration: none;
}
.UIImageListAndDetail .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
}
.UIImageListAndDetail .active {
        background-color: #717171;
}
.fade-slide {
        -webkit-animation-name: fade;
        -webkit-animation-duration: 1.5s;
        animation-name: fade;
        animation-duration: 1.5s;
}
@-webkit-keyframes fade {
        from {
                opacity: .4
        }
        to {
                opacity: 1
        }
}
@keyframes fade {
        from {
                opacity: .4
        }
        to {
                opacity: 1
        }
}
