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

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

    /* 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: 4.25%;  }
    .two.columns                     { width: 10.5%; }
    .three.columns                   { width: 16.75%; }
    .four.columns                    { width: 23%; }
    .five.columns                    { width: 29.25%; }
    .six.columns                     { width: 35.5%; }
    .seven.columns                   { width: 41.75%; }
    .eight.columns                   { width: 48%; }
    .nine.columns                    { width: 54.25%; }
    .ten.columns                     { width: 60.5%; }
    .eleven.columns                  { width: 66.75%; }
    .twelve.columns                  { width: 73%; }
    .thirteen.columns                { width: 79.25%; }
    .fourteen.columns                { width: 85.5%; }
    .fifteen.columns                 { width: 91.75%; }
    .sixteen.columns                 { width: 98%; }

    .one-third.column                { width: 31.333%; }
    .two-thirds.column               { width: 64.666%; }

    /* Offsets */
    .offset-by-one                   { margin-left: 7.25%;  }
    .offset-by-two                   { margin-left: 13.5%; }
    .offset-by-three                 { margin-left: 19.75%; }
    .offset-by-four                  { margin-left: 26%; }
    .offset-by-five                  { margin-left: 32.25%; }
    .offset-by-six                   { margin-left: 38.5%; }
    .offset-by-seven                 { margin-left: 44.75%; }
    .offset-by-eight                 { margin-left: 51%; }
    .offset-by-nine                  { margin-left: 57.25%; }
    .offset-by-ten                   { margin-left: 63.5%; }
    .offset-by-eleven                { margin-left: 69.75%; }
    .offset-by-twelve                { margin-left: 76%; }
    .offset-by-thirteen              { margin-left: 82.25%; }
    .offset-by-fourteen              { margin-left: 88.50%; }
    .offset-by-fifteen               { margin-left: 94.75%; }
    
    .offset-by-one-third             { margin-left: 34.333%; }
    .offset-by-two-thirds            { margin-left: 67.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: 300px; }
        .container .columns,
        .container .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: 300px; }
        
        /* 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%; }
        .container .columns,
        .container .column { margin: 5px 0; }
        .row {margin:0}

        .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;
    }
