/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
	float: left;
}

.jcarousel-container a{
	margin: 0 !important;
	padding: 0 !important;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    width: 148px;
    height: 100px;
	overflow: hidden;
	text-align: center;
	position:relative;
}

.jcarousel-item  a{
	display:block;
}

.jcarousel-item  span{
	position:absolute;
	left:0;
	bottom:0;
	color:#EA4124;
	font-weight:bold;
	background: #fff;
	padding:4px;
	width:148px;
	text-align:left;
	filter:Alpha(opacity=70); /* Filtro para IE */
	opacity:0.7;
}

/**
 * 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 {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}
/**
 * Configuração do layout
 */

.jcarousel-container-horizontal {
    width: 800px;
    padding: 15px 10px;
	margin: auto;
}

.jcarousel-clip-horizontal {
    width:  800px;
	margin: auto;
    height: 102px;
}
.jcarousel-clip-horizontal img{
	border: 0;
}

.jcarousel-item-horizontal {
    margin: 0 5px;
	border: 1px #999 solid;
}

.jcarousel-item-horizontal img{
    margin:0;
}

/**
 *  Horizontal Buttons
 */

.jcarousel-next-horizontal {
    position: absolute;
    top: 60px;
    right: 0px;
    width: 9px;
    height: 17px;
    cursor: pointer;
    background: transparent url(../images/arrow_right.gif) no-repeat 0 0;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
	background: transparent url(../images/arrow_right_des.gif) no-repeat 0 0;
}
.jcarousel-prev-horizontal {
    position: absolute;
    top: 60px;
    left: 0px;
    width: 9px;
    height: 17px;
    cursor: pointer;
    background: transparent url(../images/arrow_left.gif) no-repeat 0 0;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
	background: transparent url(../images/arrow_left_des.gif) no-repeat 0 0;
}
