/* -------------------------------------------------------------- 
   
   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 (2009-07-26) [http://kematzy.com/blueprint-generator/]

   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:            970 px
    * Number of columns:     14
    * Column width:          60 px
    * Margin width:          10 px
   ======================================

   By default, the grid is 970px wide, with 14 columns 
   spanning 60px, and a 10px 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

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



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

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14 {float:left; margin-right: 10px; }


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


/* Use these classes to set the width of a column. */
.span-1  { width: 60px;}
.span-2  { width: 130px;}
.span-3  { width: 200px;}
.span-4  { width: 265px;}
.span-5  { width: 340px;}
.span-6  { width: 410px;}
.span-7  { width: 480px;}
.span-8  { width: 550px;}
.span-9  { width: 620px;}
.span-10 { width: 690px;}
.span-11 { width: 760px;}
.span-12 { width: 830px;}
.span-13 { width: 900px;}
.span-14, div.span-14 { width: 970px; margin: 0; }


/* Misc classes and elements
-------------------------------------------------------------- */

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: .5em 1.25em 1.5em 1.25em; 
  margin-bottom: .625em; 
  background: #eee; 
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */
.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container { display: inline-block; }
* html .clearfix,
* html .container { height: 1%;}
.clearfix, .container { display: block; }


/* Regular clearing
   apply to column that should drop below previous ones. */
.clear { clear: both; }
