@charset "UTF-8";
/* CSS Document */

/*==================================================
                          Grid 
====================================================*/

#grid {
	/* Dimensions - same width as your grid with gutters */
    width: 1020px;
	/* Grid (left-aligned)
    position: absolute;
    top: 0;
    left: 0;
    */

    /* Grid (centered) */
    position: absolute;
	top: 0;
	left: 50%;
	margin-left: -510px;
	background-image: url(../img/bg-grid-960_24-Col.png);
	background-repeat: repeat-y;
	background-position: 0 0;
}
/*----------Classes for multiple grids --------------------
 
 * When using more than one grid, remember to set the numberOfGrids 
 * option in the hashgrid.js file. */

/*#grid.grid-1 {
	background-image: url(../img/bg-grid-980.gif);
	background-repeat: repeat-y;
	background-position: 0 0;
}
#grid.grid-2 {
    padding: 0 160px;
	width: 660px;
	background-image: url(../img/bg-grid-660.gif);
	background-repeat: repeat-y;
	background-position: 160px 0;
}*/
/**
 * 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 div.horiz {
	/* 20px line height */
    height: 18px;
	border-bottom: 1px dotted #aaa;
	margin: 0;
	padding: 0;
}
