/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/

.jcarousel-wrapper{
    width: 935px;
    height: 65px;
    float: left;
}

.jcarousel {
    position: relative;
    overflow: hidden;
}

.jcarousel img{
   -webkit-filter: grayscale(100%);
   -moz-filter: grayscale(100%);
   -ms-filter: grayscale(100%);
   -o-filter: grayscale(100%);
   filter: grayscale(100%);
   filter: url(grayscale.svg#greyscale); /* Firefox 4+ */
   filter: gray; /* IE 6-9 */
   opacity: 0.4;
}
.jcarousel img:hover{
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: none;
    opacity: 1.0;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
}

.jcarousel-control-prev {    
    float: left;
    width: 18px;
    height: 65px;
    background: url('../images/carousel_arr_left.png') no-repeat;
    margin-top: 5px;
    margin-right: 30px;
    opacity: 0.1;
}

.jcarousel-control-prev:hover {
    opacity: 0.2;
}

.jcarousel-control-next {
    float: left;
    width: 18px;
    height: 65px;
    background: url('../images/carousel_arr_right.png') no-repeat;
    margin-top: 5px;
    margin-left: 30px;
    opacity: 0.1;
}
.jcarousel-control-next:hover {
    opacity: 0.2;
}