/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
    background: #D0E6F2;
    width: 680px;
    padding: 10px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    width:  680px;
    height: 150px;
    background: #D0E6F2;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}
.jcarousel-list li{
    position:relative; float:left; 
    list-style: none; background:#fff;
    padding: 4px; margin-right:12px;
    text-align:center;
    border: 1px solid #fff;
    
}
.jcarousel-item {background:#fff}

#carousel-title {position:relative; line-height:24px; font-size: 12pt; font-weight:bold; color: #9F9F9F}
.carousel-text{position:absolute;display:block; width:140px;text-align:right;bottom:0;left:0;margin:0;font-size: 8pt; font-weight: bold; padding:2px 6px; background:#307EA5; color:#fff}
/**
 * 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 {
    position: absolute;
    top: -21px;
    right: 0;
    width: 20px;
    height: 20px;
    background:url(../images/carousel_next-start.gif) 0 0;
    z-index: 3;
    display: none;
    cursor: pointer;
}
.jcarousel-next:hover {background:url(../images/carousel_next-start.gif) 0 20px; text-decoration: none; border:0;}

.jcarousel-prev {
    position: absolute;
    top: -21px;
    right: 22px;
    width: 20px;
    height: 20px;
    background:url(../images/carousel_prev-start.gif) 0 0;
    z-index: 3;
    display: none;
    cursor: pointer;
}
.jcarousel-prev:hover {background:url(../images/carousel_prev-start.gif) 0 20px; text-decoration: none; border:0;}


