/**
 * 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: 960px;
    height: 371px;
}

/**
 * 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;
	right:5px;
	top:165px;
	width:32px;
	height:41px;
	background:transparent url(http://kahlen-carey.com/themes/site_themes/kahlen-carey/images/arrow_right.png) center center no-repeat;
	cursor:pointer;	
}

.jcarousel-prev {
    z-index: 3;
	position:absolute;
	left:5px;
	top:165px;
	width:32px;
	height:41px;
	background:transparent url(http://kahlen-carey.com/themes/site_themes/kahlen-carey/images/arrow_left.png) center center no-repeat;
	cursor:pointer;
}

.jcarousel-container {
    border: 0px;
    position: absolute;
	margin-left: 0px;
}

.jcarousel-container-horizontal {
    width: 960px;
    height: 371px;
    padding: 0px;
}

.jcarousel-clip-horizontal {
    width: 960px;
    height: 371px;
}

.jcarousel-item {
    width: 960px;
    height: 371px;
    border: 0px;
}

/*  Adding skin by Greg  */
/*

.jcarousel-skin-home-background .jcarousel-item:hover {
    border-color: #808080;
}

.jcarousel-skin-home-background .jcarousel-item-horizontal {
    margin-right: 0px;
}

.jcarousel-skin-home-background .jcarousel-item-placeholder {
}

.jcarousel-skin-home-background .jcarousel-next-horizontal {
    position: absolute;
    top: 243px;
    right: 5px;
    width: 17px;
    height: 24px;
    cursor: pointer;
    z-index: 9999;
    background: transparent url(arrow-right.png) no-repeat 0 0;
}

.jcarousel-skin-home-background .jcarousel-next-horizontal:hover {
    background-position: 0 0;
}

.jcarousel-skin-home-background .jcarousel-next-horizontal:active {
    background-position: 0 0;
}

.jcarousel-skin-home-background .jcarousel-next-disabled-horizontal,
.jcarousel-skin-home-background .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-home-background .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: 0 0;
}

.jcarousel-skin-home-background .jcarousel-prev-horizontal {
    position: absolute;
    top: 243px;
    left: 5px;
    width: 17px;
    height: 24px;
    cursor: pointer;
    z-index: 9999;
    background: transparent url(arrow-left.png) no-repeat 0 0;
}

.jcarousel-skin-home-background .jcarousel-prev-horizontal:hover {
    background-position: 0 0;
}

.jcarousel-skin-home-background .jcarousel-prev-horizontal:active {
    background-position: 0 0;
}

.jcarousel-skin-home-background .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-home-background .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-home-background .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: 0 0;
}
*/