/* -------------------------------------------------------------- 
   
   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 (2008-11-08) [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:            940 px
    * Number of columns:     10
    * Column width:          85 px
    * Margin width:          10 px
   ======================================

   By default, the grid is 940px wide, with 10 columns 
   spanning 85px, 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

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

/* A container should group all your columns. */
.container {
  width: 940px;
  margin: 0 auto;
  background: url(../images/scratch_left.gif) no-repeat;
	padding-left:7px;

}

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

}

/* Body margin for a sensile default look. */
body {
	margin:0px;
	padding: 0px;	
}


/* 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 {float:left;margin-right: 10px;}

/*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 {float:left;margin-right: 3px;}*/


/* 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: 85px;}
.span-2  { width: 180px;}
.span-3  { width: 275px;}
.span-4  { width: 370px;}
.span-5  { width: 465px;}
.span-6  { width: 560px;}
.span-7  { width: 655px;}
.span-8  { width: 750px;}
.span-9  { width: 845px;}
.span-10, div.span-10 { width: 940px; margin: 0; }



/* Add these to a column to append empty cols. */
.append-1  { padding-right: 95px;}
.append-2  { padding-right: 190px;}
.append-3  { padding-right: 285px;}
.append-4  { padding-right: 380px;}
.append-5  { padding-right: 475px;}
.append-6  { padding-right: 570px;}
.append-7  { padding-right: 665px;}
.append-8  { padding-right: 760px;}
.append-9  { padding-right: 855px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 95px;}
.prepend-2  { padding-left: 190px;}
.prepend-3  { padding-left: 285px;}
.prepend-4  { padding-left: 380px;}
.prepend-5  { padding-left: 475px;}
.prepend-6  { padding-left: 570px;}
.prepend-7  { padding-left: 665px;}
.prepend-8  { padding-left: 760px;}
.prepend-9  { padding-left: 855px;}



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

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right:83px;
  margin-right:80px;
  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: -95px;}
.pull-2 { margin-left: -190px;}
.pull-3 { margin-left: -285px;}
.pull-4 { margin-left: -380px;}
.pull-5 { margin-left: -475px;}
.pull-6 { margin-left: -570px;}
.pull-7 { margin-left: -665px;}
.pull-8 { margin-left: -760px;}
.pull-9 { margin-left: -855px;}
.pull-10 { margin-left: -950px;}

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


.push-1 { margin: 0 -95px 1.5em 95px;}
.push-2 { margin: 0 -190px 1.5em 190px;}
.push-3 { margin: 0 -285px 1.5em 285px;}
.push-4 { margin: 0 -380px 1.5em 380px;}
.push-5 { margin: 0 -475px 1.5em 475px;}
.push-6 { margin: 0 -570px 1.5em 570px;}
.push-7 { margin: 0 -665px 1.5em 665px;}
.push-8 { margin: 0 -760px 1.5em 760px;}
.push-9 { margin: 0 -855px 1.5em 855px;}
.push-10 { margin: 0 -950px 1.5em 950px;}

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



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

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

/* 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.45em;
  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] */

.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; }
