.jcarousel-container {
    width: 310px;
	border: 1px solid transparent;
	position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 310px;
    height: 90px;
}

/**
 * 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".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

.jcarousel-container-vertical {
    height: 500px;
    padding: 0 0 20px 0;
}

.jcarousel-skin-tango .jcarousel-clip-horizontal {
    width:  245px;
    height: 90px;
}

.jcarousel-clip-vertical { /* Div hiding everything but the visible items */
    width:  310px;
    height: 500px;
}

.jcarousel-item {
    width: 310px;
    height: 90px;
}

.jcarousel-item-vertical {
    margin-bottom: 10px;
}

/**
 *  Vertical Buttons
 */
 
 .jcarousel-prev-vertical,
 .jcarousel-next-vertical {
    width: 151px;
	height: 27px;
	cursor: pointer;
	bottom: 0;
	position: absolute;
 }
.jcarousel-next-vertical {
	right: 0;
    background: url(images/scrollbutton.png) no-repeat right -27px;
}

.jcarousel-prev-vertical {
	left: 0;
    background: url(images/scrollbutton.png) no-repeat left -27px;
}

.jcarousel-next-vertical:hover {
    background-position: right 0;
}

.jcarousel-prev-vertical:hover {
    background-position: left 0;
}

.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: right bottom;
}

.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: left bottom;
}

/* .jcarousel-next-vertical:active {
    background-position: right -27px;
} */

/*.jcarousel-prev-vertical:active {
    background-position: left -27px;
} */