/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
 
div#eventos .jcarousel-container {
    position: absolute;
    left: 5px;
    bottom: 14px;
}

div#eventos .jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

div#eventos .jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

div#eventos .jcarousel-list li,
div#eventos .jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 195px;
    height: 45px;
    padding-left: 5px;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
 
div#eventos .jcarousel-next,
div#eventos .jcarousel-prev { z-index: 3; display: none; }

div#eventos .jcarousel-container-horizontal { width: 220px; }

div#eventos .jcarousel-clip-horizontal { width: 200px; height: 45px; }

div#eventos .jcarousel-item { width: 200px; height: 45px; }

div#eventos .jcarousel-item-placeholder { background: #fff; color: #000; }

/* Horizontal Buttons */

div#eventos .jcarousel-next-horizontal {
    position: absolute;
    top: 5px;
    right: 0;
    width: 19px;
    height: 14px;
    cursor: pointer;
    background: transparent url(../../img/calendario_jcarousel_seta.png) no-repeat 0 -3px;
}

div#eventos .jcarousel-prev-horizontal {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 19px;
    height: 14px;
    cursor: pointer;
    background: transparent url(../../img/calendario_jcarousel_seta.png) no-repeat 0 -41px;
}

div#eventos .jcarousel-next-horizontal:hover { background-position: 0 -22px; }
div#eventos .jcarousel-prev-horizontal:hover { background-position: 0 -61px; }

div#eventos .jcarousel-next-horizontal:active,
div#eventos .jcarousel-prev-horizontal:active { background-position: -64px 0; }

div#eventos .jcarousel-next-disabled-horizontal,
div#eventos .jcarousel-next-disabled-horizontal:hover,
div#eventos .jcarousel-next-disabled-horizontal:active,
div#eventos .jcarousel-prev-disabled-horizontal,
div#eventos .jcarousel-prev-disabled-horizontal:hover,
div#eventos .jcarousel-prev-disabled-horizontal:active { cursor: default; background-position: -19px 0; }

