@charset "utf-8";

/* http://hashgrid.com/ */

/**
 * Grid
 */
#grid {
    /* Vertical grid lines */
    background: url(hashgrid.png) repeat-y 0 0;
    /* Dimensions - same width as your grid with gutters */
    width: 941px;
    /* Grid (left-aligned)
    position: absolute;
    top: 0;
    left: 0;
    */
    /* Grid (centered) */
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -470px;
}

/**
 * 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 {
    /* 10px line height */
    height: 9px;
    border-bottom: 1px dotted #aaa;
    margin: 0;
    padding: 0;
	font-size: 0px; /* Fixes a div height bug on IE6 */
	line-height: 0px;
}