/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-container-horizontal 
{
    width: 780px;
    border: solid 0px black;
    padding-left: 0px;
    margin-left: 0px;
}

.jcarousel-clip-horizontal 
{
    width: 660px;
    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: 660px;
    height: 340px;
    border: solid 0px black;
    text-align: left;
    line-height: 1.6;
}

.jcarousel-next-horizontal {
    position: absolute;
    top: 100px;
    right: 0px;
    width: 32px;
    height: 32px;    
    cursor: pointer;
    background: url(../images/Fairytale_right_red.gif) no-repeat;    
}

.jcarousel-prev-horizontal {
    position: absolute;
    top: 100px;
    left: 0px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: url(../images/Fairytale_left_red.gif) no-repeat 0 0;
}

