/**
 * 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;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 94px;
    height: 65px;
	background: #FFF;
    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;
}

/*******************************/
.jcarousel-skin-internum .jcarousel-container {
    /*-moz-border-radius: 10px;*/
    background: #FFF /*url(../images/test_bg_carousel.png) repeat-x*/;
    /*border-top: 1px solid #FD8602;
    border-bottom: 1px solid #FD8602;*/
}

.jcarousel-skin-internum .jcarousel-container-horizontal {
   width: 658px;  /* Size of thumb * nb thumbs + item margins*/
    padding: 10px 40px;
}


/*.jcarousel-skin-internum .jcarousel-clip-horizontal {
    width: 460px; background: #F5F5F5;
    height: 97px;
	border: 3px solid #F5F5F5;
	}*/


/*.jcarousel-skin-internum .jcarousel-item {
    width: 54px;*/	/* Must be correctly sized depending of number of items!!!! */ 
    /*height: 65px; 
    border: 1px solid #fff;
    text-align: center;
}*/

.jcarousel-skin-internum .jcarousel-item-on {
    border: 1px solid #2F8DBB;
}

.jcarousel-skin-internum .jcarousel-item:hover {
   border-color: #7CB5DA;
}

.jcarousel-skin-internum .jcarousel-item-horizontal {
    margin-right: 1px;
}

/* not used in internum */
.jcarousel-skin-internum .jcarousel-clip-vertical {
    width:  77px;
    height: 245px;
}
/* not used in internum */
.jcarousel-skin-internum .jcarousel-container-vertical {
    width: 50px;
    height: 325px;
    padding: 40px 20px;
}
/* not used in internum */
.jcarousel-skin-internum .jcarousel-item-vertical {
    margin-bottom: 7px;
}

.jcarousel-skin-internum .jcarousel-item-placeholder {
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-internum .jcarousel-next-horizontal {
    position: absolute;
    /*top: 40px;
    right: 5px;*/
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(../../images/carousel/next-horizontal.gif) no-repeat 0 0;
}

/* hover to be done ??? */
.jcarousel-skin-internum .jcarousel-next-horizontal:hover {
    /* background-position: -32px 0; */
}

.jcarousel-skin-internum .jcarousel-next-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-internum .jcarousel-next-disabled-horizontal,
.jcarousel-skin-internum .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-internum .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-skin-internum .jcarousel-prev-horizontal {
    position: absolute;
   /* top: 40px;
    left: 5px;*/
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(../../images/carousel/prev-horizontal.gif) no-repeat 0 0;
}

.jcarousel-skin-internum .jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-internum .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-internum .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-internum .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-internum .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

/**
 *  Vertical Buttons
 */
.jcarousel-skin-internum .jcarousel-next-vertical {
    position: absolute;
    bottom: 5px;
    left: 43px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(next-vertical.gif) no-repeat 0 0;
}

.jcarousel-skin-internum .jcarousel-next-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-internum .jcarousel-next-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-internum .jcarousel-next-disabled-vertical,
.jcarousel-skin-internum .jcarousel-next-disabled-vertical:hover,
.jcarousel-skin-internum .jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

.jcarousel-skin-internum .jcarousel-prev-vertical {
    position: absolute;
    top: 5px;
    left: 43px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(prev-vertical.gif) no-repeat 0 0;
}

.jcarousel-skin-internum .jcarousel-prev-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-internum .jcarousel-prev-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-internum .jcarousel-prev-disabled-vertical,
.jcarousel-skin-internum .jcarousel-prev-disabled-vertical:hover,
.jcarousel-skin-internum .jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

