/* ------------------------------------------------------------------ */
/* Fitzgerald 9 Zone Grid - 2 Columns, 1 Header and 1 Footer */
/* ------------------------------------------------------------------ */

/* Clamp the entire content of the page to a fixed width,
 * and center it.
 */
div#gridClamp {
    width: 980px;
    margin: 0 auto;
}

/* Main content div, below the navigation. Here basically to provide
 * a background color.
 */
div#gridMain {
    position: relative;
    width: 980px;
    
    /* We need to float this element because it contains only floated 
     * elements. If we didn't, the computed height would be 0, because
     * floated elements are not usually part of the computed height of
     * the containing block. Making this element float ensures that the
     * floated child elements are part of the computed height.
     * See the CSS 2.1 spec, sections 10.6.6 and 10.6.7.
     */
    float: left;
}

div#gridMainColumn {
    clear: left;
    float: left;
    width: 790px;
    margin: 10px;
    background-color: #fff;
}

div#gridTopRow {
	float: left;
	width:	790px;
	margin-bottom: 10px;
}

div#gridSecondRow {
	float: left;
	width:	790px;
	margin-bottom: 10px;
}

div#gridSecondaryColumns {
	float: left;
	width: 790px;
	margin-bottom: 10px;
	}
	div#gridSecondaryColumnLeft {
		float: left;
		margin: 0 5px 0 0;
		width: 255px;
	}
	div#gridSecondaryColumnCenter {
		float: left;
		margin: 0 5px 0 5px;
		width: 255px;
	}
	div#gridSecondaryColumnRight {
		float: right;
		margin: 0 0 0 5px;
		width: 255px;
	}

div#gridBottomRow {
	float: left;
	width: 790px;
	margin-bottom: 10px;
}

div#gridAdSidebar {
    float: right;
    width: 160px;
    background: #fff;
    padding: 0 0 5px 5px;
	margin: 10px;
}



