/* medium */
@media only screen and (min-width: 600px) {

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

  /* define parent cell widths for 2 cell parent layout */
  .cell_1_1_2 { width: 50%; } /* parent cell, 1 units */
  .cell_1_2_2 { width: 100%; } /* parent cell, 2 units */

  /* place all parent cells in a row for 2 cell parent layout */
  .cell_1_1_2, .cell_1_2_2 {
    float: left;
  }

  /* define parent cell widths for 3 cell parent layout */
  .cell_1_1_3 { width: 33.3%; } /* parent cell, 1 units */
  .cell_1_2_3 { width: 66.6%; } /* parent cell, 2 units */
  .cell_1_3_3 { width: 100%; } /* parent cell, 3 units */

  /* place all parent cells in a row for 3 cell parent layout */
  .cell_1_1_3, .cell_1_2_3, .cell_1_3_3 {
    float: left;
  }

  /* define parent cell widths for 4 cell parent layout */
  .cell_1_1_4 { width: 25%; } /* parent cell, 1 units */
  .cell_1_2_4 { width: 50%; } /* parent cell, 2 units */
  .cell_1_3_4 { width: 75%; } /* parent cell, 3 units */
  .cell_1_4_4 { width: 100%; } /* parent cell, 4 units */

  /* place all parent cells in a row for 4 cell parent layout */
  .cell_1_1_4, .cell_1_2_4, .cell_1_3_4, .cell_1_4_4 {
    float: left;
  }

  /* define parent cell widths for 5 cell parent layout */
  .cell_1_1_5 { width: 20%; } /* parent cell, 1 units */
  .cell_1_2_5 { width: 40%; } /* parent cell, 2 units */
  .cell_1_3_5 { width: 60%; } /* parent cell, 3 units */
  .cell_1_4_5 { width: 80%; } /* parent cell, 4 units */
  .cell_1_5_5 { width: 100%; } /* parent cell, 5 units */

  /* place all parent cells in a row for 5 cell parent layout */
  .cell_1_1_5, .cell_1_2_5, .cell_1_3_5, .cell_1_4_5, .cell_1_5_5 {
    float: left;
  }

  /* define parent cell widths for 6 cell parent layout */
  .cell_1_1_6 { width: 16.6666666%; } /* parent cell, 1 units */
  .cell_1_2_6 { width: 33.3333333%; } /* parent cell, 2 units */
  .cell_1_3_6 { width: 50%; } /* parent cell, 3 units */
  .cell_1_4_6 { width: 66.6666666%; } /* parent cell, 4 units */
  .cell_1_5_6 { width: 83.3333333%; } /* parent cell, 5 units */
  .cell_1_6_6 { width: 100%; } /* parent cell, 6 units */

  /* place all parent cells in a row for 6 cell parent layout */
  .cell_1_1_6, .cell_1_2_6, .cell_1_3_6, .cell_1_4_6, .cell_1_5_6, .cell_1_6_6 {
    float: left;
  }

  /* define parent cell widths for 7 cell parent layout */
  .cell_1_1_7 { width: 14.285714286%; } /* parent cell, 1 units */
  .cell_1_2_7 { width: 28.571428571%; } /* parent cell, 2 units */
  .cell_1_3_7 { width: 42.857142857%; } /* parent cell, 3 units */
  .cell_1_4_7 { width: 57.142857143%; } /* parent cell, 4 units */
  .cell_1_5_7 { width: 71.428571429%; } /* parent cell, 5 units */
  .cell_1_6_7 { width: 85.714285714%; } /* parent cell, 6 units */
  .cell_1_7_7 { width: 100%; } /* parent cell, 7 units */

  /* place all parent cells in a row for 7 cell parent layout */
  .cell_1_1_7, .cell_1_2_7, .cell_1_3_7, .cell_1_4_7, .cell_1_5_7, .cell_1_6_7, .cell_1_7_7 {
    float: left;
  }

}

