/* BLUEPRINT CSS-------------------------------------------------- 
    * Filename:        grid.css
    * Version:         0.7.1 (2008-02-25) YYYY-MM-DD

   == STRUCTURE: ========================
    * Page width:            980 px
    * Number of columns:     20
    * Column width:          30 px
    * Margin width:          20 px
   ======================================
  
-------------------------------------------------------------- */

/* 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;
}

/* 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; }
