/* the width and height needs to be set - this is the whole container */
.jcarousel-skin-tango .jcarousel-container {
    padding: 15px 0 0 15px;
}

/* the width and height needs to be set minus the buttons that get added (unless they are positioned absolute - otherwise same as container */
.jcarousel-skin-tango .jcarousel-clip-horizontal {
    /* must be container height - button height */
    height: 72px;

    position: relative;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

/* the width and height needs to be set - this is off the individual item */
.jcarousel-skin-tango .jcarousel-item {
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow:hidden;

    background: url('/modules/mod_byond_sectionView/includes/images/newsdivider_big.gif') no-repeat 0 0;
    width: 210px;
    height: 70px;
    padding: 5px 0px 0px 0px;
    margin: 10px 15px 15px 0px;
}

/* the previous button */
.jcarousel-skin-tango .jcarousel-prev-horizontal {
    position: relative;
    bottom: 0px;
    right: -165px;
    width: 19px;
    height: 16px;
    cursor: pointer;
    background: transparent url('../images/left.png') no-repeat bottom left;
}

/* the next button */
.jcarousel-skin-tango .jcarousel-next-horizontal {
    position: relative;
    bottom: 15px;
    right: -185px;
    width: 19px;
    height: 16px;
    cursor: pointer;
    background: transparent url('../images/right.png') no-repeat 0 0;
}