<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel-wrapper {
    border: solid 1px #dedede;
    margin: 10px 0 10px;
}

.jcarousel {
    position: relative;
    overflow: hidden;
    padding: 10px;
    margin: 0 30px;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel-wrapper {
    position: relative;
}

.jcarousel ul {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a &lt;ul&gt; element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like &lt;li&gt;'s */
    float: left;
    padding: 7px 10px 0;
    list-style: none;
}

.jcarousel-nav {
    display: block;
    width: 19px;
    height: 36px;
    overflow: hidden;
    position: absolute;
    top: 30px;
}

.jcarousel-control-prev {
    background: transparent left top no-repeat url(../images/nav.png);
    left: 5px;
}

.jcarousel-control-next {
    background: transparent right top no-repeat url(../images/nav.png);
    right: 5px;
}

.inactive {
    background-image: url(../images/nav_inactive.png);
    cursor: default;
}

div.catalog-section-list ul {  
    -webkit-column-count:3;  
    -moz-column-count:3;  
    column-count:3;  
}  </pre></body></html>