/* CSS Document */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
div.scrolable_video {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 385px;
	height:255px;
	float: left;
	/*padding:0.1em 0em;*/
}

/*
	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 the width and height for the root element and
	not for this element.
*/
div.scrolable_video div.video_items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
div.scrolable_video div.video_items div.unVideo {
	float:left;
	width: 175px;
	height:180px;
}

/* active item 
div.scrolable_video .active {
	border:2px solid #000;
	z-index:9999;
	position:relative;
}
*/
/* prev, next, prevPage and nextPage buttons */
a.browse_v {
	display:block;
	width:27px;
	height:27px;
	float:left;
	/*margin:6px 10px;*/
	cursor:pointer;
}

/* right */
a.browse_v.right {display:block; width:27px; height:27px; background-image:url(../imagenes/interfaz/btn_sig.png); background-repeat:no-repeat; background-position: 0px 0px; clear:right; margin-right: 0px;}
a.browse_v.right:hover{ background-image:url(../imagenes/interfaz/btn_sig.png); background-repeat:no-repeat; background-position:0px -27px; }
a.browse_v.right:active{  background-image:url(../imagenes/interfaz/btn_sig.png); background-repeat:no-repeat; background-position:0px -54px; } 


/* left */
a.browse_v.left{display:block; width:27px; height:27px; background-image:url(../imagenes/interfaz/btn_ant.png); background-repeat:no-repeat;  background-position: 0px 0px;  margin-left: 0px; } 
a.browse_v.left:hover {background-image:url(../imagenes/interfaz/btn_ant.png); background-repeat:no-repeat; background-position:0px -27px; }
a.browse_v.left:active {background-image:url(../imagenes/interfaz/btn_ant.png); background-repeat:no-repeat; background-position:0px -54px; }
