/**
 * 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 ul li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 938px;
    height: 414px;
}

.homeBottomCarousel .jcarousel-clip{
	width:630px;
	overflow:hidden;
	padding-left:11px;
}
.homeBottomCarousel .jcarousel-item{
	float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 320px;
    height: 130px;
	}
/**
 * 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".
 */
/**
 *  Horizontal Buttons
 */
.homeTopCarousel .jcarousel-next-horizontal {
    position: absolute;
    top: 162px;
    right: -122px;
    /*width: 31px;*/
	width:102px;
	height:131px;
   /* height: 79px;*/
    cursor: pointer;
    background: url(../graphics/next-horizontal-trans.png) no-repeat 0 0;
}
.homeTopCarousel .jcarousel-prev-horizontal {
    position: absolute;
    top: 160px;
    left: -52px;
    width: 31px;
    height: 79px;
    cursor: pointer;
    background:url(../graphics/prev-horizontal-trans.png) no-repeat 0 0;
}
.homeBottomCarousel .jcarousel-next-horizontal {
    position: absolute;
    top: 50px;
    right: -11px;
    width: 11px;
    height: 28px;
    cursor: pointer;
    background: transparent url(../graphics/next-horizontalsmall-trans.png) no-repeat 0 0;
}
.homeBottomCarousel .jcarousel-prev-horizontal {
    position: absolute;
    top: 50px;
    left:-11px;
    width: 11px;
    height: 28px;
    cursor: pointer;
    background: transparent url(../graphics/prev-horizontalsmall-trans.png) no-repeat 0 0;
}
.homeTopCarousel .jcarousel-prev-disabled { display:none !important;}