/**
 * 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: absolute;
    left:40px;
 	top:0px;
	width:301px;
	height:190px;
}

.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: 301px;
    height: 190px;
}

.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}


/*******************/
/****** SKIN *******/
/*******************/

/**
 *  Buttons
 */
.jcarousel-skin-ie7 .jcarousel-next-horizontal {
    width: 29px;
    height: 29px;
	position:absolute;
	left:350px;
	top:80px;
    cursor: pointer;
    background: transparent url('/images/buttons/carousel-right.png');
	background-repeat: no-repeat;
	background-position: 0 0;
}

.jcarousel-skin-ie7 .jcarousel-next-horizontal:hover {
	background-position: 0 -29px;
}

.jcarousel-skin-ie7 .jcarousel-prev-horizontal {
    position: absolute;
    top: 80px;
    left: 0px;
    width: 29px;
    height: 29px;
    cursor: pointer;
    background: transparent url('/images/buttons/carousel-left.png');
	background-repeat: no-repeat;
  	background-position: 0 0;
}

.jcarousel-skin-ie7 .jcarousel-prev-horizontal:hover {
	background-position: 0 -29px;
}
