/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
    padding:0;
    background: url("/public/images/carousel-pg.png") no-repeat bottom center;
}

.jcarousel-container-vertical {
  background: url("/public/images/carousel-vbg.png") no-repeat right center;  
  margin: 5px 5px 5px 0;
}

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

.jcarousel-clip-vertical {
    margin:0;
    height:550px;
}


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

.jcarousel-item {
    float: left;
    list-style: none;
    height: 110px;
    width: 115px;    
}

.jcarousel-item img {
  border-width: 4px;
  border-style: solid;
}

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

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


.jcarousel-item-vertical {
	float:none;
	width:93%;
	overflow:hidden;	
	height:auto;
	padding:10px 0;
  margin: 0 0 15px 1px;
}

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

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

/* HORIZONTAL BUTTONS */

.jcarousel-next-horizontal {
    position: absolute;
    bottom:4px;
    height:12px;
    right:30px;
    width:60px;
    cursor:pointer;   
    background:url(/public/images/carouselnext.png) top left no-repeat;   
}

.jcarousel-prev-horizontal {
    cursor:pointer;
    height:12px;
    position:absolute;
    left:30px;
    bottom:4px;
    width:60px;
    cursor:pointer;      
    background:url(/public/images/carouselprev.png) top left no-repeat; 
}

/**
 *  Vertical Buttons
 */
.jcarousel-next-vertical {
    position: absolute;
    bottom: 4px;
    height:60px;
    right:3px;
    width:12px;
    cursor:pointer;   
    background:url(/public/images/carouseldown.png) top left;   
}

.jcarousel-prev-vertical {
    cursor:pointer;
    height:60px;
    position:absolute;
    right:3px;
    top:4px;
    width:12px;
    background:url(/public/images/carouselup.png) top left; 
}