/**
 * 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: 860px;
    _width: 950px;
    -moz-border-radius: 10px;
    background: #222222;;
    border: 1px solid #808080;
    padding: 20px 45px;
   margin-left: 20px;
    _margin-left: 0px;
}

.jcarousel-list li {
    width: 81px;
    height: 81px;
    margin-right: 7px;
}

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

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

.jcarousel-list li a:hover {
    border: 1px solid #d35447;
}

/**
 * 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;
}

/**
 * Loading indicator
 */
.loading {
    position: absolute;
    top: 0px;
    right: 0px;
    display: none;
}

