
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 289px;
	height:95px;
	/* custom decorations */
        margin-left:25px;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:8px;
	background-color:#fff;
	padding:2px;
	cursor:pointer;
	width:76px;
	height:74px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:1px solid grey;
	z-index:1;
	position:relative;
}
/*BOTOES*/


/* this makes it possible to add next button beside scrollable */
.scrollable {float:left;}

/* prev, next, prevPage and nextPage buttons */
a.nextPage {
        background:url(../images/iconNext.gif) no-repeat;
        display:block;
	width:12px;
	height:19px;
	float:right;
	margin:40px 5px;
	cursor:pointer;
	font-size:1px;
        z-index: 10000;
}
a.prevPage {
	background:url(../images/iconPrev.gif) no-repeat;
	position: absolute;
        width:12px;
	height:19px;
        top:0px;
        left:0px;
        margin:40px 5px;
	cursor:pointer;
        font-size:1px;
        z-index: 1;
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}
