<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('animate.min.css');

/*
 * Gridism
 * A simple, responsive, and handy CSS grid by @cobyism
 * https://github_com/cobyism/gridism
 */

/* Preserve some sanity */
.bloro_grid,
.bloro_unit {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Set up some rules to govern the grid */
.bloro_grid {
  display: block;
  clear: both;
}
.bloro_grid .bloro_unit {
  float: left;
  width: 100%;
  padding: 10px;
}
.bloro_unit img {
	max-width:100%;
	height:auto !important;
}
/* This ensures the outer gutters are equal to the (doubled) inner gutters.bloro_ 
.bloro_grid .bloro_unit:first-child { padding-left: 20px; }
.bloro_grid .bloro_unit:last-child { padding-right: 20px; }*/
/* Nested grids already have padding though, so letâ€™s nuke it */
.bloro_unit .bloro_unit:first-child { padding-left: 0; }
.bloro_unit .bloro_unit:last-child { padding-right: 0; }
.bloro_unit .bloro_grid:first-child &gt; .bloro_unit { padding-top: 0; }
.bloro_unit .bloro_grid:last-child &gt; .bloro_unit { padding-bottom: 0; }
/* Let people nuke the gutters/padding completely in a couple of ways */
.bloro_no-gutters .bloro_unit,
.bloro_unit.bloro_no-gutters {
  padding: 0 !important;
}
/* Wrapping at a maximum width is optional */
.bloro_wrap .bloro_grid,
.bloro_grid.bloro_wrap {
  max-width: 978px;
  margin: 0 auto;
}
/* Width classes also have shorthand versions numbered as fractions
 * For example: for a grid unit 1/3 (one third) of the parent width,
 * simply apply class="w-1-3" to the element.bloro_ */
.bloro_grid .bloro_whole,          .bloro_grid .bloro_w-1-1 { width: 100%; }
.bloro_grid .bloro_half,           .bloro_grid .bloro_w-1-2 { width: 50%; }
.bloro_grid .bloro_one-third,      .bloro_grid .bloro_w-1-3 { width: 33.3332%; }
.bloro_grid .bloro_two-thirds,     .bloro_grid .bloro_w-2-3 { width: 66.6665%; }
.bloro_grid .bloro_one-quarter,    .bloro_grid .bloro_w-1-4 { width: 25%; }
.bloro_grid .bloro_three-quarters, .bloro_grid .bloro_w-3-4 { width: 75%; }
.bloro_grid .bloro_one-fifth,      .bloro_grid .bloro_w-1-5 { width: 20%; }
.bloro_grid .bloro_two-fifths,     .bloro_grid .bloro_w-2-5 { width: 40%; }
.bloro_grid .bloro_three-fifths,   .bloro_grid .bloro_w-3-5 { width: 60%; }
.bloro_grid .bloro_four-fifths,    .bloro_grid .bloro_w-4-5 { width: 80%; }
.bloro_grid .bloro_golden-small,   .bloro_grid .bloro_w-g-s { width: 38.2716%; } /* Golden section: smaller piece */
.bloro_grid .bloro_golden-large,   .bloro_grid .bloro_w-g-l { width: 61.7283%; } /* Golden section: larger piece */
/* Clearfix after every .bloro_grid */
.bloro_grid {
  *zoom: 1;
}
.bloro_grid:before, .bloro_grid:after {
  display: table;
  content: "";
  line-height: 0;
}
.bloro_grid:after {
  clear: both;
}
/* Utility classes */
.bloro_align-center { text-align: center; }
.bloro_align-left   { text-align: left; }
.bloro_align-right  { text-align: right; }
.bloro_pull-left    { float: left; }
.bloro_pull-right   { float: right; }
/* Responsive Stuff */
@media screen and (max-width: 568px) {
  /* Stack anything that isnâ€™t full-width on smaller screens */
  .bloro_grid .bloro_unit {
    width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
  .bloro_unit .bloro_grid .bloro_unit {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* Sometimes, you just want to be different on small screens */
  .bloro_center-on-mobiles {
    text-align: center !important;
  }
  .bloro_hide-on-mobiles {
    display: none !important;
  }
}
/* Expand the wrap a bit further on larger screens */
@media screen and (min-width: 1180px) {
  .bloro_wider .bloro_grid {
    max-width: 1180px;
    margin: 0 auto;
  }
}
</pre></body></html>