/* --------------------------------------------------------------
		Blueprint grid.css file for version 0.9.1
		Width: 918px
		Columns: 8		Column width: 106px
		Gutter width: 10px
		
		This file was generated with GridCalc (http://www.problem.se/labs/gridcalc/)
---------------------------------------------------------------*/

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

   grid.css
   * Sets up an easy-to-use grid of 24 columns.

   By default, the grid is 950px wide, with 24 columns
   spanning 30px, and a 10px margin between columns.

   If you need fewer or more columns, namespaces or semantic
   element names, use the compressor script (lib/compress.rb)

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

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


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

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

/* 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: 100px;}
.span-2 {width: 220px;}
.span-3 {width: 340px;}
.span-4 {width: 460px;}
.span-5 {width: 580px;}
.span-6 {width: 700px;}
.span-7 {width: 820px;}
.span-8 {width: 940px; margin-right: 0;}

/* Use these classes to set the width of an input. */
input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8 {
  border-left-width: 1px;
  border-right-width: 1px;
  padding-left: 5px;
  padding-right: 5px;
}

input.span-1, textarea.span-1 {width: 94px;}
input.span-2, textarea.span-2 {width: 210px;}
input.span-3, textarea.span-3 {width: 326px;}
input.span-4, textarea.span-4 {width: 442px;}
input.span-5, textarea.span-5 {width: 558px;}
input.span-6, textarea.span-6 {width: 674px;}
input.span-7, textarea.span-7 {width: 790px;}
input.span-8, textarea.span-8 {width: 906px;}

/* Add these to a column to append empty cols. */

.append-1 {padding-right: 120px;}
.append-2 {padding-right: 240px;}
.append-3 {padding-right: 360px;}
.append-4 {padding-right: 480px;}
.append-5 {padding-right: 600px;}
.append-6 {padding-right: 720px;}
.append-7 {padding-right: 840px;}

/* Add these to a column to prepend empty cols. */

.prepend-1 {padding-left: 120px;}
.prepend-2 {padding-left: 240px;}
.prepend-3 {padding-left: 360px;}
.prepend-4 {padding-left: 480px;}
.prepend-5 {padding-left: 600px;}
.prepend-6 {padding-left: 720px;}
.prepend-7 {padding-left: 840px;}

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

/* Border with more whitespace, spans one column. */
.colborder {
  padding-right: 62px;
  margin-right: 63px;
  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: -116px;}
.pull-2 {margin-left: -232px;}
.pull-3 {margin-left: -348px;}
.pull-4 {margin-left: -464px;}
.pull-5 {margin-left: -580px;}
.pull-6 {margin-left: -696px;}
.pull-7 {margin-left: -812px;}
.pull-8 {margin-left: -928px;}

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

.push-1 {margin: 0 -116px 1.5em 116px;}
.push-2 {margin: 0 -232px 1.5em 232px;}
.push-3 {margin: 0 -348px 1.5em 348px;}
.push-4 {margin: 0 -464px 1.5em 464px;}
.push-5 {margin: 0 -580px 1.5em 580px;}
.push-6 {margin: 0 -696px 1.5em 696px;}
.push-7 {margin: 0 -812px 1.5em 812px;}
.push-8 {margin: 0 -928px 1.5em 928px;}

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


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

/* In case you need to add a gutter above/below an element */
.prepend-top {
  margin-top:1.5em;
}
.append-bottom {
  margin-bottom:1.5em;
}

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


/* 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: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow:hidden;
}
.clearfix, .container {display: block;}

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

.clear { clear:both; }
