#page {
	background-color: #ef9;
	overflow: hidden;
	min-width: 500px;
	max-width: 64em;
}
/* 3 wrapper, full width, shiftati, invece di singolo con borders come fatto in cfluid
necessari per evitare calcolo rapporti tra percentuali. Uso del minimo numero di valori
diversi, lw, cw, lc, rw, per minimizzare errori di approssimazione */
/* #out1 {
	margin-left: 25%;
	background-color: #cde;
}
#out2 {
	margin-left: 40%;
	background-color: #cce844;
}
#out {
	margin-left: -65%;
}
#out1, #out2, #out {
	width: 100%;
}
better? */
#out1, #out2, #out {
	position: relative;
}
#out1 {
	left: 25%;
	background-color: #cde;
}
#out2 {
	left: 40%;
	background-color: #cce844;
}
#out {
	left: -65%;
}

#center {
	width: 40%;
	margin-left: 25%;
}
#left {
	width: 25%;
	/* margin-left: -65%;
	better? */
	margin-left: -25%;
	left: -40%;
}
#right {
	width: 35%;
	margin-right: -35%;
}
