/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
    position: relative;
    overflow: hidden;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
    width: 20000em;
    position: relative;

    /* Optional, required in this case since it's a <ul> element */
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
    /* Required only for block elements like <li>'s */
    float: left;
}
.jcarousel-control-prev{
	position: absolute;
	background-image: url(../imagenes/flecha-izq.png);
	background-repeat: no-repeat;
	height: 37px;
	width: 15px;	
	margin-left:0px;
	margin-top:-270px;
	cursor:pointer;
	z-index:99;
	opacity:.75;
	background-color:#999;
	padding:5px;
	background-position: 7px 5px;
}
.jcarousel-control-next{
	position: absolute;
	background-image: url(../imagenes/flecha-der.png);
	background-repeat: no-repeat;
	height: 37px;
	width: 15px;
	margin-left: 875px;
	margin-top: -270px;
	cursor: pointer;
	z-index: 99;
	opacity: .75;
	background-color: #999;
	padding: 5px;
	background-position: 8px 4px;
	}
.jcarousel-control-prev:hover{
	background-color: #F99;
	}
	.jcarousel-control-next:hover{
	background-color: #F99;
	}