/*.jcarousel button.prev{
	position: relative;
	float:left;
	top:170px;
	margin:0;
}*/

.next{
	position: relative;
	left:90%;
}

/*
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;
	float:left;
	width:90%;
    overflow: hidden;
	margin:20px;
	background:rgb(234,234,234) center 0 repeat-x;
	border-radius:15px;
	min-height:400px;
	padding:20px;	
	z-index:-1;
	font-size:16px;
	font-weight:normal;
}

/*
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: 20px;
    padding: 10px;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    float: left;
	min-height: 600px;
	margin:20px;
}

.jcarousel img {
	position:relative;
	float:left;
	margin:10px 20px;
	border-radius:20px;
}

.jcarousel h2 {
    position: relative;
    margin:10px 20px;
}