/* -------------------------------------------------------------- 
   
   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-06-06) [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:            954 px
    * Number of columns:     3
    * Column width:          300 px
    * Margin width:          27 px
   ======================================

   By default, the grid is 954px wide, with 3 columns 
   spanning 300px, and a 27px 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: 955px;
  margin: 0 auto;
  background-color: #333333;
  font-family: Arial, Helvetica, sans-serif;
}

/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(src/grid.png); 
}


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3 {float:left;margin-right: 27px;}

/* 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: 280px;}
.span-2  { width: 607px;}
.span-3, div.span-3 { width: 934px; margin: 0; }


/* Add these to a column to append empty cols. */
.append-1  { padding-right: 327px;}
.append-2  { padding-right: 654px;}


/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 327px;}
.prepend-2  { padding-left: 654px;}



/* Border on right hand side of a column. */
div.border {
  padding-right:12.5px;
  margin-right:13.5px;
  border-right: 2px solid #666;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right:289.5px;
  margin-right:286.5px;
  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: -327px;}
.pull-2 { margin-left: -654px;}
.pull-3 { margin-left: -981px;}

.pull-1, .pull-2, .pull-3 {float:left;position:relative;}


.push-1 { margin: 0 -327px 1.5em 327px;}
.push-2 { margin: 0 -654px 1.5em 654px;}
.push-3 { margin: 0 -981px 1.5em 981px;}

.push-1, .push-2, .push-3 {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: #666; 
  color: #666;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .5em;
  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; }

/* In-house additions
-------------------------------------------------------------- */

h1 {
	margin: 10px;
}

h2 {
	font-size: 16px;
}

.addleftmargin10 {
	margin-left: 10px;
}

.addleftmargin40 { 
	margin-left: 40px;
}

.addleftmargin80 { 
	margin-left: 80px;
}

.addvertmargins {
	margin: 5px 0 5px 0;
}

.white {
	color: #ffffff;
}

.green {
	color: #D3DF3D;
}

.copy {
	font-size: 12px;
	line-height: 16px;
	margin-left: 10px;
}

.indexlink {
	color: #ffffff;
	font-weight: normal !important;
}

.categories {
	display: block;
	color: #aaa;
	border-bottom: 1px dashed #666;
	margin-bottom: 0;
}