@charset "UTF-8";
/* CSS Document */
/*
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: 613px;
}

/*
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: 600em;
    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;
	list-style: none;
}

.jcarousel ul li {
	list-style: none;
}

.jcarousel-prev {
	float: left;
}

.jcarousel-next {
	float: right;
}

.jcarousel-prev, .jcarousel-next {
	color: #bfbfbfbf !important;
	display: block;
	height: 320px;
	margin-top: -320px;
	position: relative;
	top: 0;
	width: 305px;
}

.jcarousel-prev span, .jcarousel-next span {
	font-size: 4em;
	/*background: #4e443c none repeat scroll 0 0;
	border-radius: 30px;
	box-shadow: 0 0 2px #999999;*/
	color: #bfbfbf !important;
	display: none;
	height: 30px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 0 5px #000000;
	top: 46%;
	width: 30px;
}

.jcarousel-prev:hover span, .jcarousel-next:hover span {
	display: block;
}

.jcarousel-prev span {
    left: 8px;
}

.jcarousel-next span {
	right: 8px;
}
