﻿/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container * {padding: 0 !important; margin: 0 !important;}

.jcarousel-container {
    position: relative;
    height: 66px;
}

.jcarousel-container-horizontal {
    width: 440px;
    padding: 0 55px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    /*overflow: hidden;*/
    position: relative;
}

.jcarousel-clip-horizontal {
    width:  440px;
    overflow: hidden;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    float: left;
    list-style-type: none;
}

.jcarousel-list li,
.jcarousel-item 
{
	float: left;
    display: block;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 84px;
    height: 56px;
    overflow: hidden;
    padding: 0 4px 0 0 !important;
}

.jcarousel-list li a,
.jcarousel-item a{
	display: block; 
	margin: 0; 
	padding: 0;
}

/**
 * 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;
}

.jcarousel-prev {
    z-index: 3;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-next-horizontal {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px;
    height: 66px;
    cursor: pointer;
    background: url('../images/layout/carousel_next.jpg') no-repeat 0 0;
}

.jcarousel-next-horizontal:hover {}

.jcarousel-next-horizontal:active {}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active { cursor: default;}

.jcarousel-prev-horizontal {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 55px;
    height: 66px;
    cursor: pointer;
    background: url('../images/layout/carousel_previous.jpg') no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover {}

.jcarousel-prev-horizontal:active {}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
}

