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

.jcarousel-clip {
    /*z-index: 5;*/
	z-index: 99;
    padding: 0;
    margin: 0;
	margin-left: 24px;
    overflow: hidden;
    position: relative;
	width: 885px; /* Was 890px */
	height: 370px;
}
*html .jcarousel-clip { 	width: 885px; }

.jcarousel-list {
    z-index: 3;
    overflow: hidden;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 217px;
    height: 366px;
	/*overflow: hidden;*/
	padding-left: 0px;
	padding-right: 0px; /* Was 2px */
	text-align: center;
}

/* FOR IE ONLY START */
* html .jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 221px;
    height: 366px;
	/*overflow: hidden;*/
	text-align: center;
	padding: 0px;
	margin: 0px;
}
/* FOR IE ONLY END */

.gallery .jcarousel-item {
    width: 885px;
    height: 366px;
}

/**
 * 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 {
	position: absolute;
	top: -4px;
	right: 0px;
    z-index: 30;
	width: 26px;
	height: 374px;
    display: none;
	background: url(../images/nav-right.gif) no-repeat 0% 50%;
	cursor: pointer;
}

.jcarousel-prev {
	position: absolute;
	top: -4px;
	left: 0px;
    z-index: 30;
	width: 26px;
	height: 374px;
    display: none;
	background: url(../images/nav-left.gif) no-repeat 0% 50%;
	cursor: pointer;
}

.jcarousel-prev-disabled {
background: url(../images/nav-left-disabled.gif) no-repeat 0% 50%;
cursor: default;
}

.jcarousel-next-disabled {
background: url(../images/nav-right-disabled.gif) no-repeat 0% 50%;
cursor: default;
}
