/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
	width:100%;
	height:111px;
}

/**
 * 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;
	height:80px;
    list-style: none;
	padding:6px 8px 10px 6px;
	margin:0 10px;
	_margin:0 8px;
	background: url(../images/template/bg_mycarousel_li.gif) top left no-repeat;
}
.jcarousel-list li p{
text-align:center;
margin-top:5px;
font-size:0.9em;
margin-right:15px;
}
/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    width: 25px;
    height: 25px;
	float:right;
	border:1px solid #F4F1E8;
    color: #B8A6A2;
    background-color: #F4F1E8;
    font-weight: bold;
	margin-bottom:86px;
}

.jcarousel-next-disabled {
    color: #FFF;
    cursor: default;
}

.jcarousel-prev {
	float:left;
    width: 25px;
    height: 25px;
	border:1px solid #F4F1E8;
    color: #B8A6A2;
    background-color: #F4F1E8;
    font-weight: bold;
	margin-bottom:86px;
}

.jcarousel-prev-disabled {
    color: #FFF;
    cursor: default;
}
