/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 75px;
    height: 75px;
}

/**
 * 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".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}



/**************************** SKIN ycguests **************************/

/*first 2 tags added so LI are invisible until loaded (avoids flicker) - people without JS get nothing - oh well */  

#mycarousel.jcarousel-skin-ycGuests {
    width: 825px;
    height:235px;
    background:url(/images/loading.gif) 240px 90px no-repeat;    
  }

#mycarousel.jcarousel-skin-ycGuests li{
  display:none;
  } 
/* END Flicker Fix */

.jcarousel-skin-ycGuests .jcarousel-container {
}

.jcarousel-skin-ycGuests .jcarousel-container-horizontal {
    width: 825px;
    height:235px;
    padding-top: 0px;
    border-top:1px solid #eee;   
    border-bottom:1px solid #eee;  
}

.jcarousel-skin-ycGuests .jcarousel-clip-horizontal {
    width: 760px;
    height:185px;
    margin: 25px 0 0 37px;
}

.jcarousel-skin-ycGuests .jcarousel-item {
    width: 100px;
    height: 200px;
    margin-right:30px;
}

.jcarousel-skin-ycGuests .jcarousel-item-placeholder {
    background:url('/images/loading.gif') 36px 32px no-repeat #111;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-ycGuests .jcarousel-next-horizontal {
    position: absolute;
    top: 100px;
    right: -5px;
    width: 20px;
    height: 19px;
    cursor: pointer;
    background: transparent url('/images/sprites_bullets.png') no-repeat left 0px;
}

.jcarousel-skin-ycGuests .jcarousel-next-horizontal:hover {
    background-position: left -19px;
}

.jcarousel-skin-ycGuests .jcarousel-prev-horizontal {
    position: absolute;
    top: 100px;
    left: -5px;
    width: 20px;
    height: 19px;
    cursor: pointer;
    background: transparent url(/images/sprites_bullets.png) no-repeat left -38px;
}

.jcarousel-skin-ycGuests .jcarousel-prev-horizontal:hover {
    background-position: left -57px;
}

