/**
 * 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 {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 400px;
    height: 400px;
}

/**
 * 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;
}


.tour-jcarousel-skin .jcarousel-container {
   /* -moz-border-radius: 10px;*/
	background: url(/Images/viewport-home-feature.png) no-repeat;
}

.tour-jcarousel-skin .jcarousel-container-horizontal {
    width: 800px;
    padding: 20px 80px;
}

.tour-jcarousel-skin .jcarousel-clip-horizontal {
    width:  800px;
}

.tour-jcarousel-skin .jcarousel-item {
    width: 800px;
}

.tour-jcarousel-skin .jcarousel-item-horizontal {
    margin-right: 10px;
}

.tour-jcarousel-skin .jcarousel-item-vertical {
    margin-bottom: 10px;
}

.tour-jcarousel-skin .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/**
 *  Horizontal Buttons
 */
.tour-jcarousel-skin .jcarousel-next-horizontal {
    position: absolute;
	right: -2px;
	top: 0px;
	width: 25px;
    height: 252px;
    cursor: pointer;
   background: transparent url(/Images/tile-nav-next-large.png) no-repeat 0 0;
   
}

.tour-jcarousel-skin .jcarousel-prev-horizontal {
    position: absolute;
	top: 0;
    left: 0;
    width: 25px;
    height: 252px;
    cursor: pointer;
	 background: transparent url(/Images/tile-nav-previous-large.png) no-repeat 0 0;
}

.tour-jcarousel-skin .jcarousel-next-horizontal:hover,
.tour-jcarousel-skin .jcarousel-prev-horizontal:hover {
	background-position: 0px -256px;
}



.tour-jcarousel-skin .jcarousel-next-horizontal:active,
.tour-jcarousel-skin .jcarousel-prev-horizontal:active {
	background-position: 0px -512px;
}

.tour-jcarousel-skin .jcarousel-next-disabled-horizontal,
.tour-jcarousel-skin .jcarousel-next-disabled-horizontal:hover,
.tour-jcarousel-skin .jcarousel-next-disabled-horizontal:active,
.tour-jcarousel-skin .jcarousel-prev-disabled-horizontal,
.tour-jcarousel-skin .jcarousel-prev-disabled-horizontal:hover,
.tour-jcarousel-skin .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background: none;
}




