/*
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;
}

/*
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 {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
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;
}

.jcarousel-wrapper {
	position: relative;
}

.jcarousel-prev {
	text-decoration: none;
	font-weight: bold;
	font-size: 60px;
	line-height: 44px;
	color: rgba(255, 255, 255, 1.0);
	text-align: center;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	
	position: absolute;
	top: 140px;
	left: 30px;
	
	-moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    border-radius: 30px;
}

.jcarousel-next {
	text-decoration: none;
	font-weight: bold;
	font-size: 60px;
	line-height: 44px;
	color: rgba(255, 255, 255, 1.0);
	text-align: center;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.6);
	
	position: absolute;
	top: 140px;
	left: 960px;
	
	-moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    -khtml-border-radius: 30px;
    border-radius: 30px;
}

.jcarousel-pagination {
	position: absolute;
	left: 20px;
	top: 310px;
}

.jcarousel-pagination a {
	text-decoration: none;
	background: rgba(0, 0, 0, 0.8);
	font-size: 1px;
	line-height: 30px;
	text-align: center;
	width: 20px;
	height: 20px;
	background: rgba(0, 0, 0, 0.8);
	float: left;
	
	margin: 2px;
	
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}

.slide-container {
	position: relative;
}