/*
Fluid grid-thing based on a nominative 1090px width. Ish.
12-column grid with no gutters to make things much, much easier.
Each column is 80px.
E.g. 12 columns, relative to page, no indent: width = (12*80)/960 * 100
E.g.  8 columns, relative to page, 2 col indent: width = (8*80)/960 * 100; margin = (2*80)/960 * 100


*/
/* Temp for grid background 
#backgroundgrid {
    width: 100%; 
    height: 100%; 
    position: absolute; 
    left: 0px; 
    top: 0px; 
    z-index: -1;
}

.stretch {
    width:100%;
    height:100%;
}
 /Temp for grid background */

.column {
overflow: auto;
float: left;
display: inline;
}

.row {
overflow: auto; /* clear hack */
}

.toprow {
overflow: auto; /* clear hack */
}

.bottomrow {
overflow: auto; /* clear hack */
}

.grid_12_page {
width: 100%;
}

.grid_8_page {
width: 66.666%;
}

.grid_8_page_i2 {
margin-left: 16.666%;
width: 66.666%;
}


.grid_6_page {
width: 49.9%;
}

.grid_3_page {
width: 25%;
}

.grid_2_page {
width: 16.666%;
}

