/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
    padding:28px 0;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 75px;
    height: 75px;
}

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

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

.jcarousel-clip-vertical {
    width:  90px;
    height: 300px;
}

div.top .jcarousel-item-vertical {
  margin-bottom:15px;
}

.jcarousel-item-vertical {
	float:none;
	width:90px;
	overflow:hidden;	
	height:auto;
}

.jcarousel-item-vertical .image {
  height:auto;
}

.selected img {
  border:4px solid #659ca0;
}

/**
 *  Vertical Buttons
 */
.jcarousel-next-vertical {
    position: absolute;
    bottom: 0;
    height:25px;
    right:30px;
    width:25px;
    cursor:pointer;   
    background:url(/public/images/next.png) top left;   
}

.jcarousel-prev-vertical {
    cursor:pointer;
    height:25px;
    position:absolute;
    right:30px;
    top:0;
    width:25px;
    background:url(/public/images/prev.png) top left; 
}