/**
 * 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 statically wraps around the list
 * inside the HTML document.
 */
.jcarousel-scope {
    position: relative;
    width: 535px;
    background: #94211c;
    padding: 0 35px;
    margin: 0 0 10px 0;
}

.jcarousel-list li {
    width: 179px;
    height: 162px;
}

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

.jcarousel-list li a {
	height: 100%;
    display:block;
    outline:none;
    -moz-outline:none;
    padding: 10px;
}

.jcarousel-list li a:hover {
    background-color: #881b17;
}

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

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

.jcarousel-prev {
    position: absolute;
    top: 60px;
    left: 0px;
    cursor: pointer;
}

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

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