/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */

.jcarousel-container {
    position: relative;
	margin:0px auto;
	
	width: 510px;
    padding: 0px;
	padding-top:0px;
	margin:0 auto;
}
/* DIV TAG */
.jcarousel-clip {
    z-index: 2;
    padding: 0;

    overflow: hidden;
    position: relative;
	margin:0px auto;
	
	width:  425px; /* to know how much item we want display*/
    height: 20px;
}
/* UL TAG */
.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. */
    height: 20px;
}
/*
The item LI
*/
.jcarousel .jcarousel-item {
	width:100px;
	margin-right: 7px;
	text-align:center;
}
.jcarousel .jcarousel-item  img{
    max-width: 100px;
    max-height: 20px;
	cursor:pointer;
    border: none;
	vertical-align:middle;
}
/**************************
 *  Horizontal Buttons
 **************************/
.jcarousel .jcarousel-next{
    position: absolute;
    top: 4px;
    right: 0px;
    width: 12px;
    cursor: pointer;
}


.jcarousel .jcarousel-prev{
    position: absolute;
    top: 4px;
    left: 0px;
    width: 12px;
    cursor: pointer;
}

