/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.TradeJCrousel .jcarousel-container {
    margin: 0;
	padding: 15px 0 0 0;
	height: 75px;
	width: 693px;
	background: url(../images/bg-wrapper-jcarousel.gif) no-repeat left top;
}

.TradeJCrousel .jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 588px;
}

.TradeJCrousel .jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 60px;
	width: 588px;
}

.TradeJCrousel .jcarousel-list li,
.TradeJCrousel .jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 60px;
    height: 60px;
    margin: 0 6px 0 0;
    overflow: hidden;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.TradeJCrousel .jcarousel-next,
.TradeJCrousel .jcarousel-prev {
    position: absolute;
    top: 1px;
    z-index: 3;
    display: none;
    width: 32px;
    height: 88px;
    cursor: pointer;
}

.TradeJCrousel .jcarousel-next {
    right: 11px;
    background: url("../images/icon-next.gif") no-repeat left top;
}

.TradeJCrousel .jcarousel-prev {
    left: 13px;
    background: url("../images/icon-previous.gif") no-repeat left top;
}

.TradeJCrousel .jcarousel-next-disabled,
.TradeJCrousel .jcarousel-prev-disabled {
    opacity: 0.2;
    -moz-opacity: 0.2;
    filter: alpha(opacity=20);
    cursor: default;
}






