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

.jcarousel-container {
    position: relative;
	width: 798px;
	margin: 0 auto;
	text-align: center;
	background: url(../images/bg-jcarousel-klorane.gif) no-repeat left top;
}

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

.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: 171px;
    height: 74px;
	margin: 0;
	cursor: pointer;
}
.jcarousel-list li.Active {
	background: url(../images/bg-jcarousel-items-on.gif) repeat-x left top;
}
.jcarousel-list li a:link,
.jcarousel-list li a:visited {
	display: block;
	font-size: 1.1em;
	color: #FFFFFF;
	font-weight: bolder;
	text-transform: uppercase;
}
.jcarousel-list li.Active a {
	color: #666666 !important;
	text-decoration: none;
}
.OuterTxt {
	height: 74px;
	width: 100%;
	overflow: hidden;
	position: relative;
}
.OuterTxt[class] {
	display: table;
	position: static;
}
*:first-child+html .OuterTxt {
	position: relative;
}
.MiddleTxt {
	position: absolute;
	top: 50%;
}
.MiddleTxt[class] {
	display: table-cell;
	vertical-align: middle;
	position: static;
}
*:first-child+html .MiddleTxt {
	position: absolute;
	display: block;
	vertical-align: inherit;
	top: 50%;
}
.InnerTxt {
	position: relative;
	top: -50%;
	width: 155px;
	margin: 0 auto;
}
* html .InnerTxt {
	left: -50%;
}
html>body .InnerTxt {
	//left: -50%;
}
/* just format */
/**
 * 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;
	width: 57px;
	height: 74px;
}
	.jcarousel-next a {
		display: block;
		background: url(../images/bg-jcarousel-next.gif) no-repeat left top;
		width: 57px;
		height: 74px;
	}
.jcarousel-prev {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;	
    cursor: pointer;
	width: 57px;
	height: 74px;
}
	.jcarousel-prev a {
		display: block;
		background: url(../images/bg-jcarousel-prev.gif) no-repeat left top;
		width: 57px;
		height: 74px;
	}
div.jcarousel-next-disabled a,
div.jcarousel-next-disabled a:hover {
	background: url(../images/bg-jcarousel-next-off.gif) no-repeat left top !important;
	cursor: default;
}
div.jcarousel-prev-disabled a,
div.jcarousel-prev-disabled a:hover {
	background: url(../images/bg-jcarousel-prev-off.gif) no-repeat left top !important;
	cursor: default;
}

div.jcarousel-next a:hover {
	background: url(../images/bg-jcarousel-next-on.gif) no-repeat left top;
}
div.jcarousel-prev a:hover {
	background: url(../images/bg-jcarousel-prev-on.gif) no-repeat left top;
}
/*********************************/