/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    height: 147px;
  	left: 10px;
  	position: absolute; 
  	top: 282px;
  	width: 804px;
  	padding: 0 39px;
  	overflow: hidden;
}

.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 {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 75px;
    height: 75px;
}

/**
 * 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".
 */
a.jcarousel-next, a.jcarousel-prev {
    position: absolute;
    z-index: 3;
    display: block;
    width: 39px;
    height: 142px;
    background: url(http://automatedmachinesystems.com/images/interface/arrow-left.gif) no-repeat;
    left: 0;
    text-indent: -200px;
    overflow: hidden;
}

a.jcarousel-next {
    left: auto;
    right: 0;
    background: url(http://automatedmachinesystems.com/images/interface/arrow-right.gif) no-repeat;
}
a.jcarousel-prev:hover { background-image: url(http://automatedmachinesystems.com/images/interface/arrow-left-on.gif); }
a.jcarousel-next:hover { background-image: url(http://automatedmachinesystems.com/images/interface/arrow-right-on.gif); }

.jcarousel-clip-horizontal {
 width: 100%;
}

.jcarousel-item {
 height: 100%;
}