/**
 * 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: 924px;
    height: 500px;
}

.jcarousel-item div div {
	 height: 500px;
}

/**
 * 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-skin .jcarousel-container-horizontal {
    width: 924px;
}

.jcarousel-skin .jcarousel-container-vertical {
	width: 924px;
     height: 500px;
    padding: 0;
}

.jcarousel-skin .jcarousel-clip-horizontal {
    width:  924px;
    height: 500px;
}

.jcarousel-skin .jcarousel-clip-vertical {
    width:  924px;
     height: 500px;
}

.jcarousel-skin .jcarousel-item {
    width: 924px;
     height: 500px;
}

.jcarousel-skin .jcarousel-item-horizontal {
    margin: 0;
}

.jcarousel-skin .jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-skin .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}

/* -----------------*/

.jcarousel-control {
    text-align: center;
}

.jcarousel-control a:focus,
.jcarousel-control a:active {
    outline: none;
}


.jcarousel-scroll {
    height:24px;
}
.jcarousel-scroll form {
    margin: 0;
    padding: 0;
}
.jcarousel-scroll select {
    font-size: 75%;
}





/* ==================== Customization */

#jcarousel-control-box {
	position: relative;
	width: 100%; height: 33px;
	margin-top: 20px;
}

.jcarousel-control {
	position: absolute; top: 0; left: 50%;
	overflow: hidden;
	margin-left: -132px;
}

.jcarousel-control a {
	float: left;
	display: block;
	width: 33px; height: 33px;
	background: transparent url(../img/paging-buttons.gif) no-repeat -66px 0;
	text-align: center; line-height: 31px; text-decoration: none;
	color: #333;
}
.jcarousel-control a:hover, .jcarousel-control a.active {
	background-position: -66px -33px;
	text-decoration: none;
	color: #fff;
}
#mycarousel-prev {
	display: block; overflow: hidden; float: left;
	width: 33px; height: 0; padding-top: 33px; 
	background: transparent url(../img/paging-buttons.gif) no-repeat 0 0;
	cursor: pointer;
}
#mycarousel-prev:hover {
	background-position: 0 -33px;
}
#mycarousel-next {
	display: block; overflow: hidden; float: right;
	width: 33px; height: 0; padding-top: 33px; 
	background: transparent url(../img/paging-buttons.gif) no-repeat -33px 0;
	cursor: pointer;
}
#mycarousel-next:hover {
	background-position: -33px -33px;
}
