/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
#carousel_title {
	background: #fff url('/gfx/bg_carousel_title.gif') top left no-repeat;
	color: #fff;
	width /**/: 440px;
	width: 422px !important;
	height /**/: 35px;
	height: 28px !important;
	padding: 0;
	margin: 0;
	font-weight: normal;
	font-size: 1.5em;
	text-align:left;
	padding: 7px 0 0 18px;
}

#carousel_instruction {
	font-weight: bold;
	text-align:right;
	padding: 6px 0 0 0;
	margin: 0;
}
 
.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 {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
   width: 108px;
    height: 98px;
}

/**
 * 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;
}


/*** STYLING ***/
.jcarousel-container {
	background: #fff url('/gfx/bg_carousel.gif') top left no-repeat;
	width: 440px;
	height: 137px;
}

.jcarousel-container-horizontal {
	width /**/: 440px;
	width: 352px !important;
	height /**/: 137px;
	height: 120px !important;
    padding: 17px 44px 0 44px;
}


.jcarousel-clip-horizontal {
    width:  352px;
    height: 119px;
}


.jcarousel-item {
    width /**/: 119px;
	width: 111px !important;
    height /**/: 102px;
	height: 101px !important;
	margin-right: 7px;
	padding: 1px 0 0 1px;
	background: #fff url('/gfx/bg_carousel_item.gif') top left no-repeat;
	cursor: pointer;
}

.jcarousel-item:hover {
    background: #fff url('/gfx/bg_carousel_item_hover.gif') top left no-repeat;
}

.jcarousel-item-horizontal {
    /*margin-right: 7px;*/
}

.jcarousel-item-vertical {
    /*margin-bottom: 7px;*/
}

.jcarousel-item-placeholder {
}

/**
 *  Horizontal Buttons
 */
.jcarousel-next-horizontal {
    position: absolute;
    top: 54px;
    right: 9px;
    width: 20px;
    height: 28px;
    cursor: pointer;
    background: transparent url('/gfx/next-horizontal.gif') no-repeat 0 0;
}

.jcarousel-next-horizontal:hover {
    /*background-position: -32px 0;*/
}

.jcarousel-next-horizontal:active {
    /*background-position: -64px 0;*/
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-prev-horizontal {
    position: absolute;
    top: 54px;
    left: 9px;
    width: 20px;
    height: 28px;
    cursor: pointer;
    background: transparent url('/gfx/prev-horizontal.gif') no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover {
    /*background-position: -32px 0;*/
}

.jcarousel-prev-horizontal:active {
    /*background-position: -64px 0;*/
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}



