/**
 * Grid
 */
#grid{

    /* Vertical grid lines */
    background: url(../images/grid.png) repeat-y 0 0;

    /* Dimensions - same width as your grid with gutters */
    width: 984px;

    /* Grid (centered) */
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -492px;

	overflow:hidden;

}

/**
 * Horizontal grid lines, defined by your base line height
 *
 * Remember, the CSS properties that define the box model:
 * visible height = height + borders + margins + padding
 */
#grid .horiz{

    /* 20px line height */
    height: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 0;

}
