body {

    margin: 0;

}



* {

    -webkit-box-sizing: border-box;

            box-sizing: border-box;

}

a {
  max-width: 100%;
}

a img {
  max-width: 100%;

}

img {
  max-width: 100%
}

.flex {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    display: -moz-flex;
    display: -o-flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    -ms-flex-pack: justify;
    -ms-flex-direction: row;
}
[data-column_size='1'] {
    width: 8.333333333333333%;
}
[data-column_size='2'] {
    width: 16.66666666666667%;
}
[data-column_size='3'] {
    width: 25%;
}
[data-column_size='4'] {
    width: 33.33333333333333%;
}
[data-column_size='5'] {
    width: 41.66666666666667%;
}
[data-column_size='6'] {
    width: 50%;
}
[data-column_size='7'] {
    width: 58.33333333333333%;
}
[data-column_size='8'] {
    width: 66.66666666666666%;
}
[data-column_size='9'] {
    width: 75%;
}
[data-column_size='10'] {
    width: 83.33333333333333%;
}
[data-column_size='11'] {
    width: 91.66666666666666%;
}
[data-column_size='12'] {
    width: 100%;
}
.justify_between {
    -webkit-box-pack:justify;
            justify-content:space-between;
    -ms-flex-pack: space-between;
}
/* Align Selfs are dubious, need to look @ */
.align_self_start {
    -ms-flex-item-align: start;
        align-self: flex-start
}
.align_self_center {
    -ms-flex-item-align: center;
        align-self: center;
    -ms-flex-align: flex-center;
}
.align_self_end {
    -ms-flex-item-align: end;
        align-self: flex-end;
    -ms-flex-align: flex-end;
}
.align_stretch {
    -webkit-box-align: stretch;
            align-items: stretch;
    -ms-flex-align: stretch;
}
.align_start {
    -webkit-box-align: start;
            align-items: flex-start;
    -ms-flex-align: flex-start;
}
.align_center {
    -webkit-box-align: center;
            align-items: center;-ms-flex-align: center;
}
.align_end {
    -webkit-box-align: end;
            align-items: flex-end;
    -ms-flex-align: flex-end;
}
.justify_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start
}
.justify_center {
     -webkit-box-pack: center;
             justify-content: center;
     -ms-flex-pack: center;
}
.justify_end {
     -webkit-box-pack: end;
             justify-content: flex-end;
     -ms-flex-pack: end;
}
