/*
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 {
    position: relative;
    overflow: hidden;
}

/*
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: 10000em;
    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;
    display:inline;
    width:auto;
    background:none;
    padding-left:0;
}

    .jcarousel li img {
        height: 200px;
    }
    .jcarousel-wrapper {
        position:relative;
        width: 700px;
        height: 200px;
    }
   
   @media (max-width: 600px) {
	.jcarousel-wrapper {
		position:relative;
		width: 100%;
	}
   }

    .jcarousel-link{
        line-height:200px;
        vertical-align:middle;
        text-align:center;
        display:table-cell;
        position:absolute;
        z-index:100;
        height:100%;
        width: 20px;
        font-size:18px;
        opacity: 0.6;
        font-weight:bold;
        background:white;
    }
    .jcarousel-link a {
        text-decoration:none;
        display:inline-block;
        line-height:normal;
        vertical-align: middle;
        color: black;
        font-weight:bold;
    }

    .jcarousel-link.left {
        left:0;
        top: 0;
    }
    .jcarousel-link.right {
        right:0;
        top: 0;
    }
