/* --------------------------------------------------------------

  BLUEPRINT CSS
   * Filename:        grid.css
   * Version:         0.5 (2007-08-28) YYYY-MM-DD
   * Website:         http://code.google.com/p/blueprintcss/

  Generated by:
   * Blueprint CSS Grid Generator (2008-03-27) [http://blueprint-generator.kaizeku.com/]

  Based on work by:
   * Olav Bjorkoy      [bjorkoy.com]
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Khoi Vinh         [subtraction.com]

  == STRUCTURE: ========================
   * Page width:            924 px
   * Number of columns:     12
   * Column width:          66 px
   * Margin width:          12 px
  ======================================

  By default, the grid is 924px wide, with 12 columns
  spanning 66px, and a 12px margin between columns.

  If you need fewer or more columns, use this formula to calculate
  the new total width:

  Total width = (number_of_columns * column_width) - margin_width

-------------------------------------------------------------- */

body {
  text-align: center; /* IE6 Fix */
}

/* A container should group all your columns. */
.container {
  text-align: left;
  position: relative;
  padding: 0;
  margin: 0 auto;   /* Centers layout */
  width: 924px;     /* Total width */
}


/* Columns
-------------------------------------------------------------- */

/* Use this class together with the .span-x classes
   to create any composition of columns in a layout.
   Nesting columns works like a charm (remember .first and .last). */

.column {
  float: left;
  margin-right: 12px;
  padding: 0;
}
* html .column { overflow-x: hidden; } /* IE6 fix */

/* Add this class to a column if you want a border on its
   right hand side. This should be customized to fit your needs. */

.border {
  padding-right: 5px;
  margin-right: 6px;
  border-right: 1px solid #ddd;
}

/* Use these classes to set how wide a column should be. */
.span-1  { width: 66px}
.span-2  { width: 144px}
.span-3  { width: 222px}
.span-4  { width: 300px}
.span-5  { width: 378px}
.span-6  { width: 456px}
.span-7  { width: 534px}
.span-8  { width: 612px}
.span-9  { width: 690px}
.span-10 { width: 768px}
.span-11 { width: 846px}
.span-12 { width: 924px; margin: 0}


/* The last element in a multi-column block needs this class. */
.last     { margin-right: 0; }

/* Add these to a column to append empty cols. */
.append-1  { padding-right: 78px}
.append-2  { padding-right: 156px}
.append-3  { padding-right: 234px}
.append-4  { padding-right: 312px}
.append-5  { padding-right: 390px}
.append-6  { padding-right: 468px}
.append-7  { padding-right: 546px}
.append-8  { padding-right: 624px}
.append-9  { padding-right: 702px}
.append-10 { padding-right: 780px}
.append-11 { padding-right: 858px}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 78px}
.prepend-2  { padding-left: 156px}
.prepend-3  { padding-left: 234px}
.prepend-4  { padding-left: 312px}
.prepend-5  { padding-left: 390px}
.prepend-6  { padding-left: 468px}
.prepend-7  { padding-left: 546px}
.prepend-8  { padding-left: 624px}
.prepend-9  { padding-left: 702px}
.prepend-10 { padding-left: 780px}
.prepend-11 { padding-left: 858px}



/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }
.clear:after, .container:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }



/* Images
-------------------------------------------------------------- */


/* Use these classes to make an image flow into the column before
   or after it. This technique can also be used on other objects. */

.pull-1 { margin-left: -78px}
.pull-2 { margin-left: -156px}
.pull-3 { margin-left: -234px}
.pull-4 { margin-left: -312px}



.push-0  { margin: 0 0 0 18px; float: right; } /* Right aligns the image. */
.push-1 { margin: 0 -78px 0 18px; float: right}
.push-2 { margin: 0 -156px 0 18px; float: right}
.push-3 { margin: 0 -234px 0 18px; float: right}
.push-4 { margin: 0 -312px 0 18px; float: right}


.pull-1, .pull-2, .pull-3, .pull-4,
.push-1, .push-2, .push-3, .push-4 {
  overflow-x: visible; /* Overrides previous IE6 fix (needs improvement). */
}

/* EOF */