/**
 * This &lt;div&gt; element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
    width: 630px;
    -moz-border-radius: 10px;
    background: #000000;
    padding: 2px 4px;
}

/**
 * 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;
}

.jcarousel-list li {
    float: left;
    list-style: none;
    width: 120px;
    height: 100px;
    margin-right: 0px;
    font-family: Tahoma, Verdana, Arial, "Trebuchet MS";
	font-size: 11px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
}

.jcarousel-list li a{
    float: left;
    list-style: none;
    width: 120px;
    height: 100px;
    margin-right: 0px;
    font-family: Tahoma, Verdana, Arial, "Trebuchet MS";
	font-size: 11px;
	font-weight: normal;
	color: #666666;
	text-decoration: none;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the &lt;ul&gt; list (inside the &lt;div&gt; described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    position: absolute;
    top: 30px;
    right: 3px;
    width: 12px;
    height: 48px;
    cursor: pointer;
    /*border: 1px outset #fff;*/
    color: #aaa;
    background-color: #000000;
    font-weight: bold;
}

.jcarousel-next-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}

.jcarousel-prev {
    position: absolute;
    top: 30px;
    left: 3px;
    width: 12px;
    height: 48px;
    cursor: pointer;
    /*border: 1px outset #fff;*/
    color: #aaa;
    background-color: #000000;
    font-weight: bold;
}

.jcarousel-prev-disabled {
    cursor: default;
    opacity: .5;
    -moz-opacity: .5;
    filter: alpha(opacity=50);
}
