
/* -------------------------------------------------------------- 
   
   BLUEPRINT CSS
    * Filename:        grid.css
    * Version:         0.7.1 (2008-02-25) YYYY-MM-DD
    * Website:         http://code.google.com/p/blueprintcss/

   Generated by:
    * Blueprint CSS Grid Generator (2012-02-16) [http://bgg.kematzy.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:            690 px
    * Number of columns:     6
    * Column width:          100 px
    * Margin width:          18 px
   ======================================

   By default, the grid is 690px wide, with 6 columns 
   spanning 100px, and a 18px 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

   Read more about using a grid here:
   * subtraction.com/archives/2007/0318_oh_yeeaahh.php
   
-------------------------------------------------------------- */

/* A container should group all your columns. */
.page-container {
  width: 690px;
  margin: 0 auto;
}

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

/* Sets up basic grid floating and margin. */
.page-span-1, .page-span-2, .page-span-3, .page-span-4, .page-span-5, .page-span-6 {float:left;margin-right: 18px;}

/* The last column in a row needs this class. */
.page-last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.page-span-1  { width: 100px;}
.page-span-2  { width: 218px;}
.page-span-3  { width: 336px;}
.page-span-4  { width: 454px;}
.page-span-5  { width: 572px;}
.page-span-6 { width: 690px; margin: 0; }


/* Add these to a column to append empty cols. */
.page-append-1  { padding-right: 118px;}
.page-append-2  { padding-right: 236px;}
.page-append-3  { padding-right: 354px;}
.page-append-4  { padding-right: 472px;}
.page-append-5  { padding-right: 590px;}


/* Add these to a column to prepend empty cols. */
.page-prepend-1  { padding-left: 118px;}
.page-prepend-2  { padding-left: 236px;}
.page-prepend-3  { padding-left: 354px;}
.page-prepend-4  { padding-left: 472px;}
.page-prepend-5  { padding-left: 590px;}



/* Border on right hand side of a column. */
.page-border {
  padding-right:8px;
  margin-right:9px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
.page-colborder {
  padding-right:94px;
  margin-right:91px;
  border-right: 1px solid #eee;
}

/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.page-pull-1 { margin-left: -118px;}
.page-pull-2 { margin-left: -236px;}
.page-pull-3 { margin-left: -354px;}
.page-pull-4 { margin-left: -472px;}
.page-pull-5 { margin-left: -590px;}
.page-pull-6 { margin-left: -708px;}

.page-pull-1, .page-pull-2, .page-pull-3, .page-pull-4, .page-pull-5, .page-pull-6 {float:left;position:relative;}


.page-push-1 { margin: 0 -118px 1.5em 118px;}
.page-push-2 { margin: 0 -236px 1.5em 236px;}
.page-push-3 { margin: 0 -354px 1.5em 354px;}
.page-push-4 { margin: 0 -472px 1.5em 472px;}
.page-push-5 { margin: 0 -590px 1.5em 590px;}
.page-push-6 { margin: 0 -708px 1.5em 708px;}

.page-push-1, .page-push-2, .page-push-3, .page-push-4, .page-push-5, .page-push-6 {float:right;position:relative;}

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

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

/* Regular clearing
   apply to column that should drop below previous ones. */

.page-clear { clear:both; }

.page-box
  {
    background-color:#e6e6e6;
    padding: .5em;
  margin-bottom: .5em;
  }
