
/*************** S M A L L *******************/
/* N E W S   S L I D E R */

#slider {

	/* You MUST specify the width and height */
	width:742px;
	height:319px;
	position:relative;	
	overflow:hidden;
}

#mask-gallery {
	
	overflow:hidden;	
}

#gallery {
	
	/* Clear the list style */
	list-style:none;
	margin:0;
	padding:0;
	
	z-index:0;
	
	/* width = total items multiply with #mask gallery width */
	width:900px;
	overflow:hidden;
}

#gallery li {

	
	/* float left, so that the items are arrangged horizontally */
	float:left;
}


#mask-excerpt {
	
	/* Set the position */
	position:absolute;	
	top:0;
	left:0;
	
	/* width should be lesser than #slider width */
	width:300px;
	overflow:hidden;	
	

}
	
#excerpt {
	/* Opacity setting for different browsers */
	filter:alpha(opacity=70);
	-moz-opacity:0.7;  
	-khtml-opacity: 0.7;
	opacity: 0.7;
	
	/* Clear the list style */
	list-style:none;
	margin:0;
	padding:0;
	
	/* Set the position */
	z-index:1;
	position:absolute;
	top:0;
	left:0;
	
	/* Set the style */
	width:225px;
	background-color:#009933; /* azul 2E3A6A - verde 009933 - gris 666666 */
	overflow:hidden;
	font-family:arial;
	font-size:16px;
	color:#FFFFFF;	
}

#excerpt li b{
	font-size:24px;
}

#excerpt li {
	font-weight: bold;
	padding:5px;
	
}
	
.clear {
	clear:both;	
}
