/**
 * 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;
  text-align: center;
  left: 0;
  right: 0;
  /* adding auto-margins left and right will
     center the element horizontally!         */
  margin-left: auto;
  margin-right: auto;
}

#mycarousel2 {
  margin-left: auto;
  margin-right: auto;
}

/**
 * This <div> element is wrapped by statically around the list
 * inside the HTML document.
 */
.jcarousel-scope {
    position: relative;
    width: full;
    background: #FFFFFF;
    padding: 20px 10px;
}

/**
 * Similar styles will be applied by jCarousel. But we additionally
 * add it here for better displaying with browsers having
 * javascript disabled.
 */
.jcarousel-list {
    overflow: hidden;
    margin: 0;
    padding: 0;
    font: .9em "Trebuchet MS", arial, helvetica, sans-serif;
}

.jcarousel-list li {
    margin-right: 10px;
}

/**
 * Custom item formatting.
 */
.jcarousel-list li img {
    border: 1px solid #808080;
    -moz-outline:none;
    text-align: center;

}

.jcarousel-list li a {
    text-align: left;
}

.jcarousel-list li a:hover {
    text-align: left;
}


/**
 * The button-elements are added statically in the HTML document
 * to illustrate how to cutomize the prev/next controls.
 */
.jcarousel-next {
    position: absolute;
    top: 100px;
    right: 5px;
    cursor: pointer;
}

.jcarousel-next-disabled {
    cursor: default;
}

.jcarousel-prev {
    position: absolute;
    top: 100px;
    left: 5px;
    cursor: pointer;
}

.jcarousel-prev-disabled {
    cursor: default;
}

#display {
    clear: both;
    width: auto;
    height: 100px;
    overflow: auto;
    border: 1px solid #666;
    background-color: #fcfcfc;
    padding: 10px;
}

/**
 * Loading indicator
 */
.loading {
    position: absolute;
    top: 5px;
    right: 5px;
    display: none;
}

.loading2 {
    display: none;
}