/**
 * 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: 430px;
    background: #d4d0c8;
    border-top: 10px solid #fff;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    padding: 3px 25px;
}

div.jcarousel-clip {
    margin-left: 13px !important;    
    background-color: #d4d0c8;
}

.jcarousel-list li {
    width: 75px;
    height: 75px;
    margin-right: 7px;
}
/**
 * Custom item formatting.
 */
.jcarousel-list li img {
    /*border: 1px solid #003876;*/
}
.jcarousel-list li a {
    display:block;
    border: 2px solid #286dbb;
    outline:none;
    -moz-outline:none;
}
.jcarousel-list li a:hover {
    border: 2px solid #003876;
}

/**
 * The button-elements are added statically in the HTML document
 * to illustrate how to cutomize the prev/next controls.
 */
.jcarousel-next {
    position: absolute;
    top: 23px;
    right: 0px;
    cursor: pointer;
}
.jcarousel-next-disabled {
    cursor: default;
}
.jcarousel-prev {
    position: absolute;
    top: 23px;
    left: 0px;
    cursor: pointer;
}
.jcarousel-prev-disabled {
    cursor: default;
}
/**
 * Loading indicator
 */
.loading {
    position: absolute;
    top: 0px;
    right: 0px;
    display: none;
}