/* large */
@media only screen and (min-width: 910px) {

  #mediaLayout p:after {content: "large";}

  /* define child cell widths for 2 cell child layout */
  .cell_2_1_2 { width: 50%; } /* child cell, 1 units */
  .cell_2_2_2 { width: 100%; } /* child cell, 2 units */

  /* place all child cells in a row for 2 cell child layout */
  .cell_2_1_2, .cell_2_2_2 {
    float: left;
  }

  /* define child cell widths for 3 cell child layout */
  .cell_2_1_3 { width: 33.3333333%; } /* child cell, 1 units */
  .cell_2_2_3 { width: 66.6666666%; } /* child cell, 2 units */
  .cell_2_3_3 { width: 100%; } /* child cell, 3 units */

  /* place all child cells in a row for 3 cell child layout */
  .cell_2_1_3, .cell_2_2_3, .cell_2_3_3 {
    float: left;
  }

  /* define child cell widths for 4 cell child layout */
  .cell_2_1_4 { width: 25%; } /* child cell, 1 units */
  .cell_2_2_4 { width: 50%; } /* child cell, 2 units */
  .cell_2_3_4 { width: 75%; } /* child cell, 3 units */
  .cell_2_4_4 { width: 100%; } /* child cell, 4 units */

  /* place all child cells in a row for 4 cell child layout */
  .cell_2_1_4, .cell_2_2_4, .cell_2_3_4, .cell_2_4_4 {
    float: left;
  }

  /* define child cell widths for 5 cell child layout */
  .cell_2_1_5 { width: 20%; } /* child cell, 1 units */
  .cell_2_2_5 { width: 40%; } /* child cell, 2 units */
  .cell_2_3_5 { width: 60%; } /* child cell, 3 units */
  .cell_2_4_5 { width: 80%; } /* child cell, 4 units */
  .cell_2_5_5 { width: 100%; } /* child cell, 5 units */

  /* place all child cells in a row for 5 cell child layout */
  .cell_2_1_5, .cell_2_2_5, .cell_2_3_5, .cell_2_4_5, .cell_2_5_5 {
    float: left;
  }

  /* define child cell widths for 6 cell child layout */
  .cell_2_1_6 { width: 16.6666666%; } /* child cell, 1 units */
  .cell_2_2_6 { width: 33.3333333%; } /* child cell, 2 units */
  .cell_2_3_6 { width: 50%; } /* child cell, 3 units */
  .cell_2_4_6 { width: 66.6666666%; } /* child cell, 4 units */
  .cell_2_5_6 { width: 83.3333333%; } /* child cell, 5 units */
  .cell_2_6_6 { width: 100%; } /* child cell, 6 units */

  /* place all child cells in a row for 6 cell child layout */
  .cell_2_1_6, .cell_2_2_6, .cell_2_3_6, .cell_2_4_6, .cell_2_5_6, .cell_2_6_6 {
    float: left;
  }

  /* define child cell widths for 7 cell child layout */
  .cell_2_1_7 { width: 14.285714286%; } /* child cell, 1 units */
  .cell_2_2_7 { width: 28.571428571%; } /* child cell, 2 units */
  .cell_2_3_7 { width: 42.857142857%; } /* child cell, 3 units */
  .cell_2_4_7 { width: 57.142857143%; } /* child cell, 4 units */
  .cell_2_5_7 { width: 71.428571429%; } /* child cell, 5 units */
  .cell_2_6_7 { width: 85.714285714%; } /* child cell, 6 units */
  .cell_2_7_7 { width: 100%; } /* child cell, 7 units */

  /* place all child cells in a row for 6 cell child layout */
  .cell_2_1_7, .cell_2_2_7, .cell_2_3_7, .cell_2_4_7, .cell_2_5_7, .cell_2_6_7, .cell_2_7_7 {
    float: left;
  }

}

