.jcarousel-container {
    position: relative;
	width: 730px;
}

.jcarousel-clip {
    width:  730px;
    height: 300px;
	z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

/* My Comment */

.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: 730px;
    height: 300px;
	padding: 0;
}

/* BUTTONS
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

.jcarousel-item{
    width: 730px;
    height: 300px;
}

.jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/*
Horizontal Buttons
 */
.jcarousel-next {
    position: absolute;
    top: 145px;
    right: -30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: transparent url(../media/button_next_green.png) no-repeat 0 0;
}

.jcarousel-next:hover {
    background-position: -30px 0;
}

.jcarousel-next:active {
    background-position: -60px 0;
}

.jcarousel-next-disabled,
.jcarousel-next-disabled:hover,
.jcarousel-next-disabled:active {
    cursor: default;
    background-position: -60px 0;
}

.jcarousel-prev {
    position: absolute;
    top: 145px;
    left: -30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: transparent url(../media/button_prev_green.png) no-repeat 0 0;
}

.jcarousel-prev:hover {
    background-position: -30px 0;
}

.jcarousel-prev:active {
    background-position: -60px 0;
}

.jcarousel-prev-disabled,
.jcarousel-prev-disabled:hover,
.jcarousel-prev-disabled:active {
    cursor: default;
    background-position: -60px 0;
}

/* HOME CAROUSEL */

#bannerCarouselMain .jcarousel-clip {
   height: 150px;
	border: 1px solid #999;
}

#bannerCarouselMain .jcarousel-next {
   top: 60px;
}

#bannerCarouselMain .jcarousel-prev {
   top: 60px;
}



