/************* G R I D ******************/

/*
	960 / 12 = 80 (brutto),	80-20 = 60 (netto), 20 / 2 = 10
	
	960 / 20 = 48,			48 -6 = 42,			6 / 2 =  3
*/

.grid_1 { width:42px; } /* netto width */
.grid_2 { width:90px; } /* + brutto width */
.grid_3 { width:138px; }
.grid_4 { width:186px; }
.grid_5 { width:234px; }
.grid_6 { width:282px; }
.grid_7 { width:330px; }
.grid_8 { width:378px; }
.grid_9 { width:426px; }
.grid_10 { width:474px; }
.grid_11 { width:522px; }
.grid_12 { width:570px; }
.grid_13 { width:618px; }
.grid_14 { width:666px; }
.grid_15 { width:714px; }
.grid_16 { width:762px; }
.grid_17 { width:810px; }
.grid_18 { width:858px; }
.grid_19 { width:906px; }
.grid_20 { width:954px; } /* total width - gutter */

.column {
	overflow: hidden;
	float: left;
	display: inline;
	margin: 0 0 0 6px;
}

.row {
	width: 966px;
	margin: 0 auto;
	overflow: hidden;
}

.rowlast {
	padding-bottom: 6px;
}

.rowfirst {
	padding-top: 6px;
}

.row .row {
	margin: 0 -6px; /* gutter/2 */
	width: auto;
}

/*IE6*/
.row .row {
	_display: inline-block; /*?? was there for all, but only needed for iE6*/
}

