﻿/**
 * 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-container-horizontal {
	width:260px;
	height:auto; 
	overflow: hidden;
	margin: 20px auto;
}

.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;
	/*padding:8px;*/
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 260px;
    height: 260px;
}

/**
 * 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;
}*/

/* background loader */
/*.jcarousel-item-placeholder {
        background: transparent url(../../images/backgrounds/load-generic.gif) 50% 50% no-repeat;
}*/

/* prev next buttons
.jcarousel-next-horizontal { display: none;
    border:solid 1px lime;
    position: absolute;
    top: 7px;
    right: 2px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: transparent url(../buttons/bzGalleryButtonNext.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover {
    
    background: transparent url(../buttons/bzGalleryButtonNextOver.png) no-repeat 0 0;
    
}

.jcarousel-next-horizontal:active {
    
    background: transparent url(../buttons/bzGalleryButtonNextDown.png) no-repeat 0 0;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background: transparent url(../buttons/bzGalleryButtonNext.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal { display: none;
    position: absolute;
    top: 7px;
    left: 6px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: transparent url(../buttons/bzGalleryButtonPrev.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover {
    background: transparent url(../buttons/bzGalleryButtonPrevOVer.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:active {
    background: transparent url(../buttons/bzGalleryButtonPrevDown.png) no-repeat 0 0;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background: transparent url(../buttons/bzGalleryButtonPrev.png) no-repeat 0 0;
}*/