
div.hoverscroll {
    position: relative;
}

div.hoverscroll div.listcontainer {
    overflow: hidden;
}

div.hoverscroll div.fixed-listcontainer {
    overflow: hidden;
    float: left;
}

div.hoverscroll ul.list {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-top: 6px;
    padding-left: 50px;
    padding-right: 155px;
}

div.hoverscroll ul.list li.item {
    display: block;
    padding: 0;
}

div.hoverscroll.horizontal ul.list li.item {
    float: left;
}

div.hoverscroll div.arrow {
    position: absolute;
    float: none;
    background-position: center;
    z-index: 1000;
}

div.hoverscroll.vertical div.bottom {
    background: #ebebeb url(img/bg-band.png) repeat-x;
}

div.hoverscroll.vertical div.arrow {
    position: absolute;
    float: none;
    background-position: center;
    z-index: 10000;
}

div.hoverscroll div.fixed-arrow {
    display: block;
    float: left;
    background-position: center;
}

div.hoverscroll div.arrow.right, div.hoverscroll div.fixed-arrow.right {
    top: 0px;
    width: 140px;
    height: 100%;
}

div.hoverscroll div.arrow.left, div.hoverscroll div.fixed-arrow.left {
    top: 0px;
    width: 30px;
    height: 100%;
}

#pos-rel {
    position: relative;
    direction: ltr;
}

div.hoverscroll div.arrow.left, div.hoverscroll div.fixed-arrow.left {
    left: 0px;
    background-image: url('img/arrow-left-small.png');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

div.hoverscroll div.arrow.right, div.hoverscroll div.fixed-arrow.right {
    right: 0px;
    background-image: url('img/arrow-right-small.png');
    background-repeat: no-repeat;
    background-position: 10px;
    cursor: pointer;
}

div.hoverscroll div.arrow.top, div.hoverscroll div.arrow.bottom, div.hoverscroll div.fixed-arrow.top, div.hoverscroll div.fixed-arrow.bottom {
    left: 0px;
    width: 960px;
    right: 0px;
    height: 20px;
}

div.hoverscroll div.arrow.top, div.hoverscroll div.fixed-arrow.top {
    top: 0px;
    background-image: url('img/arrow-up-small.png');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    height: 60px;
    top: -50px;
}

div.hoverscroll div.arrow.bottom, div.hoverscroll div.fixed-arrow.bottom {
    bottom: 0px;
    background-image: url('img/arrow-down-small.png');
    background-repeat: no-repeat;
    background-position: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 1px 1px 5px #636363;
    cursor: pointer;
}



