.jcarousel {
    position: relative;
    overflow: hidden;
    /* You need at least a height, adjust this to your needs */
    height: 183px;
}

.jcarousel ul {
    width: 20000em;
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
	margin:0;
}

.jcarousel-prev{
    position: absolute;
	z-index:150;
	left:430px;
	bottom:-40px;
	display:block;
	width:32px;
	height:32px;
	background-image:url(../images/p_prev.png);
	background-position:center center;
	background-repeat:no-repeat;
}

.jcarousel-prev:hover{
	background-image:url(../images/p_prev.png);
}

.jcarousel-next{
    position: absolute;
	z-index:150;
	right:430px;
	bottom:-40px;
	display:block;
	width:32px;
	height:32px;
	background-image:url(../images/p_next.png);
	background-position:center center;
	background-repeat:no-repeat;
}

.jcarousel-next:hover{
	background-image:url(../images/p_next.png);
}

