/* #Base 960 Grid
================================================== */

    .container                       { position: relative; width: 960px; margin: 0 auto; padding: 0;}
    .container-fluid                 { position: relative; width: 100%; margin: 0 auto; padding: 0;}
    .column, .columns     { float: left; display: inline; margin-left: 1%; margin-right: 1%; min-height:30px;}
    .row                             { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha   { margin-left: 0; }
    .column.omega, .columns.omega   { margin-right: 0; }
    .columns.alpha.omega,
    .columns.alpha.omega            { margin-left: 0; margin-right: 0; }
    .column.vega, .columns.vega     { margin-right: 2%; }

    /* Base Grid */
    .one.column,
    .one.columns                     { width: 6.333%;  }
    .two.columns                     { width: 14.666%; }
    .three.columns                   { width: 23%; }
    .four.columns                    { width: 31.333%; }
    .five.columns                    { width: 39.666%; }
    .six.columns                     { width: 48%; }
    .seven.columns                   { width: 56.333%; }
    .eight.columns                   { width: 64.666%; }
    .nine.columns                    { width: 73%; }
    .ten.columns                     { width: 81.333%; }
    .eleven.columns                  { width: 89.666%; }
    .twelve.columns                  { width: 98%; }

    /* Offsets */
    .offset-by-one                   { margin-left: 9.333%;  }
    .offset-by-two                   { margin-left: 17.666%; }
    .offset-by-three                 { margin-left: 26%; }
    .offset-by-four                  { margin-left: 34.333%; }
    .offset-by-five                  { margin-left: 42.666%; }
    .offset-by-six                   { margin-left: 51%; }
    .offset-by-seven                 { margin-left: 59.333%; }
    .offset-by-eight                 { margin-left: 67.666%; }
    .offset-by-nine                  { margin-left: 76%; }
    .offset-by-ten                   { margin-left: 84.333%; }
    .offset-by-eleven                { margin-left: 92.666%; }

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (max-width: 959px) {
    .container    { width: 768px; }

    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
    .container   { width: 98%; }
    .columns, .column { margin: 0; }
    .row               { margin-bottom: 1px; }

    .one.column,
    .one.columns,
    .two.columns,
    .three.columns,
    .four.columns,
    .five.columns,
    .six.columns,
    .seven.columns,
    .eight.columns,
    .nine.columns,
    .ten.columns,
    .eleven.columns,
    .twelve.columns,
    .thirteen.columns,
    .fourteen.columns,
    .fifteen.columns,
    .sixteen.columns,
    .one-third.column,
    .two-thirds.column  { width: 100%; }

    /* Offsets */
    .offset-by-one,
    .offset-by-two,
    .offset-by-three,
    .offset-by-four,
    .offset-by-five,
    .offset-by-six,
    .offset-by-seven,
    .offset-by-eight,
    .offset-by-nine,
    .offset-by-ten,
    .offset-by-eleven,
    .offset-by-twelve,
    .offset-by-thirteen,
    .offset-by-fourteen,
    .offset-by-fifteen { margin-left: 0; }

    }

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (max-width: 959px) {
    .container{ width: 768px; }

    }

/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 300px) and (max-width: 767px) {
    .container   { width: 98%; }
    .columns, .column { margin: 0; }
    .row {margin-bottom: 1px;}

    .one.column,
    .one.columns,
    .two.columns,
    .three.columns,
    .four.columns,
    .five.columns,
    .six.columns,
    .seven.columns,
    .eight.columns,
    .nine.columns,
    .ten.columns,
    .eleven.columns,
    .twelve.columns,
    .thirteen.columns,
    .fourteen.columns,
    .fifteen.columns,
    .sixteen.columns,
    .one-third.column,
    .two-thirds.column { width: 100%; }
    }


/* #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;
    }
