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

   == STRUCTURE: ========================
    * Page width:            796 px
    * Number of columns:     6
    * Column width:          126 px
    * Margin width:          10 px
   ======================================

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

/* A container should group all your columns. */
.container {
  width: 800px;
}

/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(grid.png); 
}

/* 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 {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: 120px;}
.span-6, div.span-6 { width: 830px; margin: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 120px;}
.span-2  { width: 250px;}
.span-3  { width: 500px; padding-left: 5px;}
.span-4  { width: 490px;}
.span-5  { width: 615px;}
.span-6, div.span-6 { width: 865px; margin: 0; }

/* Add these to a column to append empty cols. */
.append-1  { padding-right: 0px;}
.append-2  { padding-right: 250px;}
.append-3  { padding-right: 375px;}
.append-4  { padding-right: 500px;}
.append-5  { padding-right: 625px;}
.append-6  { padding-right: 750px;}


/* Add these to a column to prepend empty cols. */
/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 0px;}
.prepend-2  { padding-left: 136px;}
.prepend-3  { padding-left: 395px;}
.prepend-4  { padding-left: 500px;}
.prepend-5  { padding-left: 625px;}
.prepend-6  { padding-left: 750px;}



/* Border on right hand side of a column. */
div.border {
  padding-right:4px;
  margin-right: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: -125px;}
.pull-2 { margin-left: -250px;}
.pull-3 { margin-left: -375px;}
.pull-4 { margin-left: -500px;}
.pull-5 { margin-left: -625px;}
.pull-7 { margin-left: -875px;}

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


.push-1 { margin: 0 -125px 1.5em 125px;}
.push-2 { margin: 0 -250px 1.5em 250px;}
.push-3 { margin: 0 -375px 1.5em 375px;}
.push-4 { margin: 0 -500px 1.5em 500px;}
.push-5 { margin: 0 -625px 1.5em 625px;}
.push-6 { margin: 0 -750px 1.5em 750px;}

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



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

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