/* -------------------------------------------------------------- 
  
  BLUEPRINT CSS
   * Filename:        grid.css
   * Version:         0.5 (2007-08-28) YYYY-MM-DD
   * Website:         http://code.google.com/p/blueprintcss/
  
  Generated by:
   * Blueprint CSS Grid Generator (2008-04-09) [http://blueprint-generator.kaizeku.com/]
  
  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:     12
   * Column width:          60 px
   * Margin width:          20 px
  ======================================
   
  By default, the grid is 940px wide, with 12 columns 
  spanning 60px, 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
  
-------------------------------------------------------------- */

body { 
 
}

/* A container should group all your columns. */
.container {
  text-align: left;
  position: relative;
  padding: 0;
  margin: 0 auto;   /* Centers layout */
}
.fixedWidth{
  width: 940px;     /* Total width */
}
.fixedWidthMin{
  min-width: 940px;     /* Total width */
}

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

/* Use this class together with the .span-x classes
   to create any composition of columns in a layout.
   Nesting columns works like a charm (remember .first and .last). */
   
.column {
  float: left;
  margin-right: 10px;
  margin-bottom:10px;
}
.columnL {
  float: left;
  margin-right: 20px;
  padding: 0;
}
.columnR {
  float: right;
  margin-left: 20px;
  padding: 0;
}


* html .column { overflow-x: hidden; } /* IE6 fix */

/* Add this class to a column if you want a border on its 
   right hand side. This should be customized to fit your needs. */

.border {
  padding-right: 9px;
  margin-right: 10px;
  border-right: 1px solid #ddd;
}

/* Use these classes to set how wide a column should be. */
.span-1  { width: 60px}
.span-2  { width: 140px}
.span-3  { width: 220px}
.span-4  { width: 300px}
.span-5  { width: 380px}
.span-6  { width: 465px}
.span-7  { width: 540px}
.span-8  { width: 620px}
.span-8a { width: 680px}
.span-9  { width: 700px}
.span-10 { width: 780px}
.span-11 { width: 860px}
.span-12 { width: 940px margin: 0}


/* The last element in a multi-column block needs this class. */
.last     { margin-right: 0; }

/* Add these to a column to append empty cols. */
.append-1  { padding-right: 80px}
.append-2  { padding-right: 160px}
.append-3  { padding-right: 240px}
.append-4  { padding-right: 320px}
.append-5  { padding-right: 400px}
.append-6  { padding-right: 480px}
.append-7  { padding-right: 560px}
.append-8  { padding-right: 640px}
.append-9  { padding-right: 720px}
.append-10 { padding-right: 800px}
.append-11 { padding-right: 880px}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 80px}
.prepend-2  { padding-left: 160px}
.prepend-3  { padding-left: 240px}
.prepend-4  { padding-left: 320px}
.prepend-5  { padding-left: 400px}
.prepend-6  { padding-left: 480px}
.prepend-7  { padding-left: 560px}
.prepend-8  { padding-left: 640px}
.prepend-9  { padding-left: 720px}
.prepend-10 { padding-left: 800px}
.prepend-11 { padding-left: 880px}



/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clear { display: inline-block; }   
.clear:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
* html .clear { height: 1%; }
.clear { display: block; }





/* Use these classes to make an image flow into the column before 
   or after it. This technique can also be used on other objects. */

.pull-1 { margin-left: -80px}
.pull-2 { margin-left: -160px}
.pull-3 { margin-left: -240px}
.pull-4 { margin-left: -320px}



.push-0  { margin: 0 0 0 18px; float: right; } /* Right aligns the image. */
.push-1 { margin: 0 -80px 0 18px; float: right}
.push-2 { margin: 0 -160px 0 18px; float: right}
.push-3 { margin: 0 -240px 0 18px; float: right}
.push-4 { margin: 0 -320px 0 18px; float: right}


.pull-1, .pull-2, .pull-3, .pull-4,
.push-1, .push-2, .push-3, .push-4 {
  overflow-x: visible; /* Overrides previous IE6 fix (needs improvement). */
}

/* EOF */