/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-scope".
 */
.jcarousel-scope {
    position: relative;
}

/**
 * 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:249px;
	height:205px;
}

/**
 * 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".
 */

/**
 * The controls.
 */
.jcarousel-controls {
	width:243px;
	
/*	background:url(/img/bgCtrl.gif); */
    padding:2px;

	position:absolute;
	bottom:32px;
	right:4px;
	_bottom:29px;
	_right:3px;

	z-index:34;
/*	
	opacity:0.7;
	-moz-opacity:0.7;
	filter:alpha(opacity=70);
*/
}

.jcarousel-controls a:hover
{
	color:#FFCC00 !important;
}

.jcarousel-control {
    text-decoration: none;
    display: none;
    float: left;
    padding: 0 5px;
    cursor: pointer;

	font:bold 11px Arial, Helvetica, sans-serif;
    color: #fff;
	background:#000;
}

.jcarousel-control:focus,
.jcarousel-control:active {
    outline: none;
}

.jcarousel-control.actived{
	color:#000;
	background:#fff;
}