@charset "UTF-8";
/* CSS Document */
/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 100%;
    height:400px;
	left:35px;	
	
} 
 
/* 
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super 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 */ 
    height:20000em; 
    position:absolute;
	width:100%;
} 
 
/* 
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 

div.scrollable div.items div { */
 div.scrollable .cntItem { 
    float:left;
	width:315px;
	height:190px;
	margin-right:10px;
	cursor:move;
	margin-bottom:10px;
	padding:2px;
	background-image:url(../imagenes/seccion/noticias/fondoNoticia.png);
	background-repeat:no-repeat
} 
/* you may want to setup some decorations to active item */ 
div.items div.active { 
	width:315px;
	height:190px;
	margin-bottom:10px;
	background-image:url(../imagenes/seccion/noticias/fondoNoticiaActive.png);
	background-repeat:no-repeat;
}

/*********** navigator ***********/


/* position and dimensions of the navigator */
.tabs {
	height:100px;
	width:25px;
	list-style:none;
	left:-50px;
	position:absolute;
	margin:0;
	cursor:pointer;
	float:left;
	left:220px;
	*left:265px;
}
.tabs li{
	width:25px;
	height:30px;
	float:left;
	margin:3px;
	text-align:center;
	background:url(../imagenes/seccion/noticias/seccion.png) 0 0 no-repeat;
	color:#90062C;
	line-height:30px;
}
/* mouseover state */
.tabs li:hover {
	background:url(../imagenes/seccion/noticias/seccionActive.png) 0 0 no-repeat;
}

/* active state (current page state) */
.tabs li.active {  
	background:url(../imagenes/seccion/noticias/seccionActive.png) 0 0 no-repeat;
} 

