/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
#mycarousel.nojs {
	display: none;
	visibility: hidden;
}
.jcarousel-container {
    position: relative;
	width: 148px;
	background-color: #fff;
	height: 342px;
	top: -40px;
	left: -7px;
}
.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 5px 0 0 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
	position: absolute;
    z-index: 1;
    overflow: hidden;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 115px;
    height: 74px;
}

/**
 * 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 {
    width: 148px;
    height: 342px;
}

.jcarousel-clip-vertical {
	position: absolute;
	left: 23px;
	top: 45px;
    width: 115px;
    height: 245px;
}
.jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

.jcarousel-next-vertical {
    position: absolute;
    top: 293px;
    left: 14px;
    width: 133px;
    height: 33px;
    cursor: pointer;
    background: transparent url(../img_css/next-vertical.png) no-repeat 0 -35px;
}

.jcarousel-next-vertical:hover {
    background-position: 0 0;
}

.jcarousel-next-vertical:active {
    background-position: 0 -35px;
}

.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -70px;
}

.jcarousel-prev-vertical {
    position: absolute;
    top: 17px;
    left: 14px;
    width: 133px;
    height: 33px;
    cursor: pointer;
    background: transparent url(../img_css/prev-vertical.png) no-repeat 0 -35px;
}

.jcarousel-prev-vertical:hover {
   background-position: 0 0;
}

.jcarousel-prev-vertical:active {
    background-position: 0 -35px;
}

.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -70px;
}
