/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
    position: relative;
    overflow: hidden;
	width: 1350px;
	height:270px;
	padding-bottom:60px;
	border-bottom:1px solid #e6e6e6;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.jcarousel-control-prev {
	position:absolute;
	left:10px; 
	top:160px;
	width:29px;
	height:27px;
	background-image:url(/images/gal_slider_left.png);
	}
.jcarousel-control-next {
	position:absolute;
	right:10px; 
	top:160px;	
	width:29px;
	height:27px;
	background-image:url(/images/gal_slider_right.png);
	}
/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
}