/*
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!
*/
.carrossel {
    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.
*/
.carrossel 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).
*/
.carrossel li {
    /* Required only for block elements like <li>'s */
    float: left;
}


.carrossel .jcarousel-prev,
.carrossel .jcarousel-next,
.carrossel .jcarousel-pagination{display:none; margin:20px auto;}
.carrossel .jcarousel-pagination a{text-indent: -999px;display: block;background: #333;width: 13px;border-radius: 12px;height: 13px;float: left;margin: 0 5px;border:1px solid #fff;}
.carrossel .jcarousel-pagination a:hover{background: #ccc;}
.carrossel .jcarousel-pagination a.active{background: #e5e5e5; border-color:#ccc;}
