/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    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;
}

#inner-wrap .jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 86px;
    height: 105px;
		background: none;
		margin: 0;
		padding: 0;
		text-align: center;
}

/**
 * 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;
}

/*=SKIN STYLES*/
.jcarousel-container {

}

.jcarousel-container-vertical {
    width: 86px;
    height: 315px;
    padding: 20px 0px;
}


.jcarousel-clip-vertical {
    width:  86px;
    height: 315px;
}

.jcarousel-item {
    width: 86px;
    height: 315px;
}

#inner-wrap .jcarousel-item-vertical {
/*    margin-bottom: 10px; */
}

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


/**
 *  Vertical Buttons
 */
.jcarousel-next-vertical {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 85px;
    height: 15px;
    cursor: pointer;
    background: transparent url(../img/arr_down.gif) no-repeat 50% 0;
}

.jcarousel-next-vertical:hover {

}

.jcarousel-next-vertical:active {

}

.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:active {
    cursor: default;
		opacity: .4;
		filter: alpha(opacity = 40);
}

.jcarousel-prev-vertical {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 85px;
    height: 15px;
    cursor: pointer;
    background: transparent url(../img/arr_up.gif) no-repeat 50% 0;
}

.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:active {
    cursor: default;
		opacity: .4;
		filter: alpha(opacity = 40);
}