@charset "utf-8";

/* image wrap bounding box */
div.bounding-box {
  background-repeat: no-repeat;
  background-size: contain;
}

/* center maintain image aspect ratio*/
img.fit-center {
  max-width: 100%;
  max-height: 100%;
}

/* fill ignore aspect ratio */
img.fill-width {
	width: 100%;
	max-width: none;
	height: auto;
}

img.fill-height {
    height: 100%;
	max-width: none;
	width: auto;
}