/**
 * 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-clip-horizontal {
width: 100%;
}

.jcarousel-item {
height: 100%;
}

.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: 165px;
    height: 243px;
	margin:0px 4px;
	display:block;
	border:1px solid #FFF;
}

.jcarousel-list li:hover,
.jcarousel-item:hover {
border:1px solid #999;
cursor:pointer;
}

.jcarousel-list li p.img {
margin:0px;
display:table-cell;
height:140px;
width:165px;
text-align:center;
vertical-align:middle;
}

.jcarousel-list li p.desc{
margin:0px;
padding:10px 0px;
display:block;
height:50px;
width:165px;
text-align:center;
font-size:11px;
color:#666;
line-height:150%;
}

.jcarousel-list li p.price{
margin:0px;
padding:0px;
padding-bottom:10px;
display:block;
width:165px;
text-align:center;
font-size:25px;
line-height:normal;
}

/**
 * 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;
}


