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


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



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

    .container                                  { position: relative; width:90vw;margin:0 auto;display:flex;flex-direction:column }
    .container .column,
    .container .columns                         { flex:0 0;box-sizing:border-box;padding:0 10px }
    .row                                        { margin-bottom: 20px;display:flex; }

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

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { flex-basis:calc(90vw / 12)  }
    .container .two.columns                     { flex-basis:calc((90vw / 12) * 2) }
    .container .three.columns                   { flex-basis:calc((90vw / 12) * 3) }
    .container .four.columns                    { flex-basis:calc((90vw / 12) * 4) }
    .container .five.columns                    { flex-basis:calc((90vw / 12) * 5) }
    .container .six.columns                     { flex-basis:calc((90vw / 12) * 6) }
    .container .seven.columns                   { flex-basis:calc((90vw / 12) * 7) }
    .container .eight.columns                   { flex-basis:calc((90vw / 12) * 8) }
    .container .nine.columns                    { flex-basis:calc((90vw / 12) * 9) }
    .container .ten.columns                     { flex-basis:calc((90vw / 12) * 10) }
    .container .eleven.columns                  { flex-basis:calc((90vw / 12) * 11) }
    .container .twelve.columns                  { flex-basis:90vw }

    /* Offsets */
    .container .offset-by-one                   { margin-left: calc((90vw / 12));  }
    .container .offset-by-two                   { margin-left: calc(((90vw / 12) * 2)); }
    .container .offset-by-three                 { margin-left: calc(((90vw / 12) * 3)); }
    .container .offset-by-four                  { margin-left: calc(((90vw / 12) * 4)); }
    .container .offset-by-five                  { margin-left: calc(((90vw / 12) * 5)); }
    .container .offset-by-six                   { margin-left: calc(((90vw / 12) * 6)); }
    .container .offset-by-seven                 { margin-left: calc(((90vw / 12) * 7)); }
    .container .offset-by-eight                 { margin-left: calc(((90vw / 12) * 8)); }
    .container .offset-by-nine                  { margin-left: calc(((90vw / 12) * 9)); }
    .container .offset-by-ten                   { margin-left: calc(((90vw / 12) * 10)); }
    .container .offset-by-eleven                { margin-left: calc(((90vw / 12) * 11)); }
	

    



/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        
        .container .columns,
        .container .column { padding-right: 0;padding-left:0 }
		.row {flex-direction:column}

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column  { width: 100%;flex-basis:auto; }

        /* Offsets */
        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { margin-left: 0; }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        
    }


/* #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;
    }
