/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 410px; 
    height:261px; 
	border:1px solid #ccc;
	
} 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a extremely large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items { 
    /* this cannot be too large */ 
    width:20000em; 
    position:absolute; 
} 
 
/* 
    a single item. must be floated in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div.unItem { 
    float:left; 
} 

div.scrollable div.items div.unItem { 
    float:left; 
} 
/*div.scrollable div.items div.unItem div.left {
  width:13%; 
  padding:2.0em;
}*/
.items div.unItem div.left {
  width:245px!important; 
  
}

/* navegador */
/* position and dimensions of the navigator */
.navi {
	/*margin-left:328px; */
	/*width:200px;*/
	/*height:20px;*/
	padding:0.6em 0.8em;
}


/* items inside navigator */
.navi a {
	width:16px;
	height:16px;
	float:left;
	margin:3px;
	background:url(../imagenes/interfaz/slide_item.gif) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -16px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -32px;     
}

/************/

/* prev, next, prevPage and nextPage buttons */
a.browse {
	display:block;
	width:27px;
	height:27px;
	float:left;
	margin:6px 1px;
	cursor:pointer;
}

/* right */
a.browse.right {display:block; width:20px; height:20px; background-image:url(../imagenes/interfaz/btn_sig.gif); background-repeat:no-repeat; background-position: 0px 0px; clear:right; margin-right: 0px;}
a.browse.right:hover{ background-image:url(../imagenes/interfaz/btn_sig.gif); background-repeat:no-repeat; background-position:0px -20px; }
a.browse.right:active{  background-image:url(../imagenes/interfaz/btn_sig.gif); background-repeat:no-repeat; background-position:0px -40px; } 


/* left */
a.browse.left{display:block; width:20px; height:20px; background-image:url(../imagenes/interfaz/btn_ant.gif); background-repeat:no-repeat;  background-position: 0px 0px;  margin-left: 0px; } 
a.browse.left:hover {background-image:url(../imagenes/interfaz/btn_ant.gif); background-repeat:no-repeat; background-position:0px -20px; }
a.browse.left:active {background-image:url(../imagenes/interfaz/btn_ant.gif); background-repeat:no-repeat; background-position:0px -40px; }

/* up and down */
a.up, a.down		{ 
	background:url(../imagenes/interfaz/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover { background-position:-30px 0; }
a.up:active { background-position:-60px 0; }

/* down */
a.down { background-position: 0 -30px; }
a.down:hover { background-position:-30px -30px; }
a.down:active { background-position:-60px -30px; } 


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

