/* Restrict images to fit their container */
.rst-content img,
article img,
div.body img {
    max-width: 95%;   /* never exceed 95% of the container */
    height: auto;     /* keep aspect ratio */
    display: block;
    margin: 0.5em auto;  /* center images and add a bit of spacing */
}
