/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
    border-top:1px solid #fff;
    overflow:hidden;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    overflow: hidden;
    position: relative;
    margin: 0 30px;
    width: 620px;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

#archive-nav ol.jcarousel-list {
	padding-left: 0;
	padding-right: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    text-align: center;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    display: inline; /* ie6 double margin bug fix */
}

/**
 * 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;
}








.jcarousel-next-horizontal {
    right: 6px;
    background: transparent url(../i/archive-icons-next.png) no-repeat 0 0;
}
.jcarousel-prev-horizontal {
    left: 6px;
	_left: -23px;
    background: transparent url(../i/archive-icons-prev.png) no-repeat 0 0;
}
.jcarousel-next-horizontal,
.jcarousel-prev-horizontal {
    position: absolute;
    top: 7px;
    width: 18px;
    height: 21px;
    cursor: pointer;
}
.jcarousel-next-horizontal:hover,
.jcarousel-prev-horizontal:hover {
    background-position: -18px 0;
}
.jcarousel-next-horizontal:active,
.jcarousel-prev-horizontal:active {
    background-position: -36px 0;
}
.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active,
.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -54px 0;
}
