/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011

* Edited for 12 coloumns by @sn0lan

*/


/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */



/* #Base 960 Grid
================================================== */

    .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
	.container .one.column,
	.container .one.column                      { width: 6.25%;  }
	.container .two.columns                     { width: 14.583333333333333333333333333333%; }
	.container .three.columns                   { width: 22.916666666666666666666666666667%; }
	.container .four.columns                    { width: 31.25%; }
	.container .five.columns                    { width: 39.583333333333333333333333333333%; }
	.container .six.columns                     { width: 47.916666666666666666666666666667%; }
	.container .seven.columns                   { width: 56.25%; }
	.container .eight.columns                   { width: 64.583333333333333333333333333333%; }
	.container .nine.columns                    { width: 72.916666666666666666666666666667%; }
	.container .ten.columns                     { width: 81.25%; }
	.container .eleven.columns                  { width: 89.583333333333333333333333333333%; }
	.container .twelve.columns                  { width: 97.916666666666666666666666666667%; }

	.container .one-third.column                { width: 31.25%; }
	.container .two-thirds.column               { width: 64.583333333333333333333333333333%; }

    /* Offsets */
  	.container .offset-by-one                   { padding-left: 8.3333333333333333333333333333333%; }
	.container .offset-by-two                   { padding-left: 16.666666666666666666666666666667%; }
	.container .offset-by-three                 { padding-left: 22.916666666666666666666666666667%; }
	.container .offset-by-four                  { padding-left: 33.333333333333333333333333333333%; }
	.container .offset-by-five                  { padding-left: 41.666666666666666666666666666667%; }
	.container .offset-by-six                   { padding-left: 50%; }
	.container .offset-by-seven                 { padding-left: 58.333333333333333333333333333333%; }
	.container .offset-by-eight                 { padding-left: 66.666666666666666666666666666667%; }
	.container .offset-by-nine                  { padding-left: 75%; }
	.container .offset-by-ten                   { padding-left: 83.333333333333333333333333333333%; }
	.container .offset-by-eleven                { padding-left: 89.583333333333333333333333333333%; }
    


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
