/* -------------------------------------------------------------- 
   
   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-08-24) [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:            980 px
    * Number of columns:     20
    * Column width:          30 px
    * Margin width:          20 px
   ======================================

   By default, the grid is 980px wide, with 20 columns 
   spanning 30px, and a 20px 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: 980px;
  margin: 0;
  margin-left:30px;
    z-index:5;
  position:relative;
  /*position:absolute; z-index:50;  left: 50%; margin-left: -490px;*/
}

/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(src/grid.png); 
}

/* Body margin for a sensile default look. */
body { 
  font-size: 75%;
  color:#666666;
  font-family:Tahoma,"Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height:1.5em;
  background: #fff url(../img/site/body_bg.jpg) no-repeat scroll -81px 0;
  margin:0;
}


/* 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, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20 {float:left;margin-right: 20px;}

/* 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: 30px;}
.span-2  { width: 80px;}
.span-3  { width: 130px;}
.span-4  { width: 180px;}
.span-5  { width: 230px;}
.span-6  { width: 280px;}
.span-7  { width: 330px;}
.span-8  { width: 380px;}
.span-9  { width: 430px;}
.span-10 { width: 480px;}
.span-11 { width: 530px;}
.span-12 { width: 580px;}
.span-13 { width: 630px;}
.span-14 { width: 680px;}
.span-15 { width: 730px;}
.span-16 { width: 780px;}
.span-17 { width: 830px;}
.span-18 { width: 880px;}
.span-19 { width: 930px;}
.span-20, div.span-20 { width: 980px; margin: 0; }


/* Border on right hand side of a column. */
div.border {
  padding-right:9px;
  margin-right:10px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right:23px;
  margin-right:20px;
  border-right: 1px solid #eee;
}


/* Headings commented out because duplicate is under typographpy.css
-------------------------------------------------------------- */

/* 

h1,h2,h3,h4,h5,h6, h7, h8 { font-weight: normal; color: #3ec8c4; }

h1 { font-size: 2.15em; line-height: 1; margin-bottom: 1em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 {  }



h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}

.h1nospace {font-weight: normal; color: #3ec8c4;font-size: 2.15em;}
.h2nospace {font-weight: normal; color: #3ec8c4;font-size: 2em;}
.h3nospace {font-weight: normal; color: #3ec8c4;font-size: 1.5em;}
.h4nospace {font-weight: normal; color: #3ec8c4;font-size: 1.2em;}
.h5nospace {font-weight: normal; color: #3ec8c4;font-size: 1em;}
.passes {font-weight: bold; color: #4B891C;font-size: 1.5em; line-height: 1.25; margin-bottom: 1.5em; }
*/

/* 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; }
