/**
 * Kill the blink before jQuery loads
 */
ul#mycarousel {
	overflow: hidden;
	height: 36px;
}
 
/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.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,
#mycarousel li {
	float: left;
	list-style: none;
	margin-right:5px;
	background:#FFFFFF none repeat scroll 0%;
	border:1px solid #7CA2A6;
	padding:1px;	
	/* We set the width/height explicitly. No width/height causes infinite loops. */
	width: 30px;
	height: 30px;
}
#mycarousel li:hover {
	border-color:#ad4211;
}

/**
 * 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-container-horizontal {
	padding: 0 27px 0 27px;
	width:386px;	
	height:36px;
}

.jcarousel-prev-horizontal {
	background:transparent url('/assets/ui/media/images/content/imgprev_off.gif') no-repeat scroll 1px 1px;
	border:1px solid #7CA2A6;
	position:absolute;
	width:17px;
	height:32px;
	left:1px;
	top:0px;
	cursor:pointer;
}
.jcarousel-prev-horizontal:hover {
	background:transparent url('/assets/ui/media/images/content/imgprev_over.gif') no-repeat scroll 1px 1px;
}
.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover {
	background:transparent url('/assets/ui/media/images/content/imgprev_inactive.gif') no-repeat scroll 1px 1px;
}
.jcarousel-next-horizontal {
	background:transparent url('/assets/ui/media/images/content/imgnext_off.gif') no-repeat scroll 1px 1px;
	border:1px solid #7CA2A6;
	position:absolute;
	width:17px;
	height:32px;
	left:420px;
	top:0px;
	cursor:pointer;
}
.jcarousel-next-horizontal:hover {
	background:transparent url('/assets/ui/media/images/content/imgnext_over.gif') no-repeat scroll 1px 1px;
}
.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover {
	background:transparent url('/assets/ui/media/images/content/imgnext_inactive.gif') no-repeat scroll 1px 1px;
}
