<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Tiny Carousel */
.Carousel {
    height: 1%;
    margin: 30px 0 0;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.ProductBoxElement .Carousel{
	margin: 0;
}
.ProductBoxElement .ElementHeader {text-align: center;}

.Carousel .viewport {
    height: 460px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
    border-left: 1px solid #c7e3ff;
}
.Carousel .Product h2 {
	max-height: 44px;
	overflow: hidden;
}

.Carousel .buttons {
    /* background: #C01313; */
    display: block;
    position: absolute;
    top: 30%;
    left: 0;
    width: 28px;
    height: 55px;
    z-index: 100;
    opacity: 0.7;
}
.Carousel .buttons span {display: none;}
.Carousel .buttons:before {
	content: '';
	display: block;
	background: url(images/sliderArrow.png) no-repeat scroll left top;
	width: 28px;
	height: 55px;
}
.Carousel .buttons.next:before {
	background-position: right top;
}

.Carousel .next {
    right: 0;
    left: auto;
}

.Carousel .buttons:hover {
    opacity: 1;
}

.Carousel .disable {
    visibility: hidden;
}

.Carousel .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 240px;
    left: 0;
    top: 0;
    display: block !important;
}
.Carousel .overview .Product {
	width: 233.8px;
	margin: 0;
	border-left: 0px;
	float: left;
}
/* .SubBody.Carousel .overview .Product.mirrored {display: none !important} */
</pre></body></html>