/* ================ */
/* = The 1Kb Grid = */     /* STRUTTURA DELLA GRIGLIA */
/* ================ */

/* codice base - non aggiungere altro */
/* DEFINIZIONE COLONNE GRIGLIA: 6 COLONNE / LARGHEZZA 150px/col. */
/* ============================================================ */


.grid_1 {	width:	150px;	}	/* BASE*/
.grid_2 {	width:	310px;	}	/* 2*base + 2*margin (.column) = 2*150 + 2*5 = 310 */
.grid_3 {
	width:	460px;
	background-image: url(SFONDO_TIT.jpg);
	background-repeat: no-repeat;
	background-position: center;
}	/* 3*base + 4*margin (.column) = 3*150 + 4*5 = 470 */
.grid_4 {	width:	630px;	}	/* 4*base + 6*margin (.column) = 4*150 + 6*5 = 630 */
.grid_5 {	width:	790px;	}	/* 5*base + 8*margin (.column) = 5*150 + 8*5 = 790 */
.grid_6 {
	width:	960px;
	background-color: #FFFFFF;
}	/* 6*base +10*margin (.column) = 6*150 +10*5 = 950 */
				
.column {				
	margin: 0 	5px;		
	overflow: hidden;			
	float: left;			
	display: inline;		}	
				
				
.row {	width:	960px;		/* Val. MAX della colonna + 2*margin (.column) = 950 + 10 = 960px */
	margin: 0 auto;			
	overflow: hidden;
	}	
				
				
				
.row .row {	margin: 5px 	-5px;		/* Inserisce il valore negativo del margin (.column) */
	width: auto;			
	display: inline-block;		
	}
