/*
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;
	
	/*By Piosão*/
	width: 50%;
}
/*By Piosão*/
.jcarousel img {
	/*width: 840px;*/
}

/*
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;
    margin-right: 10px;
    /*width: 840px;*/
}
.jcarousel-control-prev img,.jcarousel-control-next img { 
	width: 0.8em; /*12px;*/
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	margin: auto;
}
.jcarousel-control-prev,.jcarousel-control-next { position: relative; width: 1em; height: 1.5em; }
.jcarousel-control-prev {
	position: absolute;
	bottom: 45%; /*0px;*/
	left: 15px; /*-35px;*/
	
	font-family: Arial,Verdana,'Open Sans';
	font-size: 18pt;
}
.jcarousel-control-next {
	position: absolute;
	bottom: 45%; /*0px;*/
	/*left: -20px;*/
	right: 15px;
	
	font-family: Arial,Verdana,'Open Sans';
	font-size: 18pt;
}
.jcarousel-control_bg {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background-color: #fff;
	opacity: 0.4;
	 border-radius: 3px;
}

a.inactive { visibility: hidden; }

.jcarousel-pagination { text-align: right !important; }
.jcarousel-pagination a { display: none; padding: 3px 6px; width: 10px; /*float: left;*/ text-align: center; font-size: 0.9em; }
.jcarousel-pagination a.active { display: inline-block; background-color: #eee; border-radius: 3px; color: #000; border: 1px solid #ddd;   }