
/*  SECTIONS  ============================================================================= */

.section {
    clear: both;
    padding: 0px;
    margin: 0px;
}

/*  GROUPING  ============================================================================= */


.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

/*  GRID COLUMN SETUP   ==================================================================== */

.col {
    display: block;
    float:left;
    margin: 1% 0 1% 1.6%;
    /* background-color:#F0FFAE; */
}

.col:first-child { margin-left: 0; } /* all browsers except IE6 and lower */


/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 800 PIXELS */

@media only screen and (max-width: 800px) {
    .col { 
    margin: 1% 0 1% 0%;
}
}
/*  GRID OF TWO   ============================================================================= */


.span_2_of_2 {
    width: 100%;
}

.span_1_of_2 {
    width: 49.2%;
}

/*  GO FULL WIDTH AT LESS THAN 800 PIXELS */

@media only screen and (max-width: 800px) {
    .span_2_of_2 {
    width: 100%; 
}
.span_1_of_2 {
    width: 100%; 
}
}
/*  GRID OF THREE   ============================================================================= */


.span_3_of_3 {
    width: 100%; 
}

.span_2_of_3 {
    width: 66.13%; 
}

.span_1_of_3 {
    width: 32.26%; 
}


/*  GO FULL WIDTH AT LESS THAN 800 PIXELS */

@media only screen and (max-width: 800px) {
    .span_3_of_3 {
    width: 100%; 
}
.span_2_of_3 {
    width: 100%; 
}
.span_1_of_3 {
    width: 100%;
}
}
/*  GRID OF FOUR   ============================================================================= */


.span_4_of_4 {
    width: 100%; 
}

.span_3_of_4 {
    width: 74.6%; 
}

.span_2_of_4 {
    width: 49.2%; 
}

.span_1_of_4 {
    width: 23.8%; 
}


/*  GO FULL WIDTH AT LESS THAN 800 PIXELS */

@media only screen and (max-width: 800px) {
    .span_4_of_4 {
    width: 100%; 
}
.span_3_of_4 {
    width: 100%; 
}
.span_2_of_4 {
    width: 100%; 
}
.span_1_of_4 {
    width: 100%; 
}
}

/*  GRID OF Five   ============================================================================= */


.span_5_of_5 {
    width: 100%; 
}
.span_4_of_5 {
    width: 78%; 
}

.span_3_of_5 {
    width: 58%; 
}

.span_2_of_5 {
    width: 38%; 
}

.span_1_of_5 {
    width: 18.7%; 
}


.span_1_of_6 {
    width: 16%; 
}


/*  GO FULL WIDTH AT LESS THAN 800 PIXELS */

@media only screen and (max-width: 800px) {
    .span_1_of_6 {
    width: 100%; 
}   
.span_5_of_5 {
    width: 100%; 
}
.span_4_of_5 {
    width: 100%; 
}
.span_3_of_5 {
    width: 100%; 
}
.span_2_of_5 {
    width: 100%; 
}
.span_1_of_5 {
    width: 100%; 
}
}
  table {
    border: 1px solid #ccc;
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
  }

  table tr {
    border: 1px solid #ddd;
    padding: 5px;
  }

  table th, table td {
    padding: 10px;
    text-align: center;
  }

  table th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
  }

  @media screen and (max-width: 600px) {

    table {
      border: 0;
    }

    table thead {
      display: none;
    }

    table tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
    }

    table td {
      display: block;
      text-align: right;
      font-size: 13px;
      border-bottom: 1px dotted #ccc;
    }

    table td:last-child {
      border-bottom: 0;
    }

    table td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: bold;
    }
  }