/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
	position: relative;
	top: -10px;
	width: 242px;
	margin: 0px auto;
	left: 2px;
}
.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;
}
.jcarousel-list li, .jcarousel-item {
	float: left;
	list-style: none;
	/* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 70px;
	height: 70px;/*  padding: 1px;
	border: #d0d0d0 1px solid; */
}
/**
 * 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;
}
/** SKINNING **/
.jcarousel-container {
}
.jcarousel-container-horizontal {
	width: 245px;
	/* padding: 1px 0px 5px 0px;*/
	position: relative;
	/*left: -10px; */
	height: 80px;
}
.jcarousel-clip-horizontal {
	width:  242px;
	height: 75px;
	padding-top: 10px;
}
.jcarousel-item {
	width: 75px;
	height: 75px;
}
.jcarousel-item-horizontal {
/* - Removed {RT}
    margin-right: 10px !important;
	*/
}
.jcarousel-item-placeholder {
	background: #fff;
	color: #000;
}
/***  BUTTONS ***/

.jcarousel-next-horizontal {
	position: absolute;
	top: -17px;
	right: 0px;
	width: 6px;
	height: 15px;
	cursor: pointer;
	background: transparent url(../images/bulletArrow_grey-next.png) top left no-repeat;
	clear: borth;
}
.jcarousel-next-horizontal:hover {
	background-position: bottom left;
}
.jcarousel-next-horizontal:active {
	background-position: bottom left;
}
.jcarousel-next-disabled-horizontal, .jcarousel-next-disabled-horizontal:hover, .jcarousel-next-disabled-horizontal:active {
	cursor: default;
	background-position: bottom left;
}
.jcarousel-prev-horizontal {
	position: absolute;
	top: -17px;
	right: 11px;
	width: 6px;
	height: 15px;
	cursor: pointer;
	background: transparent url(../images/bulletArrow_grey-prev.png) top left no-repeat;
	clear: borth;
}
/* BACKUP

.jcarousel-prev-horizontal {
	float: left;
	position: relative;
	left: 215px;
	top: -12px;
	width: 6px;
	height: 15px;
	cursor: pointer;
	background: transparent url(../images/bulletArrow_grey-prev.png) top left no-repeat;
}
*/
.jcarousel-prev-horizontal:hover {
	background-position: bottom left;
}
.jcarousel-prev-horizontal:active {
	background-position: bottom left;
}
.jcarousel-prev-disabled-horizontal, .jcarousel-prev-disabled-horizontal:hover, .jcarousel-prev-disabled-horizontal:active {
	cursor: default;
	background-position: bottom left;
}
