/*--- carousel ---*/
.carousel-box {
position:relative;
width:680px;
height:200px;
text-align:center;
}
.carousel-box .prev {
position:absolute;
top:80px;
}
.carousel-box .next {
position:absolute;
left:690px;
top:80px;
}
.carousel-box .carousel {
width:680px;
overflow:hidden;
}
.carousel-box ul li {
float:left;
border:0;
margin-right:13px;
position:relative;
}
.carousel-box ul li a {
width:192px;
height:181px;
display:block;
}
/* gallery */
#wrapper {
padding-left:30px;
}
#img {
width:600px;
height:323px;
}
#gallery {
height:201px;
width:3000px;
}
#gallery li {
float: left;
cursor: pointer;
margin-right:11px;
}
.caption {
display: block;
position: absolute;
bottom: 0;
left: 0;
width: 96%;
height: 50px;
padding: 0 2%;
line-height: 50px;
color: #fff;
display:none !important;
}
.jcarousel-container {
position:relative;
padding:0;
width:600px;
}
.jcarousel-clip {
width:600px;
overflow:hidden;
}
.jcarousel-prev {
position: absolute;
top: 80px;
left: -21px;
width: 10px;
height: 19px;
cursor: pointer;
background:url("../images/prev.gif") no-repeat left top;
z-index:1000;
}
.jcarousel-prev:hover {}
.jcarousel-next {
position: absolute;
top: 80px;
left: 608px;
width: 10px;
height: 19px;
cursor: pointer;
background:url("../images/next.gif") no-repeat left top;
z-index:1000;
}
.jcarousel-next:hover {}
.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 {
background:none repeat scroll 0 0 transparent !important;
float: left !important;
list-style: none outside none !important;
/* We set the width/height explicitly. No width/height causes infinite loops. */
width: 192px;
height: 181px;
padding:0 !important;
}
/**
* 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 {
width: 10px;
height: 19px;
z-index: 3;
display: none;
}
.jcarousel-prev {
width: 10px;
height: 19px;
z-index: 3;
display: none;
}
|