@charset "utf-8";
/* CSS Document */

/* the overlayed element */ 
div.overlay { 
     
    /* growing background image */ 
    background-image:url(images/white.png); 
     
    /* dimensions after the growing animation finishes  */ 
    width:600px; 
    height:470px;         
     
    /* initially overlay is hidden */ 
    display:none; 
     
    /* some padding to layout nested elements nicely  */ 
    padding:55px; 
} 
 
/* default close button positioned on upper right corner */ 
div.overlay div.close { 
    background-image:url(images/close.png); 
    position:absolute; 
    right:5px; 
    top:5px; 
    cursor:pointer; 
    height:35px; 
    width:35px; 
} 
 
 
/* black */ 
div.overlay.black { 
    background:url(images/transparent.png) no-repeat    !important; 
    color:#fff; 
} 
 
/* petrol */ 
div.overlay.petrol { 
    background:url(images/petrol.png) no-repeat    !important; 
    color:#fff; 
} 
 
div.black h2, div.petrol h2 { 
    color:#ddd;         
}

	/* root element for scrollable */ 
	div.scrollable {
	/* required settings */ 
		position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */     
	height: 186px;
	width: 763px;
	} 
	 
	/* root element for scrollable items */ 
	div.scrollable div.items {     
			background-image:url(../n_imagenes/home2009/novedade_nav/back_square.png);
			background-repeat:repeat;
		position:absolute; 
		 width: 763px;
		/* this time we have very large space for height */     
		height:980px;
		float:top;     
	}
	
	div.scrollable div.items div{     
			height: 186px;
			width: 763px;
			
     
	}
	div.scrollable div.items div div{ 
/*		background: #ffffff; */
			float:left;
			height: 186px;
			width: 238px;
			margin-left:6px;
	margin-right: 8px;
}
	
		div.scrollable div.items div div td{
	padding:5px;
}

	div.scrollable div.items div div a, visted{
	color: white;
	text-decoration: none;
	font-size: 14px;
	padding-right: 3px;
	padding-left: 3px;
}
	
		div.scrollable div.items div div a:hover{
	color: white;
	text-decoration: none;
	font-size: 14px;
	background-color: #474f59;
	padding-right: 3px;
	padding-left: 3px;
}
	
	
	
	
	
	
	
	