/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
	width: 180px;
    height: 100px;
	float:left;
}

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

.jcarousel-list {
    float:left;
	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;
    width: 190px;
	text-align:center;
	padding-bottom:4px;
}

/**
 * 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-prev{
	MARGIN-TOP:30px;MARGIN-LEFT:15px;BACKGROUND: url(../images/prev-horizontal.gif) no-repeat 0px 0px; WIDTH: 32px; CURSOR: pointer; HEIGHT: 32px; float:left;
}
.jcarousel-prev:hover {
	BACKGROUND-POSITION: -32px 0px
}
.jcarousel-prev:active {
	BACKGROUND-POSITION: -64px 0px
}
.jcarousel-next {
	MARGIN-TOP:30px;MARGIN-RIGHT:15px;BACKGROUND: url(../images/next-horizontal.gif) no-repeat 0px 0px; WIDTH: 32px; CURSOR: pointer; HEIGHT: 32px; float:left;
}
.jcarousel-next:hover {
	BACKGROUND-POSITION: -32px 0px
}
.jcarousel-next:active {
	BACKGROUND-POSITION: -64px 0px
}

