/**
 * 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;
}

    /* We set the width/height explicitly. No width/height causes infinite loops. */
.jcarousel-list li,
.jcarousel-item 
{
	font-size:10px;
    float: left;
    list-style: none;
    width: 120px;
    height: 120px;
    padding:5px;
    color:#5C0D13;
    background-color:#fff;
	border:1px solid #fff;
}

.jcarousel-item img{ margin:0 auto; text-align:center;}

a.top_link { color:#5C0D13; text-decoration:none; height:25px; display:block; margin-top:-3px;}
a:hover.top_link{ color:#999; text-decoration:none; height:25px; display:block; margin-top:-3px;}

/**
 * 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;
}

