/*
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 {
	float:left;
	width:100%;
	height:800px;
	margin-left:50px;
    overflow: hidden;
	position:relative;
	right:0;
}


/*
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;
	 position: relative;
	padding-right: 40px;
}



@media screen and (min-width : 481px) and (max-width : 768px){
	
.jcarousel{
	margin-left:70px;
	width:75%;	
}




}

@media only screen 
and (min-width : 320px) 
and (max-width : 480px) { 

.jcarousel {
	width:100%;
	height:auto;
	margin-left:0;
}
.jcarousel ul,
.jcarousel li{
	width:100%;
	display:block;
}
.jcarousel img.imagen_prensa{
	margin-left:40px;
	margin-bottom:40px;
	width:80%;
	height:auto;
}
}