<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* B */
.float-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.float-child-left {
    width: 70%;
    float: left;
    padding-right: 10px;
} 
.float-child-right {
    width: 30%;
    float: left;
}  
 
@media screen and (max-width: 39.9375em) {
	.site-nav:before {
		right: 0;
	}
	.right, .left {
		max-width: 100%;
	}
	.right.file, .left.file {
		justify-content: center;
		flex-wrap: wrap;
		text-align: center;
		margin: 0;
		border: 0;
		float: none;
		clear: none;
	}
	.right.file .item, .left.file .item {
		width: 100%;
	}
	.right .item.resource img, .left .item.resource img {
		max-width: 100%;
		vertical-align: middle;
		width: 105%;
		height: auto;
		border-image-width: auto;
		margin: 0;
	}
        .float-container {
      justify-content: space-between;
  }
 
  .float-child-left {
width: 100%;
      order:2;
padding-bottom: 10px;
  }
 
  .float-child-right {
width: 100%;
      order:1;
padding-bottom: 10px;
  }
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 70%;
    height: auto;
    margin-left: -10px;
    -ms-interpolation-mode: bicubic;
}
</pre></body></html>