/**
 * 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: 75px;
}

/**
 * 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;
    position: absolute;
    top: 43px;
    right: 10px;
    width: 36px;
    height: 56px;
    cursor: pointer;
    background: transparent url(/images/arrowright.png) no-repeat;
}

.jcarousel-prev {
    z-index: 3;
    position: absolute;
    top: 43px;
    left: 5px;
    width: 37px;
    height: 56px;
    cursor: pointer;        
    background: transparent url(/images/arrowleft.png) no-repeat;
}

.jcarousel-next-vertical {
    z-index: 3;
    position: absolute;
    top: 405px;
    left: 70px;
    width: 56px;
    height: 36px;
    cursor: pointer;    
    background: transparent url(/images/arrowbottom.png) no-repeat;
}

.jcarousel-next-disabled {
    z-index: 3;
    position: absolute;
    top: 43px;
    right: 10px;
    width: 36px;
    height: 56px;   
    cursor : default;
    background: transparent url(/images/arrowright-disabled.png) no-repeat;
}

.jcarousel-next-disabled-vertical {
    z-index: 3;
    position: absolute;
    top: 405px;
    left: 70px;
    width: 56px;
    height: 36px;
    cursor : default;    
    background: transparent url(/images/arrowbottom-disabled.png) no-repeat;
}

.jcarousel-prev-disabled {
    z-index: 3;
    position: absolute;
    top: 43px;
    left: 5px;
    width: 37px;
    height: 56px;     
    background: transparent url(/images/arrowleft-disabled.png) no-repeat;
    cursor : default;
}

.jcarousel-prev-vertical {
    z-index: 3;
    position: absolute;
    top: -35px;
    left: 70px;
    width: 56px;
    height: 36px;
    cursor: pointer;        
    background: transparent url(/images/arrowtop.png) no-repeat;
}

.jcarousel-prev-disabled-vertical {
    z-index: 3;
    position: absolute;
    top: -35px;
    left: 70px;
    width: 56px;
    height: 36px;  
    background: transparent url(/images/arrowtop-disabled.png) no-repeat;
    cursor : default;
}


.jcarousel-prev, .jcarousel-prev-disabled, .jcarousel-prev-vertical, .jcarousel-prev-disabled-vertical, .jcarousel-next, .jcarousel-next-disabled, .jcarousel-next-vertical, .jcarousel-next-disabled-vertical { behavior: url(/iepngfix.htc) } 

.jcarousel-clip-horizontal
{
    width:  100%;
    height: 100%;
}

 .jcarousel-clip-vertical 
 {     
     width: 100%;
     height: 400px;
 }
