/* -------------------------------------------------------------- 
  
  BLUEPRINT CSS
   * Filename:        grid.css
   * Version:         0.6 (2007-09-21) YYYY-MM-DD
   * Website:         http://code.google.com/p/blueprintcss/
  
  Generated by:
   * Blueprint CSS Grid Generator (2007-12-15) [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:            895 px
   * Number of columns:     10
   * Column width:          76 px
   * Margin width:          15 px
  ======================================
   
  By default, the grid is 895px wide, with 10 columns 
  spanning 76px, and a 15px 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. */
.container {
  width: 895px;
  margin: 0 auto;
}


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

/* Use this class together with the .span-x classes
   to create any composition of columns in a layout. */
   
.column {
  float: left;
  margin-right: 15px;
}


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

/* Use these classes to set the width of a column. */
.span-1  { width: 76px;}
.span-2  { width: 167px;}
.span-3  { width: 258px;}
.span-4  { width: 349px;}
.span-5  { width: 440px;}
.span-6  { width: 531px;}
.span-7  { width: 622px;}
.span-8  { width: 713px;}
.span-9  { width: 804px;}
.span-10 { width: 895px; margin: 0; }


/* Add these to a column to append empty cols. */
.append-1  { padding-right: 91px;}
.append-2  { padding-right: 182px;}
.append-3  { padding-right: 273px;}
.append-4  { padding-right: 364px;}
.append-5  { padding-right: 455px;}
.append-6  { padding-right: 546px;}
.append-7  { padding-right: 637px;}
.append-8  { padding-right: 728px;}
.append-9  { padding-right: 819px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 91px;}
.prepend-2  { padding-left: 182px;}
.prepend-3  { padding-left: 273px;}
.prepend-4  { padding-left: 364px;}
.prepend-5  { padding-left: 455px;}
.prepend-6  { padding-left: 546px;}
.prepend-7  { padding-left: 637px;}
.prepend-8  { padding-left: 728px;}
.prepend-9  { padding-left: 819px;}



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

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right:69.5px;
  margin-right:68.5px;
  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. */
.pull-1 { margin-left: -91px;}
.pull-2 { margin-left: -182px;}
.pull-3 { margin-left: -273px;}
.pull-4 { margin-left: -364px;}


.push-0  { margin: 0 0 0 18px; float: right; } /* Right aligns the image. */
.push-1 { margin: 0 -91px 0 18px; float: right;}
.push-2 { margin: 0 -182px 0 18px; float: right;}
.push-3 { margin: 0 -273px 0 18px; float: right;}
.push-4 { margin: 0 -364px 0 18px; float: right;}

.push-0, .push-1, .push-2, .push-3, .push-4 { float: right; }


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

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

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.4em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}

/* 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; }
