/*  Horizontal Carousel */

.jcarousel-container-horizontal {
margin:0 auto;
width:960px;
padding:0;
}

.jcarousel-clip-horizontal {
position:relative; 
width:960px;
height:160px;
overflow:hidden;
}

.jcarousel-clip-horizontal ul {
position:relative;
left:0;
top:0;
margin:0;
padding:0;
width:960px;
overflow:hidden;
}

.jcarousel-clip-horizontal li {
border-right:1px solid #222;
width:220px;
height:160px;
margin:0 10px;
padding:0 40px;
float:left;
list-style:none;
}



/*  Horizontal Buttons */

.jcarousel-prev-horizontal, .jcarousel-next-horizontal {
position:absolute;
top:0px;
width:10px;
height:70px;
cursor:pointer;
border-top:45px solid #0d0d0d;
border-bottom:45px solid #0d0d0d;
}

.jcarousel-next-horizontal {
right:0px;
background:#0d0d0d url(../images/next-horizontal.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal {
left:0px;
background:#0d0d0d url(../images/prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover, .jcarousel-prev-horizontal:hover {
background-position:0 -70px;
}


