/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */

.jcarousel-container {
    position: relative;
	width: 577px;
	margin: 10px auto 0 auto;
	text-align: center;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 523px;
    height: 68px;
	margin-top: -1px;
}

* html .jcarousel-clip {
    width: 524px;
}


.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    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: 103px;
    height: 68px;
	margin: 0 2px 0 0;
}
.jcarousel-list li a:link,
.jcarousel-list li a:visited {
	border: 1px solid #666666;
	display: block;
}
.jcarousel-list li a.Active img {
}
.jcarousel-list li a:hover img {
	opacity:0.8;
	filter:alpha(opacity=80)
}
/**
 * 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;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
	background: url(../images/btn-next-1.gif) no-repeat scroll top right;
	width: 23px;
	height: 68px;
}

.jcarousel-prev {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;	
    cursor: pointer;
	background: url(../images/btn-prev-1.gif) no-repeat scroll left top;
	width: 23px;
	height: 68px;
}
.jcarousel-next-disabled,
.jcarousel-prev-disabled {
	opacity: 0.4;
	-moz-opacity: 0.4;
	filter: alpha(opacity=40);
}
/*********************************/