/**
 * Since the content is loaded via javascript, we set
 * display:none to hide the carousel completely from browsers
 * having javascript disabled. jCarousel will show it automatically.
 */
#mycarousel {
    display: none;
}

/**
 * This <div> element is wrapped by statically around the list
 * inside the HTML document.
 */
.jcarousel-scope {
	position: relative;
    width: 410px;
    -moz-border-radius: 10px;
    background: #fff;
    border: none;
    padding: 20px 38px;
}

.jcarousel-list li {
    width: 85px;
    height: 85px; 
    margin-right: 10px;
}
.main-content-zone .jcarousel-list ul li ,
.main-content-zone .jcarousel-list  li {
	background:none;
}

/**
 * Custom item formatting.
 */
.jcarousel-list li img {
    border: 1px solid #808080;

}

.jcarousel-list li a {
    display:block;
    border: 2px solid #D4D0C8;
    outline:none;
    -moz-outline:none;
}

.jcarousel-list li a:hover {
    border: 2px solid #808080;
}

/**
 * The button-elements are added statically in the HTML document
 * to illustrate how to cutomize the prev/next controls.
 */
.jcarousel-next {
    position: absolute;
    top: 45px;
    right: 5px;
    cursor: pointer;
}

.jcarousel-next-disabled {
    cursor: default;
}

.jcarousel-prev {
    position: absolute;
    top: 45px;
    left: 5px;
    cursor: pointer;
}

.jcarousel-prev-disabled {
    cursor: default;
}

